Xen Test Framework
stdint.h
Go to the documentation of this file.
1 
6 #ifndef STDINT_H
7 #define STDINT_H
8 
9 typedef __INT8_TYPE__ int8_t;
10 typedef __INT16_TYPE__ int16_t;
11 typedef __INT32_TYPE__ int32_t;
12 typedef __INT64_TYPE__ int64_t;
13 
14 typedef __UINT8_TYPE__ uint8_t;
15 typedef __UINT16_TYPE__ uint16_t;
16 typedef __UINT32_TYPE__ uint32_t;
17 typedef __UINT64_TYPE__ uint64_t;
18 
19 typedef __INTPTR_TYPE__ intptr_t;
20 typedef __UINTPTR_TYPE__ uintptr_t;
21 
22 #endif /* STDINT_H */
23 
24 /*
25  * Local variables:
26  * mode: C
27  * c-file-style: "BSD"
28  * c-basic-offset: 4
29  * tab-width: 4
30  * indent-tabs-mode: nil
31  * End:
32  */
__INT16_TYPE__ int16_t
Definition: stdint.h:10
__INT64_TYPE__ int64_t
Definition: stdint.h:12
__UINTPTR_TYPE__ uintptr_t
Definition: stdint.h:20
__INT32_TYPE__ int32_t
Definition: stdint.h:11
__UINT64_TYPE__ uint64_t
Definition: stdint.h:17
__UINT32_TYPE__ uint32_t
Definition: stdint.h:16
__INTPTR_TYPE__ intptr_t
Definition: stdint.h:19
__INT8_TYPE__ int8_t
Definition: stdint.h:9
__UINT16_TYPE__ uint16_t
Definition: stdint.h:15
__UINT8_TYPE__ uint8_t
Definition: stdint.h:14