1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 04:11:21 +00:00
This commit is contained in:
Luke Ceddia 2020-01-03 00:09:21 +11:00
parent fe920f921b
commit ae379cb29c

View file

@ -54,10 +54,12 @@
typedef unsigned __int64 uint64_t;
typedef signed __int64 int64_t;
#else
typedef unsigned long long uint64_t;
typedef signed long long int64_t;
// typedef __uint64_t uint64_t;
// typedef __int64_t int64_t;
#ifndef UINT64_MAX
typedef unsigned long long uint64_t;
#endif
#ifndef INT64_MAX
typedef signed long long int64_t;
#endif
#endif
#endif