(TRUE, FALSE): Always use undef before defining them.

This commit is contained in:
Ken Raeburn 1994-05-05 23:24:57 +00:00
parent 8afeb6eef0
commit d20d64bb53

View File

@ -51,7 +51,12 @@ char *whoami;
* booleans
*/
typedef int bool;
/* These may already be defined on some systems. We could probably just
use the BFD versions of these, since BFD has already dealt with this
problem. */
#undef FALSE
#define FALSE 0
#undef TRUE
#define TRUE 1
/*