1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 13:31:23 +00:00
Fixes #68
This commit is contained in:
FellippeHeitor 2018-09-30 10:42:30 -03:00
parent ed4d91714a
commit 53d3341ec3

View file

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