Xen Test Framework
stdint.h
Go to the documentation of this file.
1
6#ifndef STDINT_H
7#define STDINT_H
8
9typedef __INT8_TYPE__ int8_t;
10typedef __INT16_TYPE__ int16_t;
11typedef __INT32_TYPE__ int32_t;
12typedef __INT64_TYPE__ int64_t;
13
14typedef __UINT8_TYPE__ uint8_t;
15typedef __UINT16_TYPE__ uint16_t;
16typedef __UINT32_TYPE__ uint32_t;
17typedef __UINT64_TYPE__ uint64_t;
18
19typedef __INTPTR_TYPE__ intptr_t;
20typedef __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 */
__UINT32_TYPE__ uint32_t
Definition: stdint.h:16
__INTPTR_TYPE__ intptr_t
Definition: stdint.h:19
__INT32_TYPE__ int32_t
Definition: stdint.h:11
__UINT64_TYPE__ uint64_t
Definition: stdint.h:17
__UINT8_TYPE__ uint8_t
Definition: stdint.h:14
__UINTPTR_TYPE__ uintptr_t
Definition: stdint.h:20
__UINT16_TYPE__ uint16_t
Definition: stdint.h:15
__INT64_TYPE__ int64_t
Definition: stdint.h:12
__INT8_TYPE__ int8_t
Definition: stdint.h:9
__INT16_TYPE__ int16_t
Definition: stdint.h:10