diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2001-03-02 07:41:40 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2001-03-02 07:41:40 +0000 | 
| commit | b6c5da337aa6648bf9f39cd15f97123e64b4a91f (patch) | |
| tree | 608b922698a529a0a0db070b29301b9492b427eb /lib/memdebug.h | |
| parent | 9bc24e48768a25f308f8992ea4a671657279a9df (diff) | |
strdup() takes a const char * now
Diffstat (limited to 'lib/memdebug.h')
| -rw-r--r-- | lib/memdebug.h | 2 | 
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 */ | 
