summaryrefslogtreecommitdiffstats
path: root/src/arch/e1/include/stdint.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/e1/include/stdint.h')
-rw-r--r--src/arch/e1/include/stdint.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/arch/e1/include/stdint.h b/src/arch/e1/include/stdint.h
index 8a7ad978..505cc375 100644
--- a/src/arch/e1/include/stdint.h
+++ b/src/arch/e1/include/stdint.h
@@ -13,4 +13,16 @@ typedef signed short int16_t;
typedef signed int int32_t;
typedef signed long long int64_t;
+typedef signed char s8;
+typedef unsigned char u8;
+
+typedef signed short s16;
+typedef unsigned short u16;
+
+typedef signed long s32;
+typedef unsigned int u32;
+
+typedef signed long long s64;
+typedef unsigned long long u64;
+
#endif /* STDINT_H */