summaryrefslogtreecommitdiffstats
path: root/common/types.h
blob: 4c911edf2f56e7733876f4fadb63f4ea6851a5c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _TYPES_H_
#define _TYPES_H_

#include <stdint.h>
#include <stdbool.h>

typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
typedef unsigned long ulong;

#define NULL 0

#endif