add UINT64 def if INT64 is defined

This commit is contained in:
Yay295 2022-10-06 18:00:45 -05:00 committed by Yay295
parent 509671c53e
commit 6de5e999bd

View File

@ -71,6 +71,9 @@
#define UINT16 unsigned INT16 #define UINT16 unsigned INT16
#define UINT32 unsigned INT32 #define UINT32 unsigned INT32
#ifdef INT64
#define UINT64 unsigned INT64
#endif
#endif #endif