mirror of
https://github.com/curl/curl.git
synced 2026-07-23 12:07:17 +03:00
Cludge fix for djgpp 2.03 or older; it doesn't have snprintf() etc.
So avoid using x_was_used().
This commit is contained in:
parent
c6ec576cbb
commit
c6ae0ebcbf
1 changed files with 4 additions and 0 deletions
|
|
@ -38,6 +38,10 @@
|
|||
#include <ctype.h>
|
||||
#include <string.h>
|
||||
|
||||
#if defined(DJGPP) && (DJGPP_MINOR < 4)
|
||||
#undef CURLDEBUG /* don't use x_was_used() here */
|
||||
#endif
|
||||
|
||||
#include <curl/mprintf.h>
|
||||
|
||||
#ifndef SIZEOF_LONG_DOUBLE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue