summaryrefslogtreecommitdiffstats
path: root/doc/tools/bmenu/system.h
blob: cfc84e6333fad8ccbaac628c17ebdd22459864f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 *  COPYRIGHT (c) 1988-2002.
 *  On-Line Applications Research Corporation (OAR).
 *  All rights reserved.
 *
 *  $Id$
 */

#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