123456789101112131415161718 |
- #ifndef _STDINT_H
- #include <stdint.h>
- #if 0
- #ifndef __INTTYPES_H__
- #define __INTTYPES_H__
- typedef unsigned char uint8_t;
- typedef unsigned short uint16_t;
- typedef unsigned long uint32_t;
- typedef signed char int8_t;
- typedef signed short int16_t;
- typedef signed long int32_t;
- typedef long intptr_t;
- typedef unsigned long uintptr_t;
- #endif
- #endif
- #endif /* __INTTYPES_H__ */
|