summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-07-26 10:52:44 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-07-30 10:47:57 +0200
commit62a5c6b02c4a0353eb024840113a991c357b4c43 (patch)
tree0c7caeb6c7722bc9004eba5a9109a185f31b6f33
parenta31a7bad6a26bd64ef017e95d6ee0e994b6ca87b (diff)
downloadcygnal-62a5c6b02c4a0353eb024840113a991c357b4c43.tar.gz
cygnal-62a5c6b02c4a0353eb024840113a991c357b4c43.tar.bz2
cygnal-62a5c6b02c4a0353eb024840113a991c357b4c43.zip
Add attributes to allocator functions
Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
-rw-r--r--newlib/libc/include/stdlib.h9
1 files 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);