From 49b9926d5ac6c4675c7bea0022631200c72bf8c5 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 18 May 2001 12:03:30 +0000 Subject: [PATCH] our internal strlcat() is now named Curl_strlcat() --- lib/strequal.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/strequal.h b/lib/strequal.h index bbde26f4b..e376db938 100644 --- a/lib/strequal.h +++ b/lib/strequal.h @@ -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