home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Otherware
/
Otherware_1_SB_Development.iso
/
amiga
/
programm
/
language
/
gcc222.lha
/
g++-include
/
bool.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-07-19
|
285b
|
14 lines
// Defining TRUE and FALSE is usually a Bad Idea,
// because you will probably be inconsistent with anyone
// else who had the same clever idea.
// Therefore: DON'T USE THIS FILE.
#ifndef _bool_h
#define _bool_h 1
#undef FALSE
#undef TRUE
enum bool { FALSE = 0, TRUE = 1 };
#endif