Skip to content
Snippets Groups Projects
Commit 04b20b7e authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

old krb4 fix for strlcat() prototype

parent ff4f4abe
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment