handle environ global variable
[neatlibc.git] / inttypes.h
blob204797eb46ea7a95d2294f9c2e3ecf68429ec1e3
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 #endif