(TRUE, FALSE): Always use undef before defining them.
authorKen Raeburn <raeburn@cygnus>
Thu, 5 May 1994 23:24:57 +0000 (23:24 +0000)
committerKen Raeburn <raeburn@cygnus>
Thu, 5 May 1994 23:24:57 +0000 (23:24 +0000)
gprof/gprof.h

index c1b91ad355ccfbc7e08d7b483058c66794615354..0d8a5497e3fca553d6c661d84f41327243c6552d 100644 (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
 
     /*
This page took 0.026559 seconds and 4 git commands to generate.