diff options
| author | Michael Brown | 2005-05-19 18:47:19 +0200 |
|---|---|---|
| committer | Michael Brown | 2005-05-19 18:47:19 +0200 |
| commit | 4e87543c741e90ff3935864929e8d8eba17a6ab7 (patch) | |
| tree | 3bb2de6d2e5ebbcb935efa33b17be3526ff05733 /src/arch/e1 | |
| parent | Added FSP (diff) | |
| parent | Import from Etherboot 5.4 (diff) | |
| download | ipxe-4e87543c741e90ff3935864929e8d8eba17a6ab7.tar.gz ipxe-4e87543c741e90ff3935864929e8d8eba17a6ab7.tar.xz ipxe-4e87543c741e90ff3935864929e8d8eba17a6ab7.zip | |
Synced across updates from Etherboot 5.4 tree
Diffstat (limited to 'src/arch/e1')
| -rw-r--r-- | src/arch/e1/include/stdint.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/arch/e1/include/stdint.h b/src/arch/e1/include/stdint.h index 8a7ad978a..505cc3751 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 */ |
