public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
From: Sebastian Huber <sh@sourceware.org>
To: newlib-cvs@sourceware.org
Subject: [newlib-cygwin] Fix posix_memalign() attributes
Date: Tue, 23 Oct 2018 09:09:00 -0000	[thread overview]
Message-ID: <20181023090947.11452.qmail@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=08eab6396f678cf5e5968acaed0bae9fd129983b

commit 08eab6396f678cf5e5968acaed0bae9fd129983b
Author: Sebastian Huber <sebastian.huber@embedded-brains.de>
Date:   Mon Oct 22 11:23:15 2018 +0200

    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>

Diff:
---
 newlib/libc/include/stdlib.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/newlib/libc/include/stdlib.h b/newlib/libc/include/stdlib.h
index 1972be7..9773d36 100644
--- a/newlib/libc/include/stdlib.h
+++ b/newlib/libc/include/stdlib.h
@@ -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**);


                 reply	other threads:[~2018-10-23  9:09 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20181023090947.11452.qmail@sourceware.org \
    --to=sh@sourceware.org \
    --cc=newlib-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).