aboutsummaryrefslogtreecommitdiff
path: root/types.h
blob: 4b4a408a2cc6a337b34fdbc1090ed84688c83e45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// types, common crap

#ifndef TYPES_H
#define TYPES_H

typedef unsigned char       u8;
typedef unsigned short      u16;
typedef unsigned int        u32;
typedef unsigned long int   u64;
typedef signed char         s8;
typedef signed short        s16;
typedef signed int          s32;
typedef signed long int     s64;

#endif // TYPES_H