diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-03-12 02:49:05 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-03-12 02:49:05 +0100 |
commit | ad1a0463067bba232ec8e19f458e1fc7d7c80b55 (patch) | |
tree | 6be19fd52a78e2049c0497d3765639228432877e /include | |
parent | cd950aac51cb6cb537f04e0f071b7edb83487de6 (diff) |
add reallocarray from musl
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 2 |
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 |