Cleanup in curses.h: removed reg definition. All include files reformatted for 4-space indent.
14 lines
270 B
C
14 lines
270 B
C
|
|
#ifndef _STDINT_H
|
|
#define _STDINT_H
|
|
|
|
typedef signed char int8_t;
|
|
typedef short int int16_t;
|
|
typedef int int32_t;
|
|
|
|
typedef unsigned char uint8_t;
|
|
typedef unsigned short int uint16_t;
|
|
typedef unsigned int uint32_t;
|
|
|
|
#endif
|