diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-05-01 19:14:32 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-05-01 19:14:32 +0000 |
| commit | 8f0baadaa0a3e77e70a85474f2262ee28e637ccb (patch) | |
| tree | bb1e0177274e1c57207c3ea84044817223f79610 /include/stdlib.h | |
| parent | 5fa137c32642556b7d9d73a07353594685dfe9e6 (diff) | |
Notes
Diffstat (limited to 'include/stdlib.h')
| -rw-r--r-- | include/stdlib.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 84587db8e626..1c4fbb040639 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -111,9 +111,6 @@ long double strtold(const char * __restrict, char ** __restrict); unsigned long strtoul(const char * __restrict, char ** __restrict, int); -#ifdef __BSD_VISIBLE -void *reallocarray(void *, size_t, size_t); -#endif int system(const char *); int wctomb(char *, wchar_t); size_t wcstombs(char * __restrict, const wchar_t * __restrict, size_t); @@ -306,6 +303,8 @@ void qsort_r(void *, size_t, size_t, void *, int (*)(void *, const void *, const void *)); int radixsort(const unsigned char **, int, const unsigned char *, unsigned); +void *reallocarray(void *, size_t, size_t) __result_use_check __alloc_size(2) + __alloc_size(3); void *reallocf(void *, size_t) __result_use_check __alloc_size(2); int rpmatch(const char *); void setprogname(const char *); |
