From: Ulrich Drepper Date: Mon, 1 Jun 1998 13:47:36 +0000 (+0000) Subject: Use ((__unused__)) instead of ((unused)). X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53c0e60ba7d8ec2edbb5265763beaffb38963acf;p=thirdparty%2Fglibc.git Use ((__unused__)) instead of ((unused)). --- diff --git a/sysdeps/i386/fpu/__math.h b/sysdeps/i386/fpu/__math.h index 1bb926603f8..80dd9e508d8 100644 --- a/sysdeps/i386/fpu/__math.h +++ b/sysdeps/i386/fpu/__math.h @@ -124,7 +124,7 @@ __MATH_INLINE double tan (double __x) { register double __value; - register double __value2 __attribute__ ((unused)); + register double __value2 __attribute__ ((__unused__)); __asm __volatile__ ("fptan" : "=t" (__value2), "=u" (__value) : "0" (__x));