aboutsummaryrefslogtreecommitdiff
path: root/lib/strequal.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-05-18 12:03:30 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-05-18 12:03:30 +0000
commit49b9926d5ac6c4675c7bea0022631200c72bf8c5 (patch)
treecf8d95d28b022caac12e9e83e0333a1faf8a64bf /lib/strequal.h
parent6c50d2ee7d7e4c87a04422613a76de39702a0e89 (diff)
our internal strlcat() is now named Curl_strlcat()
Diffstat (limited to 'lib/strequal.h')
-rw-r--r--lib/strequal.h3
1 files changed, 2 insertions, 1 deletions
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