stdio: puts() and vprintf()
[neatlibc.git] / stdint.h
blob5b6343e689696e89a2b0066683fe457a32ce797c
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 #else
15 typedef unsigned long long uint64_t;
16 typedef long long int64_t;
17 #endif
19 #endif