blob: d5f6eba30cdedbe189dc685971a6a34123574614 (
plain)
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
|
/*
* CENA C++ Utilities
*
* Copyright 1990, 1991, 1992
* Laboratoire de Recherche en Informatique (LRI)
* Centre d'Etudes de la Navigation Aerienne (CENA)
*
* booleans
*
* $Id$
* $CurLog$
*/
#ifndef _bool_h
#define _bool_h 1
#include "cplus_bugs.h"
#ifdef CPLUS_BUG22
#if defined(true)
#undef true
#undef false
#endif
enum bool {
true = 1,
false = 0
};
#endif
#endif /* _bool_h */
|