our internal strlcat() is now named Curl_strlcat()

This commit is contained in:
Daniel Stenberg 2001-05-18 12:03:30 +00:00
parent 6c50d2ee7d
commit 49b9926d5a
1 changed files with 2 additions and 1 deletions

View File

@ -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