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

4.104.114.95
Last change on this file since 4616790 was 4616790, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/07/07 at 02:42:58

Eliminate unsigned8, unsigned16, unsigned32. Use size_t, ptrdiff_t, intptr_t for 64bit compliance.

  • Property mode set to 100644
File size: 439 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
12#define STATIC static
13#define INLINE inline
14
15#ifndef NULL
16#define NULL 0
17#endif
18
19typedef unsigned int   boolean;
20
21#if !defined( TRUE ) || (TRUE != 1)
22#undef TRUE
23#define TRUE     (1)
24#endif
25
26#if !defined( FALSE ) || (FALSE != 0)
27#undef FALSE
28#define FALSE 0
29#endif
30
31#endif
Note: See TracBrowser for help on using the repository browser.