mirror of
https://github.com/ksherlock/mpw-tools.git
synced 2024-11-18 19:07:36 +00:00
14 lines
215 B
C
14 lines
215 B
C
|
#ifndef __STDINT_H__
|
||
|
#define __STDINT_H__
|
||
|
|
||
|
typedef char int8_t;
|
||
|
typedef unsigned char uint8_t;
|
||
|
|
||
|
typedef short int16_t;
|
||
|
typedef unsigned short uint16_t;
|
||
|
|
||
|
typedef long int32_t;
|
||
|
typedef unsigned long uint32_t;
|
||
|
|
||
|
#endif
|