blob: 67f2265acb553ce4a0a560f17cc193b69afcce1b (
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
|
/*
* 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
#if defined(true)
#undef true
#undef false
#endif
enum bool {
true = 1,
false = 0
};
#endif /* _bool_h */
|