aboutsummaryrefslogtreecommitdiff
path: root/lib/memdebug.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-03-02 07:41:40 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-03-02 07:41:40 +0000
commitb6c5da337aa6648bf9f39cd15f97123e64b4a91f (patch)
tree608b922698a529a0a0db070b29301b9492b427eb /lib/memdebug.h
parent9bc24e48768a25f308f8992ea4a671657279a9df (diff)
strdup() takes a const char * now
Diffstat (limited to 'lib/memdebug.h')
-rw-r--r--lib/memdebug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/memdebug.h b/lib/memdebug.h
index 58657c35d..fc9a3222a 100644
--- a/lib/memdebug.h
+++ b/lib/memdebug.h
@@ -7,7 +7,7 @@
void *curl_domalloc(size_t size, int line, char *source);
void *curl_dorealloc(void *ptr, size_t size, int line, char *source);
void curl_dofree(void *ptr, int line, char *source);
-char *curl_dostrdup(char *str, int line, char *source);
+char *curl_dostrdup(const char *str, int line, char *source);
void curl_memdebug(char *logname);
/* file descriptor manipulators */