source: rtems/doc/tools/bmenu/system.h @ 39e50b3f

4.104.114.84.95
Last change on this file since 39e50b3f was 39e50b3f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/23/03 at 19:11:46

2003-11-23 Ralf Corsepius <corsepiu@…>

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