diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-09-16 05:49:53 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-09-16 05:49:53 +0000 |
commit | 09c8f558f722f897ba234f0f5c43731e500c9763 (patch) | |
tree | f5ed7f800c7f9c57746bd101f7955a23a7c0fa2c /tests/server/tftpd.c | |
parent | 528a149def94c2251285c3862de06e33a20db9c9 (diff) |
use internal *printf() clones
Diffstat (limited to 'tests/server/tftpd.c')
-rw-r--r-- | tests/server/tftpd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/server/tftpd.c b/tests/server/tftpd.c index bc9c82e1c..27876ba0f 100644 --- a/tests/server/tftpd.c +++ b/tests/server/tftpd.c @@ -91,6 +91,10 @@ #include <pwd.h> #include <grp.h> +#define ENABLE_CURLX_PRINTF +/* make the curlx header define all printf() functions to use the curlx_* + versions instead */ +#include "curlx.h" /* from the private lib dir */ #include "getpart.h" #include "util.h" |