c7ff8fc21cd7c69d76d798df2197b3a2e6ed0310
[tpg/acess2.git] / Usermode / include / stdint.h
1 /*
2  */
3 #ifndef _STDTYPES_H_
4 #define _STDTYPES_H_
5
6 typedef unsigned int    uint;
7 typedef unsigned char   uint8_t;
8 typedef unsigned short  uint16_t;
9 typedef unsigned long   uint32_t;
10 typedef unsigned long long      uint64_t;
11
12 typedef signed char             int8_t;
13 typedef signed short    int16_t;
14 typedef signed long             int32_t;
15 typedef signed long long        int64_t;
16
17 #if __LP64__
18 typedef uint64_t        intptr_t;
19 typedef uint64_t        uintptr_t;
20 #else
21 typedef uint32_t        intptr_t;
22 typedef uint32_t        uintptr_t;
23 #endif
24 #if 0
25 # error "Unknown pointer size"
26 #endif
27
28 #endif

UCC git Repository :: git.ucc.asn.au