home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
RISC DISC 3
/
RISC_DISC_3.iso
/
resources
/
etexts
/
gems
/
gemsv
/
ch7_7
/
libgm
/
bool.h
next >
Wrap
C/C++ Source or Header
|
1995-03-07
|
195b
|
14 lines
// bool.h - boolean type
//
// libgm++: Graphics Math Library
// Ferdi Scheepers and Stephen F May
// 15 June 1994
#ifndef BOOL_H
#define BOOL_H
typedef int bool;
enum { false, true };
#endif