Files
rtems/doc/tools/bmenu/system.h
Ralf Corsepius 39e50b3f23 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* system.h: Remove USE_INLINES.
	* chain.c: Remove USE_INLINES.
2003-11-23 19:11:46 +00:00

36 lines
544 B
C

/*
* 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 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