summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2024-03-12 02:49:05 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2024-03-12 02:49:05 +0100
commitad1a0463067bba232ec8e19f458e1fc7d7c80b55 (patch)
tree6be19fd52a78e2049c0497d3765639228432877e /include
parentcd950aac51cb6cb537f04e0f071b7edb83487de6 (diff)
add reallocarray from musl
Diffstat (limited to 'include')
-rw-r--r--include/stdlib.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 987fe2223..8b1375184 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -985,6 +985,8 @@ extern int getpt (void);
three, but may be less than NELEM), or -1 if an error occurred. */
extern int getloadavg (double __loadavg[], int __nelem)
__THROW __nonnull ((1));
+
+extern void *reallocarray (void *__ptr, size_t __m, size_t __n);
#endif
#ifdef _LIBC