]> git.buserror.net Git - polintos/scott/priv.git/blob - include/c/lowlevel/arch-x86/types.h
Initial checkin from Perforce.
[polintos/scott/priv.git] / include / c / lowlevel / arch-x86 / types.h
1 // include/arch-x86/types.h
2
3 #ifndef _LL_ARCH_TYPES_H
4 #define _LL_ARCH_TYPES_H
5
6 typedef unsigned char       uint8_t;
7 typedef unsigned short      uint16_t;
8 typedef unsigned int        uint32_t;
9 typedef unsigned long long  uint64_t;
10 typedef char                int8_t;
11 typedef short               int16_t;
12 typedef int                 int32_t;
13 typedef long long           int64_t;
14
15 typedef unsigned long size_t;
16 typedef long ssize_t;
17 typedef long intptr_t;
18 typedef unsigned long uintptr_t;
19 typedef long ptrdiff_t;
20
21 #define _LL_LONG_BYTES      4
22 #define _LL_LONG_LOGBYTES   2
23
24 #endif