]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
DBG calls debug() if defined(LOCAL_DEBUG) || defined(GLOBAL_DEBUG).
authorMartin Mares <mj@ucw.cz>
Tue, 7 Mar 2000 21:04:14 +0000 (21:04 +0000)
committerMartin Mares <mj@ucw.cz>
Tue, 7 Mar 2000 21:04:14 +0000 (21:04 +0000)
lib/birdlib.h

index 722fe57751da6707baf0ddb0fb8e09d6079fda7f..22695c19b19badabc0aa92901c178b165178f772 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     BIRD Library
  *
- *     (c) 1998--1999 Martin Mares <mj@ucw.cz>
+ *     (c) 1998--2000 Martin Mares <mj@ucw.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
@@ -48,7 +48,7 @@ void debug(char *msg, ...);           /* Printf to debug output */
 
 /* Debugging */
 
-#ifdef LOCAL_DEBUG
+#if defined(LOCAL_DEBUG) || defined(GLOBAL_DEBUG)
 #define DBG(x, y...) debug(x, ##y)
 #else
 #define DBG(x, y...)