mirror of
https://github.com/curl/curl.git
synced 2026-07-27 23:53:06 +03:00
strdup() takes a const char * now
This commit is contained in:
parent
9bc24e4876
commit
b6c5da337a
2 changed files with 2 additions and 2 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue