From: Martin Mares Date: Tue, 7 Mar 2000 21:04:14 +0000 (+0000) Subject: DBG calls debug() if defined(LOCAL_DEBUG) || defined(GLOBAL_DEBUG). X-Git-Tag: v1.2.0~1296 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3cbfcafecdf4f3dd1b201e0adf849f9959284c87;p=thirdparty%2Fbird.git DBG calls debug() if defined(LOCAL_DEBUG) || defined(GLOBAL_DEBUG). --- diff --git a/lib/birdlib.h b/lib/birdlib.h index 722fe5775..22695c19b 100644 --- a/lib/birdlib.h +++ b/lib/birdlib.h @@ -1,7 +1,7 @@ /* * BIRD Library * - * (c) 1998--1999 Martin Mares + * (c) 1998--2000 Martin Mares * * 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...)