deepstone
view src/inttypes.h @ 26:61d97b17cd2b
shortened the name fixed_point.c/h to fixedp
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 22 Sep 2013 02:25:41 +0300 |
parents | 00d84ab1ef26 |
children | 1870c4ef8b76 |
line source
1 #ifndef INT_TYPES_H_
2 #define INT_TYPES_H_
4 #ifdef __DOS__
5 typedef char int8_t;
6 typedef short int16_t;
7 typedef long int32_t;
9 typedef unsigned char uint8_t;
10 typedef unsigned short uint16_t;
11 typedef unsigned long uint32_t;
12 #else
13 #include <stdint.h>
14 #endif
16 #endif /* INT_TYPES_H_ */