-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathstdint.h
More file actions
36 lines (32 loc) · 658 Bytes
/
stdint.h
File metadata and controls
36 lines (32 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef _STDINT
#define _STDINT
#ifndef int8_t
#define int8_t int8
#endif
#ifndef int16_t
#define int16_t int16
#endif
#ifndef int32_t
#define int32_t int32
#endif
#ifndef int64_t
#define int64_t int64
#endif
#ifndef uint8_t
#define uint8_t uint8
#endif
#ifndef uint16_t
#define uint16_t uint16
#endif
#ifndef uint32_t
#define uint32_t uint32
#endif
#define S8_C(x) x
#define U8_C(x) x
#define S16_C(x) x
#define U16_C(x) x
#define S32_C(x) x
#define U32_C(x) x
#define S64_C(x) x
#define U64_C(x) x
#endif