mirror of
https://sourceware.org/git/glibc.git
synced 2025-09-02 16:01:20 +03:00
Respect the user's namespace in installed header files.
Fixup for commit c7b275d6b3
.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2013-02-20 Thomas Schwinge <thomas@codesourcery.com>
|
||||
|
||||
* sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
|
||||
__attribute__ ((unused)) to __attribute__ ((__unused__)).
|
||||
|
||||
2013-02-20 Petr Machata <pmachata@redhat.com>
|
||||
|
||||
* elf/elf.h (R_ARM_TARGET1): New macro.
|
||||
|
@@ -1,5 +1,8 @@
|
||||
2013-02-20 Thomas Schwinge <thomas@codesourcery.com>
|
||||
|
||||
* sysdeps/mips/bits/nan.h [!__GNUC__] (__nan_union): Change
|
||||
__attribute__ ((unused)) to __attribute__ ((__unused__)).
|
||||
|
||||
* sysdeps/unix/sysv/linux/mips/mips32/nptl/libc.abilist: Sort
|
||||
properly.
|
||||
|
||||
|
@@ -50,7 +50,7 @@
|
||||
# endif
|
||||
|
||||
static union { unsigned char __c[4]; float __d; } __nan_union
|
||||
__attribute__ ((unused)) = { __nan_bytes };
|
||||
__attribute__ ((__unused__)) = { __nan_bytes };
|
||||
# define NAN (__nan_union.__d)
|
||||
|
||||
#endif /* GCC. */
|
||||
|
@@ -46,7 +46,7 @@
|
||||
# endif
|
||||
|
||||
static union { unsigned char __c[4]; float __d; } __nan_union
|
||||
__attribute__ ((unused)) = { __nan_bytes };
|
||||
__attribute__ ((__unused__)) = { __nan_bytes };
|
||||
# define NAN (__nan_union.__d)
|
||||
|
||||
#endif /* GCC. */
|
||||
|
Reference in New Issue
Block a user