basic types

This commit is contained in:
Ronald G. Minnich 2000-10-18 17:20:39 +00:00
commit a81104004a

8
src/include/types.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef TYPES_H
#define TYPES_H
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned long u32;
typedef unsigned long size_t;
#define NULL (0)
#endif