mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
our internal strlcat() is now named Curl_strlcat()
This commit is contained in:
parent
6c50d2ee7d
commit
49b9926d5a
@ -33,7 +33,8 @@ int curl_strnequal(const char *first, const char *second, size_t max);
|
||||
#define strnequal(a,b,c) curl_strnequal(a,b,c)
|
||||
|
||||
#ifndef HAVE_STRLCAT
|
||||
size_t strlcat(char *dst, const char *src, size_t siz);
|
||||
#define strlcat(x,y,z) Curl_strlcat(x,y,z)
|
||||
size_t Curl_strlcat(char *dst, const char *src, size_t siz);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user