mirror of
git://repo.or.cz/tinycc.git
synced 2026-06-30 08:38:41 +08:00
Yet another int64_t/uint64_t definition fix. For wine this time.
This commit is contained in:
parent
2633c30fb4
commit
c9fe8fe470
@ -20,9 +20,10 @@ typedef signed int int32_t;
|
|||||||
typedef unsigned char uint8_t;
|
typedef unsigned char uint8_t;
|
||||||
typedef unsigned short int uint16_t;
|
typedef unsigned short int uint16_t;
|
||||||
typedef unsigned int uint32_t;
|
typedef unsigned int uint32_t;
|
||||||
#if defined(__LP64__) \
|
#if defined(_WIN32) \
|
||||||
&& !defined(__FreeBSD__) \
|
|| (defined(__LP64__) \
|
||||||
&& !(defined(__NetBSD__) && defined(__aarch64__))
|
&& !defined(__FreeBSD__) \
|
||||||
|
&& !(defined(__NetBSD__) && defined(__aarch64__)))
|
||||||
typedef signed __INT64_TYPE__ int64_t;
|
typedef signed __INT64_TYPE__ int64_t;
|
||||||
typedef unsigned __INT64_TYPE__ uint64_t;
|
typedef unsigned __INT64_TYPE__ uint64_t;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user