1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-26 15:08:49 +00:00

Add reallocarray prototype.

This commit is contained in:
Nicholas Marriott 2015-11-18 14:09:17 +00:00
parent 8fa822b521
commit 9bba26f8c5

View File

@ -264,6 +264,11 @@ void cfmakeraw(struct termios *);
int openat(int, const char *, int, ...);
#endif
#ifndef HAVE_REALLOCARRAY
/* reallocarray.c */
void *reallocarray(void *, size_t, size_t size);
#endif
#ifdef HAVE_GETOPT
#include <getopt.h>
#else