From c6ae0ebcbf3c7b47ab444195613c6e14843fa248 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Wed, 5 Jul 2006 14:23:09 +0000 Subject: Cludge fix for djgpp 2.03 or older; it doesn't have snprintf() etc. So avoid using x_was_used(). --- lib/mprintf.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/mprintf.c') diff --git a/lib/mprintf.c b/lib/mprintf.c index 598ea7626..475afb770 100644 --- a/lib/mprintf.c +++ b/lib/mprintf.c @@ -38,6 +38,10 @@ #include #include +#if defined(DJGPP) && (DJGPP_MINOR < 4) +#undef CURLDEBUG /* don't use x_was_used() here */ +#endif + #include #ifndef SIZEOF_LONG_DOUBLE -- cgit v1.2.3