diff options
Diffstat (limited to 'src/intdefs.h')
-rw-r--r-- | src/intdefs.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/intdefs.h b/src/intdefs.h new file mode 100644 index 0000000..97c6f82 --- /dev/null +++ b/src/intdefs.h @@ -0,0 +1,25 @@ +/* This file is dedicated to the public domain. */ + +#ifndef INC_INTDEFS_H +#define INC_INTDEFS_H + +typedef signed char schar; +typedef unsigned char uchar; +typedef unsigned short ushort; +typedef unsigned int uint; +typedef unsigned long ulong; +typedef long long vlong; +typedef unsigned long long uvlong; + +typedef schar s8; +typedef uchar u8; +typedef short s16; +typedef ushort u16; +typedef int s32; +typedef uint u32; +typedef vlong s64; +typedef uvlong u64; + +#endif + +// vi: sw=4 ts=4 noet tw=80 cc=80 |