diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-04-22 15:49:17 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-04-22 15:49:17 +0000 |
commit | 04b20b7ed25f4d61ebc319185b65e6341137cfc9 (patch) | |
tree | 2efaf976182792e801d2bb9a1d9ebe72ca880a25 | |
parent | ff4f4abe4be9fc09d163dd28249431306b8a7349 (diff) |
old krb4 fix for strlcat() prototype
-rw-r--r-- | lib/strequal.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/strequal.h b/lib/strequal.h index e4ed39da5..bbde26f4b 100644 --- a/lib/strequal.h +++ b/lib/strequal.h @@ -32,4 +32,8 @@ int curl_strnequal(const char *first, const char *second, size_t max); #define strequal(a,b) curl_strequal(a,b) #define strnequal(a,b,c) curl_strnequal(a,b,c) +#ifndef HAVE_STRLCAT +size_t strlcat(char *dst, const char *src, size_t siz); +#endif + #endif |