=================================================================== RCS file: /cvs/mandoc/Attic/config.h.post,v retrieving revision 1.2 retrieving revision 1.7 diff -u -p -r1.2 -r1.7 --- mandoc/Attic/config.h.post 2011/07/24 18:15:14 1.2 +++ mandoc/Attic/config.h.post 2013/12/31 23:03:47 1.7 @@ -15,15 +15,24 @@ # 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; +#endif +#ifndef HAVE_FGETLN +extern char *fgetln(FILE *, size_t *); #endif #endif /* MANDOC_CONFIG_H */