=================================================================== RCS file: /cvs/mandoc/Attic/config.h.post,v retrieving revision 1.1 retrieving revision 1.7 diff -u -p -r1.1 -r1.7 --- mandoc/Attic/config.h.post 2010/01/01 17:14:27 1.1 +++ mandoc/Attic/config.h.post 2013/12/31 23:03:47 1.7 @@ -15,11 +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 */