source: rtems/doc/tools/bmenu/system.h @ 6449498

4.104.114.84.95
Last change on this file since 6449498 was 6449498, checked in by Joel Sherrill <joel.sherrill@…>, on 01/17/02 at 21:47:47

2001-01-17 Joel Sherrill <joel@…>

  • SUPPORT, LICENSE: New files.
  • Numerous files touched as part of merging the 4.5 branch onto the mainline development trunk and ensuring that the script that cuts snapshots and releases works on the documentation.
  • Property mode set to 100644
File size: 565 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1988-2002.
3 *  On-Line Applications Research Corporation (OAR).
4 *  All rights reserved.
5 *
6 *  $Id$
7 */
8
9#ifndef __SYSTEM_h
10#define __SYSTEM_h
11
12typedef unsigned int   unsigned32;
13typedef unsigned short unsigned16;
14typedef unsigned char  unsigned8;
15
16#define USE_INLINES
17#define STATIC static
18#define INLINE inline
19
20#ifndef NULL
21#define NULL 0
22#endif
23
24typedef unsigned int   boolean;
25
26#if !defined( TRUE ) || (TRUE != 1)
27#undef TRUE
28#define TRUE     (1)
29#endif
30
31#if !defined( FALSE ) || (FALSE != 0)
32#undef FALSE
33#define FALSE 0
34#endif
35
36#endif
Note: See TracBrowser for help on using the repository browser.