aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/config.h.post
diff options
context:
space:
mode:
Diffstat (limited to 'config.h.post')
-rw-r--r--config.h.post6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.h.post b/config.h.post
index 9a33671b..ab9d8c6b 100644
--- a/config.h.post
+++ b/config.h.post
@@ -27,12 +27,18 @@
# endif
#endif
+#ifndef HAVE_STRCASESTR
+extern char *strcasestr(const char *, const char *);
+#endif
#ifndef HAVE_STRLCAT
extern size_t strlcat(char *, const char *, size_t);
#endif
#ifndef HAVE_STRLCPY
extern size_t strlcpy(char *, const char *, size_t);
#endif
+#ifndef HAVE_STRSEP
+extern char *strsep(char **, const char *);
+#endif
#ifndef HAVE_GETSUBOPT
extern int getsubopt(char **, char * const *, char **);
extern char *suboptarg;