_stdint.h revision 548dde4863e9a2315e3f327efe63ff55949addb8
1#ifndef __STDINT_H
2#define __STDINT_H
3#include <sys/types.h>
4typedef  unsigned char   uint8_t;
5typedef  unsigned short  uint16_t;
6typedef  unsigned long   uint32_t;
7
8typedef    signed char   int8_t;
9typedef    signed short  int16_t;
10typedef    signed long   int32_t;
11#endif
12
13
14