From 62a5c6b02c4a0353eb024840113a991c357b4c43 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 26 Jul 2018 10:52:44 +0200 Subject: [PATCH] Add attributes to allocator functions Signed-off-by: Sebastian Huber --- newlib/libc/include/stdlib.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/newlib/libc/include/stdlib.h b/newlib/libc/include/stdlib.h index a805736e7..cb74d7752 100644 --- a/newlib/libc/include/stdlib.h +++ b/newlib/libc/include/stdlib.h @@ -87,7 +87,8 @@ void * bsearch (const void *__key, size_t __nmemb, size_t __size, __compar_fn_t _compar); -void * calloc (size_t __nmemb, size_t __size) _NOTHROW; +void *calloc(size_t, size_t) __malloc_like __result_use_check + __alloc_size2(1, 2) _NOTHROW; div_t div (int __numer, int __denom); void exit (int __status) _ATTRIBUTE ((__noreturn__)); void free (void *) _NOTHROW; @@ -101,7 +102,7 @@ int getsubopt (char **, char * const *, char **); #endif long labs (long); ldiv_t ldiv (long __numer, long __denom); -void * malloc (size_t __size) _NOTHROW; +void *malloc(size_t) __malloc_like __result_use_check __alloc_size(1) _NOTHROW; int mblen (const char *, size_t); int _mblen_r (struct _reent *, const char *, size_t, _mbstate_t *); int mbtowc (wchar_t *__restrict, const char *__restrict, size_t); @@ -138,10 +139,10 @@ int _mkstemps_r (struct _reent *, char *, int); char * _mktemp_r (struct _reent *, char *) _ATTRIBUTE ((__deprecated__("the use of `mktemp' is dangerous; use `mkstemp' instead"))); void qsort (void *__base, size_t __nmemb, size_t __size, __compar_fn_t _compar); int rand (void); -void * realloc (void *__r, size_t __size) _NOTHROW; +void *realloc(void *, size_t) __result_use_check __alloc_size(2) _NOTHROW; #if __BSD_VISIBLE void *reallocarray(void *, size_t, size_t) __result_use_check __alloc_size2(2, 3); -void * reallocf (void *__r, size_t __size); +void *reallocf(void *, size_t) __result_use_check __alloc_size(2); #endif #if __BSD_VISIBLE || __XSI_VISIBLE >= 4 char * realpath (const char *__restrict path, char *__restrict resolved_path);