[sundance] Add reset completion check
[gpxe.git] / src / include / stdint.h
blob4b0e44f2e5eb9fbf52b1c328b9bcdda97e57a19b
1 #ifndef _STDINT_H
2 #define _STDINT_H
4 #include <bits/stdint.h>
6 typedef int8_t s8;
7 typedef uint8_t u8;
8 typedef int16_t s16;
9 typedef uint16_t u16;
10 typedef int32_t s32;
11 typedef uint32_t u32;
12 typedef int64_t s64;
13 typedef uint64_t u64;
15 typedef int8_t int8;
16 typedef uint8_t uint8;
17 typedef int16_t int16;
18 typedef uint16_t uint16;
19 typedef int32_t int32;
20 typedef uint32_t uint32;
21 typedef int64_t int64;
22 typedef uint64_t uint64;
24 #endif /* _STDINT_H */