aboutsummaryrefslogtreecommitdiff
path: root/src/lib/def.h
blob: dc3cc55824a3b95ea2636a4ffec45b3829d8ee09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef DEF_H
#define DEF_H

typedef signed char s8;
typedef unsigned char u8;

typedef signed short s16;
typedef unsigned short u16;

typedef signed int s32;
typedef unsigned int u32;

typedef signed long long s64;
typedef unsigned long long u64;

#define NULL ((void *)0)

#endif