summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2017-10-07 19:38:09 +0000
committerchristos <christos@NetBSD.org>2017-10-07 19:38:09 +0000
commit949e9c6e20eb75aecd1b6c7fce0220052007ff51 (patch)
treebfe6dc48f0a8dbb0209b68e811fcd3912a13dd78 /include
parent50e60fb7f593c219396e3b10c42b40eab7c914c6 (diff)
add recallocarray (used by openssh-7.6)
Diffstat (limited to 'include')
-rw-r--r--include/stdlib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 77e9d2fbc31..d1a3ceccecd 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $NetBSD: stdlib.h,v 1.117 2016/07/01 22:42:01 christos Exp $ */
+/* $NetBSD: stdlib.h,v 1.118 2017/10/07 19:38:09 christos Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -126,6 +126,7 @@ unsigned long
#ifdef _OPENBSD_SOURCE
long long strtonum(const char *, long long, long long, const char **);
void *reallocarray(void *, size_t, size_t);
+void *recallocarray(void *, size_t, size_t, size_t);
#endif
int system(const char *);