elf: add the 64-bit types
[neatlibc.git] / stdint.h
blob7d68f48339a12eab567834ffd5c49611c48c78cd
1 #ifndef _INTTYPES_H
2 #define _INTTYPES_H
4 typedef char int8_t;
5 typedef short int16_t;
6 typedef int int32_t;
7 typedef unsigned char uint8_t;
8 typedef unsigned short uint16_t;
9 typedef unsigned int uint32_t;
11 #ifdef __x86_64__
12 typedef unsigned long uint64_t;
13 typedef long int64_t;
14 #endif
16 #endif