fix Qt issue

This commit is contained in:
nhmall
2025-05-26 20:33:06 -04:00
parent 35e35b2cbd
commit df602f5d31

View File

@@ -89,8 +89,13 @@ typedef unsigned int uint32_t;
64-bit integers, you should comment out USE_ISAAC64 in config.h so 64-bit integers, you should comment out USE_ISAAC64 in config.h so
that the previous RNG gets used instead. Then this file will be that the previous RNG gets used instead. Then this file will be
inhibited and it won't matter what the int64_t and uint64_t lines are. */ inhibited and it won't matter what the int64_t and uint64_t lines are. */
#if defined(__cplusplus)
#include <stdint.h>
#else
typedef long long int int64_t; typedef long long int int64_t;
typedef unsigned long long int uint64_t; typedef unsigned long long int uint64_t;
#endif
#endif /* !C99 */ #endif /* !C99 */