]> git.lizzy.rs Git - plan9front.git/blob - amd64/include/ape/inttypes.h
libc and ape support for amd64
[plan9front.git] / amd64 / include / ape / inttypes.h
1 #ifndef _SUSV2_SOURCE
2 #error "inttypes.h is SUSV2"
3 #endif
4
5 #ifndef _INTTYPES_H_
6 #define _INTTYPES_H_ 1
7
8
9 typedef char int8_t;
10 typedef short int16_t;
11 typedef int int32_t;
12 typedef long long int64_t;
13 typedef unsigned char uint8_t;
14 typedef unsigned short uint16_t;
15 typedef unsigned int uint32_t;
16 typedef unsigned long long uint64_t;
17
18 typedef long long intptr_t;
19 typedef unsigned long long uintptr_t;
20
21 #endif