mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
Get 64bit stuff right.
This commit is contained in:
parent
1835992e85
commit
ef323d7076
@ -18,6 +18,6 @@ typedef long int64_type;
|
||||
|
||||
#define BYTES_IN_PRINTF_INT 4
|
||||
|
||||
#define uint64_typeLOW(x) (uint32_type)(((x) & 0xffffffff))
|
||||
#define uint64_typeHIGH(x) (uint32_type)(((x) >> 32) & 0xffffffff)
|
||||
#define uint64_typeLOW(x) (((x) & 0xffffffff))
|
||||
#define uint64_typeHIGH(x) (((x) >> 32) & 0xffffffff)
|
||||
#include "fopen-same.h"
|
||||
|
Loading…
Reference in New Issue
Block a user