mirror of
https://github.com/mirror/tinycc.git
synced 2025-02-04 06:30:10 +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 short int uint16_t;
|
||||
typedef unsigned int uint32_t;
|
||||
#if defined(__LP64__) \
|
||||
&& !defined(__FreeBSD__) \
|
||||
&& !(defined(__NetBSD__) && defined(__aarch64__))
|
||||
#if defined(_WIN32) \
|
||||
|| (defined(__LP64__) \
|
||||
&& !defined(__FreeBSD__) \
|
||||
&& !(defined(__NetBSD__) && defined(__aarch64__)))
|
||||
typedef signed __INT64_TYPE__ int64_t;
|
||||
typedef unsigned __INT64_TYPE__ uint64_t;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user