kolibrios/programs/system/drivers/ati2d/types.h
Sergey Semyonov (Serge) fb3e9a2b66 cleanup
git-svn-id: svn://kolibrios.org@877 a494cfbc-eb01-0410-851d-a64ba20cac60
2008-10-13 21:02:35 +00:00

20 lines
355 B
C

#define NULL (void*)0
typedef unsigned char u8_t;
typedef unsigned short int u16_t;
typedef unsigned int u32_t;
typedef unsigned long long u64_t;
typedef unsigned int size_t;
typedef unsigned int count_t;
typedef unsigned int eflags_t;
typedef int bool;
#define TRUE (bool)1
#define FALSE (bool)0