From: Ulrich Drepper Date: Wed, 19 Nov 1997 23:24:28 +0000 (+0000) Subject: Define NDEBUG only if not yet defined. X-Git-Tag: cvs/glibc-2_0_6-pre2~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f930d245fb37cab24b512eb16825d8260a72ef0;p=thirdparty%2Fglibc.git Define NDEBUG only if not yet defined. --- diff --git a/stdio-common/printf_fp.c b/stdio-common/printf_fp.c index 49292e5b7ca..0920fb4fca0 100644 --- a/stdio-common/printf_fp.c +++ b/stdio-common/printf_fp.c @@ -42,7 +42,9 @@ #include #include -#define NDEBUG /* Undefine this for debugging assertions. */ +#ifndef NDEBUG +# define NDEBUG /* Undefine this for debugging assertions. */ +#endif #include /* This defines make it possible to use the same code for GNU C library and