summaryrefslogtreecommitdiffstats
path: root/src/arch
diff options
context:
space:
mode:
authorMichael Brown2007-01-26 02:30:16 +0100
committerMichael Brown2007-01-26 02:30:16 +0100
commitf59281d8f645d2fb6225ca27a3a8e7db5ceb81e5 (patch)
tree47a6ea0d0d9cd60b1639d20d1bfe27f92942bc66 /src/arch
parentHelp quick testing of building Linux code inside gPXE (diff)
downloadipxe-f59281d8f645d2fb6225ca27a3a8e7db5ceb81e5.tar.gz
ipxe-f59281d8f645d2fb6225ca27a3a8e7db5ceb81e5.tar.xz
ipxe-f59281d8f645d2fb6225ca27a3a8e7db5ceb81e5.zip
Yet more synonyms that people tend to use.
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/i386/include/stdint.h28
1 files changed, 17 insertions, 11 deletions
diff --git a/src/arch/i386/include/stdint.h b/src/arch/i386/include/stdint.h
index 9a07b8cb8..34bea8b40 100644
--- a/src/arch/i386/include/stdint.h
+++ b/src/arch/i386/include/stdint.h
@@ -18,16 +18,22 @@ typedef signed long long int64_t;
typedef unsigned long physaddr_t;
typedef unsigned long intptr_t;
-typedef signed char s8;
-typedef unsigned char u8;
-
-typedef signed short s16;
-typedef unsigned short u16;
-
-typedef signed int s32;
-typedef unsigned int u32;
-
-typedef signed long long s64;
-typedef unsigned long long u64;
+typedef int8_t s8;
+typedef uint8_t u8;
+typedef int16_t s16;
+typedef uint16_t u16;
+typedef int32_t s32;
+typedef uint32_t u32;
+typedef int64_t s64;
+typedef uint64_t u64;
+
+typedef int8_t int8;
+typedef uint8_t uint8;
+typedef int16_t int16;
+typedef uint16_t uint16;
+typedef int32_t int32;
+typedef uint32_t uint32;
+typedef int64_t int64;
+typedef uint64_t uint64;
#endif /* STDINT_H */