summaryrefslogtreecommitdiff
path: root/src/libc/stdint.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libc/stdint.h')
-rw-r--r--src/libc/stdint.h2
1 files changed, 2 insertions, 0 deletions
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 <stdint.h>