From: Ingo Schwarze Date: Wed, 23 Apr 2014 23:29:10 +0000 (+0000) Subject: prototype for reallocarray() X-Git-Tag: VERSION_1_13_1~161 X-Git-Url: https://git.cameronkatri.com/mandoc.git/commitdiff_plain/ec5cb543148ad15ac4df5afd0fa549c831c14fb4?ds=inline prototype for reallocarray() --- diff --git a/config.h.post b/config.h.post index fe8f015e..f2d24297 100644 --- a/config.h.post +++ b/config.h.post @@ -20,6 +20,9 @@ extern char *fgetln(FILE *, size_t *); extern int getsubopt(char **, char * const *, char **); extern char *suboptarg; #endif +#ifndef HAVE_REALLOCARRAY +extern void *reallocarray(void *, size_t, size_t); +#endif #ifndef HAVE_STRCASESTR extern char *strcasestr(const char *, const char *); #endif