diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2013-02-19 13:06:39 +0100 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2013-02-20 16:49:58 +0100 |
commit | c7b275d6b3bceb6b400fa3044d13d1001bc605ca (patch) | |
tree | 1eaf349503f8f1fa4a402dc321456ee0e0cadb19 /sysdeps | |
parent | 72f0ffdcbeb8135d04cf2dc73f8a5f5c7783a283 (diff) | |
download | glibc-c7b275d6b3bceb6b400fa3044d13d1001bc605ca.zip glibc-c7b275d6b3bceb6b400fa3044d13d1001bc605ca.tar.gz glibc-c7b275d6b3bceb6b400fa3044d13d1001bc605ca.tar.bz2 |
bits/nan.h: Change __attribute_used__ to __attribute__ ((unused)).
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/ieee754/bits/nan.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/bits/nan.h b/sysdeps/ieee754/bits/nan.h index d3ab38b..a1e6a51 100644 --- a/sysdeps/ieee754/bits/nan.h +++ b/sysdeps/ieee754/bits/nan.h @@ -46,7 +46,7 @@ # endif static union { unsigned char __c[4]; float __d; } __nan_union - __attribute_used__ = { __nan_bytes }; + __attribute__ ((unused)) = { __nan_bytes }; # define NAN (__nan_union.__d) #endif /* GCC. */ |