diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-10-09 11:12:34 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-10-09 11:12:34 +0000 |
commit | 0f8facb49b45a711fa7832c68260a5b45b362922 (patch) | |
tree | 877fa9fabaeb601098cdbb04e48947e34100d8a4 /lib/escape.c | |
parent | d49d05bce603313d71f1a2b9904c74ca7b368703 (diff) | |
download | curl-0f8facb49b45a711fa7832c68260a5b45b362922.tar.gz |
added memory debugging include file
Diffstat (limited to 'lib/escape.c')
-rw-r--r-- | lib/escape.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/escape.c b/lib/escape.c index c728b80f8..048fd0f99 100644 --- a/lib/escape.c +++ b/lib/escape.c @@ -48,6 +48,11 @@ #include <stdlib.h> #include <string.h> +/* The last #include file should be: */ +#ifdef MALLOCDEBUG +#include "memdebug.h" +#endif + char *curl_escape(char *string) { int alloc=strlen(string)+1; |