From 107de40014ade48725b991dbe46f5d172da1078b Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 22 Jul 2017 22:16:19 +0200 Subject: added 64-bit integer types for 32-bit platforms --- src/libc/stdint.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libc/stdint.h b/src/libc/stdint.h index 23dc370..d91f4f2 100644 --- a/src/libc/stdint.h +++ b/src/libc/stdint.h @@ -11,6 +11,8 @@ typedef signed short int16_t; typedef unsigned char uint8_t; typedef signed char int8_t; typedef uint32_t uintptr_t; +typedef unsigned long long int uint64_t; +typedef signed long long int int64_t; #else // gcc and clang provide a stdint.h #include_next -- cgit v1.2.3-54-g00ecf