mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
Fix compile
This commit is contained in:
parent
8e0dfc6525
commit
24b8f9b0f3
@ -181,7 +181,12 @@ typedef unsigned int uint32_t;
|
||||
typedef unsigned short uint16_t;
|
||||
typedef unsigned __int64 uint64_t;
|
||||
typedef __int64 int64_t;
|
||||
#define INT64_MAX 9223372036854775807
|
||||
#if defined(__GNUC__) || defined(_MSC_VER)
|
||||
#define U64(val) val##ULL
|
||||
#else
|
||||
#define U64(val) val
|
||||
#endif
|
||||
#define INT64_MAX U64(9223372036854775807)
|
||||
#endif // HAVE_STDINT
|
||||
|
||||
// POSIX dirent interface
|
||||
|
Loading…
Reference in New Issue
Block a user