summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2015-02-05 16:05:46 +0000
committerchristos <christos@NetBSD.org>2015-02-05 16:05:46 +0000
commitf9ac67164ffd8939da4fc87ae2caa8b61a3c8417 (patch)
tree99eb93dedd9a12072f9e40f0e06b73983d716c29 /include
parentb7ef2b4e49992f503deeb8e8e1880621ed0b14a1 (diff)
add reallocarray
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 c1c24d21cf2..1148947392d 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $NetBSD: stdlib.h,v 1.112 2015/01/18 17:56:09 christos Exp $ */
+/* $NetBSD: stdlib.h,v 1.113 2015/02/05 16:05:46 christos Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -364,6 +364,7 @@ unsigned long long int
strtoull_l(const char * __restrict, char ** __restrict, int, locale_t);
# if defined(_NETBSD_SOURCE)
+void *reallocarray(void *, size_t, size_t);
quad_t strtoq_l(const char * __restrict, char ** __restrict, int, locale_t);
u_quad_t strtouq_l(const char * __restrict, char ** __restrict, int, locale_t);