summaryrefslogblamecommitdiffstats
path: root/doc/tools/bmenu/system.h
blob: 21e163a35eb9ac9893fe57770d6948ebaa1c37a8 (plain) (tree)




























                                     

#ifndef __SYSTEM_h
#define __SYSTEM_h

typedef unsigned int   unsigned32;
typedef unsigned short unsigned16;
typedef unsigned char  unsigned8;

#define USE_INLINES 
#define STATIC static
#define INLINE inline

#ifndef NULL
#define NULL 0
#endif

typedef unsigned int   boolean;

#if !defined( TRUE ) || (TRUE != 1)
#undef TRUE
#define TRUE     (1)
#endif

#if !defined( FALSE ) || (FALSE != 0)
#undef FALSE
#define FALSE 0
#endif

#endif