old krb4 fix for strlcat() prototype

This commit is contained in:
Daniel Stenberg 2001-04-22 15:49:17 +00:00
parent ff4f4abe4b
commit 04b20b7ed2
1 changed files with 4 additions and 0 deletions

View File

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