aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fetchmail.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/fetchmail.h b/fetchmail.h
index b6e03ba4..af38881b 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -720,4 +720,14 @@ extern char *program_name;
* <tab>;<newline>;<vertical-tab>;<form-feed>;<carriage-return>;<space> */
#define POSIX_space "\t\n\v\f\r "
+/* strlcpy/strlcat prototypes */
+#ifndef HAVE_STRLCAT
+size_t
+strlcat(chat *dst, const char *src, size_t siz);
+#endif
+#ifndef HAVE_STRLCPY
+size_t
+strlcpy(char *dst, const char *src, size_t siz);
+#endif
+
/* fetchmail.h ends here */