Add reallocarray prototype.

pull/210/head
Nicholas Marriott 2015-11-18 14:09:17 +00:00
parent 8fa822b521
commit 9bba26f8c5
1 changed files with 7 additions and 2 deletions

View File

@ -255,13 +255,18 @@ int unsetenv(const char *);
#ifndef HAVE_CFMAKERAW
/* cfmakeraw.c */
void cfmakeraw(struct termios *);
void cfmakeraw(struct termios *);
#endif
#ifndef HAVE_OPENAT
/* openat.c */
#define AT_FDCWD -100
int openat(int, const char *, int, ...);
int openat(int, const char *, int, ...);
#endif
#ifndef HAVE_REALLOCARRAY
/* reallocarray.c */
void *reallocarray(void *, size_t, size_t size);
#endif
#ifdef HAVE_GETOPT