Cucumber/Kernel/include/types.h

17 lines
301 B
C
Raw Normal View History

2011-02-20 22:38:15 +00:00
// Basic data types (because typing unsigned int is annoying)
#ifndef __TYPES_H__
#define __TYPES_H__
2011-04-14 19:43:46 +00:00
typedef unsigned long long u64;
2011-02-20 22:38:15 +00:00
typedef unsigned int u32;
typedef unsigned short u16;
typedef unsigned char u8;
2011-06-28 11:15:42 +00:00
typedef long long s64;
2011-02-20 22:38:15 +00:00
typedef int s32;
typedef short s16;
typedef char s8;
#endif