headers: avoid bareword attributes

Always use the __-decorated form of an attribute name in public
headers, as the bareword form is in the user's namespace, and we
don't want compilation to break just because the user defines the
bareword to mean something else.

Signed-off-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
Eric Blake
2017-08-16 20:39:18 -05:00
parent cfa64a86d1
commit 7b3d8b9485
4 changed files with 5 additions and 5 deletions

View File

@ -41,7 +41,7 @@ extern "C" {
#else
#include "../tlsoffsets.h"
#endif
__attribute__((gnu_inline))
__attribute__((__gnu_inline__))
extern inline struct _reent *__getreent (void)
{
register char *ret;