blob: ec3b36dde83ed31d6b6956717a88b35e264545d7 (
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 */
|