blob: 97c6f82e3aa47df9de7a02c2f598409027738ed5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
|