From: Ken Raeburn Date: Thu, 5 May 1994 23:24:57 +0000 (+0000) Subject: (TRUE, FALSE): Always use undef before defining them. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d20d64bb5312bb4d95f3eaaab29490d32d6b8a85;p=binutils-gdb.git (TRUE, FALSE): Always use undef before defining them. --- diff --git a/gprof/gprof.h b/gprof/gprof.h index c1b91ad355c..0d8a5497e3f 100644 --- a/gprof/gprof.h +++ b/gprof/gprof.h @@ -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 /*