1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 01:51:21 +00:00

Merge pull request #116 from Galleondragon/issue81

Fix issue #81
This commit is contained in:
Fellippe Heitor 2020-01-02 13:01:04 -03:00 committed by GitHub
commit fdf3fe9a02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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