|
@@ -1,5 +1,5 @@
|
1
|
|
-#ifndef STDINT_H
|
2
|
|
-#define STDINT_H
|
|
1
|
+#ifndef _BITS_STDINT_H
|
|
2
|
+#define _BITS_STDINT_H
|
3
|
3
|
|
4
|
4
|
typedef typeof(sizeof(int)) size_t;
|
5
|
5
|
typedef signed long ssize_t;
|
|
@@ -18,22 +18,4 @@ typedef signed long long int64_t;
|
18
|
18
|
typedef unsigned long physaddr_t;
|
19
|
19
|
typedef unsigned long intptr_t;
|
20
|
20
|
|
21
|
|
-typedef int8_t s8;
|
22
|
|
-typedef uint8_t u8;
|
23
|
|
-typedef int16_t s16;
|
24
|
|
-typedef uint16_t u16;
|
25
|
|
-typedef int32_t s32;
|
26
|
|
-typedef uint32_t u32;
|
27
|
|
-typedef int64_t s64;
|
28
|
|
-typedef uint64_t u64;
|
29
|
|
-
|
30
|
|
-typedef int8_t int8;
|
31
|
|
-typedef uint8_t uint8;
|
32
|
|
-typedef int16_t int16;
|
33
|
|
-typedef uint16_t uint16;
|
34
|
|
-typedef int32_t int32;
|
35
|
|
-typedef uint32_t uint32;
|
36
|
|
-typedef int64_t int64;
|
37
|
|
-typedef uint64_t uint64;
|
38
|
|
-
|
39
|
|
-#endif /* STDINT_H */
|
|
21
|
+#endif /* _BITS_STDINT_H */
|