Module Name: src Committed By: nakayama Date: Wed Aug 15 22:07:32 UTC 2018
Modified Files: src/external/bsd/mdocml/include: config.h Log Message: Add recallocarray prototype. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/external/bsd/mdocml/include/config.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/bsd/mdocml/include/config.h diff -u src/external/bsd/mdocml/include/config.h:1.6 src/external/bsd/mdocml/include/config.h:1.7 --- src/external/bsd/mdocml/include/config.h:1.6 Tue Aug 14 08:53:06 2018 +++ src/external/bsd/mdocml/include/config.h Wed Aug 15 22:07:32 2018 @@ -29,6 +29,7 @@ #define HAVE_PLEDGE 0 #define HAVE_PROGNAME 1 #define HAVE_REALLOCARRAY 0 +#define HAVE_RECALLOCARRAY 0 #define HAVE_REWB_BSD 1 #define HAVE_REWB_SYSV 0 #define HAVE_SANDBOX_INIT 0 @@ -54,4 +55,5 @@ extern int getsubopt(char **, char * const *, char **); extern void *reallocarray(void *, size_t, size_t); +extern void *recallocarray(void *, size_t, size_t, size_t); extern long long strtonum(const char *, long long, long long, const char **);