From d20d64bb5312bb4d95f3eaaab29490d32d6b8a85 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Thu, 5 May 1994 23:24:57 +0000 Subject: [PATCH] (TRUE, FALSE): Always use undef before defining them. --- gprof/gprof.h | 5 +++++ 1 file changed, 5 insertions(+) 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 /* -- 2.7.4