1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 08:50:25 +00:00

Merge branch 'development' of https://github.com/Galleondragon/qb64 into development

This commit is contained in:
FellippeHeitor 2018-09-24 02:49:48 -03:00
commit ed4d91714a

View file

@ -54,8 +54,8 @@
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;
#endif
#endif