summaryrefslogtreecommitdiffstats
path: root/compat.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2015-11-18 14:09:17 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2015-11-18 14:09:17 +0000
commit9bba26f8c53e8bf90daf5330bf959b3ce1f70426 (patch)
tree7089c31b2cc70a7ff781e3815bd608045c696192 /compat.h
parent8fa822b52106ddb80a33a81ecfbe3c5dea793f31 (diff)
Add reallocarray prototype.
Diffstat (limited to 'compat.h')
-rw-r--r--compat.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/compat.h b/compat.h
index 8666a1d8..7d9b14fd 100644
--- a/compat.h
+++ b/compat.h
@@ -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