7 lines
105 B
Text
7 lines
105 B
Text
|
|
#ifndef HAVE_BOOL
|
|
#define HAVE_BOOL
|
|
typedef int bool;
|
|
const bool false = 0;
|
|
const bool true = 1;
|
|
#endif
|