From 34b70b0b46e34a73308a4034cc9b1c70209b9eb4 Mon Sep 17 00:00:00 2001 From: Fritz Elfert Date: Mon, 28 Jun 1999 08:56:01 +0000 Subject: First import. --- lib/bool.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lib/bool.h (limited to 'lib/bool.h') diff --git a/lib/bool.h b/lib/bool.h new file mode 100644 index 0000000..7525d6c --- /dev/null +++ b/lib/bool.h @@ -0,0 +1,20 @@ +#ifndef _bool_h_ +#define _bool_h_ + +#ifndef __GNUC__ + +#ifndef bool +#define bool int +#endif + +#ifndef true +#define true 1 +#endif + +#ifndef false +#define false 0 +#endif + +#endif + +#endif -- cgit v1.2.3