Initial revision

This commit is contained in:
Joel Sherrill
1997-05-27 12:40:11 +00:00
parent b65131dc23
commit ae68ff0857
198 changed files with 44720 additions and 0 deletions

29
doc/tools/bmenu/system.h Normal file
View File

@@ -0,0 +1,29 @@
#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