mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
Fix posix_memalign() attributes
The malloc, alloc_size and alloc_aligned attributes must be only used in case the function returns the pointer to the allocated memory. See also: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87683 Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
This commit is contained in:
parent
5835688440
commit
08eab6396f
@ -282,8 +282,8 @@ int _unsetenv_r (struct _reent *, const char *__string);
|
||||
#endif /* !__CYGWIN__ */
|
||||
|
||||
#if __POSIX_VISIBLE >= 200112
|
||||
int posix_memalign (void **, size_t, size_t) __malloc_like __nonnull((1))
|
||||
__alloc_align(2) __alloc_size(3) __result_use_check;
|
||||
int posix_memalign (void **, size_t, size_t) __nonnull((1))
|
||||
__result_use_check;
|
||||
#endif
|
||||
|
||||
char * _dtoa_r (struct _reent *, double, int, int, int *, int*, char**);
|
||||
|
Loading…
x
Reference in New Issue
Block a user