From: Ken Raeburn Date: Thu, 5 May 1994 23:24:57 +0000 (+0000) Subject: (TRUE, FALSE): Always use undef before defining them. X-Git-Tag: gdb-4_18~14614 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d20d64bb5312bb4d95f3eaaab29490d32d6b8a85;p=external%2Fbinutils.git (TRUE, FALSE): Always use undef before defining them. --- diff --git a/gprof/gprof.h b/gprof/gprof.h index c1b91ad..0d8a549 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 /*