AcessNative - Fixing for recent kernel changes
[tpg/acess2.git] / Usermode / include / stdint.h
1 /*
2  */
3 #ifndef _STDINT_H_
4 #define _STDINT_H_
5
6 #include "acess/intdefs.h"
7
8 #define INT_MIN -0x80000000
9 #define INT_MAX 0x7FFFFFFF
10
11 typedef __uint8_t       uint8_t;
12 typedef __uint16_t      uint16_t;
13 typedef __uint32_t      uint32_t;
14 typedef __uint64_t      uint64_t;
15 typedef __int8_t        int8_t;
16 typedef __int16_t       int16_t;
17 typedef __int32_t       int32_t;
18 typedef __int64_t       int64_t;
19
20 typedef __intptr_t      intptr_t;
21 typedef __uintptr_t     uintptr_t;
22
23 //typedef uint64_t      off_t;
24
25 #endif

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