aboutsummaryrefslogtreecommitdiffstats
path: root/missing.h
diff options
context:
space:
mode:
Diffstat (limited to 'missing.h')
-rw-r--r--missing.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/missing.h b/missing.h
index db37e3ae4c..81fdfecf72 100644
--- a/missing.h
+++ b/missing.h
@@ -137,4 +137,12 @@ extern int snprintf(char *, size_t n, char const *, ...);
extern int vsnprintf(char *, size_t n, char const *, va_list);
#endif
+#ifndef HAVE_STRLCPY
+extern size_t strlcpy(char *, const char*, size_t);
+#endif
+
+#ifndef HAVE_STRLCAT
+extern size_t strlcat(char *, const char*, size_t);
+#endif
+
#endif /* MISSING_H */