strdup() takes a const char * now

This commit is contained in:
Daniel Stenberg
2001-03-02 07:41:40 +00:00
parent 9bc24e4876
commit b6c5da337a
2 changed files with 2 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ void *curl_domalloc(size_t size, int line, char *source)
return mem;
}
char *curl_dostrdup(char *str, int line, char *source)
char *curl_dostrdup(const char *str, int line, char *source)
{
char *mem;
size_t len;