about summary refs log tree commit diff
path: root/sysdeps/powerpc
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-01-26 20:49:22 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-01-26 20:49:22 +0000
commit7071ad79db0886c0f17946feea71439400c706a9 (patch)
treed792b5885c9c4e7caa46456d22bb819598881a7d /sysdeps/powerpc
parent08cf777f9e7f6d826658a99c7d77a359f73a45bf (diff)
downloadglibc-7071ad79db0886c0f17946feea71439400c706a9.tar.gz
glibc-7071ad79db0886c0f17946feea71439400c706a9.tar.xz
glibc-7071ad79db0886c0f17946feea71439400c706a9.zip
Remove __STDC__ conditionals from installed headers.
Diffstat (limited to 'sysdeps/powerpc')
-rw-r--r--sysdeps/powerpc/bits/mathdef.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/sysdeps/powerpc/bits/mathdef.h b/sysdeps/powerpc/bits/mathdef.h
index 7723f0caaf..3a9b1b0459 100644
--- a/sysdeps/powerpc/bits/mathdef.h
+++ b/sysdeps/powerpc/bits/mathdef.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997,1998,1999,2000,2003,2004,2006,2010
+/* Copyright (C) 1997,1998,1999,2000,2003,2004,2006,2010,2012
 	Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
@@ -32,23 +32,13 @@
 # define _MATH_H_MATHDEF	1
 
 # ifdef __GNUC__
-#  if __STDC__ == 1
 
-/* In GNU or ANSI mode, gcc leaves `float' expressions as-is.  */
+/* gcc leaves `float' expressions as-is.  */
 typedef float float_t;		/* `float' expressions are evaluated as
 				   `float'.  */
 typedef double double_t;	/* `double' expressions are evaluated as
 				   `double'.  */
 
-#  else
-
-/* For `gcc -traditional', `float' expressions are evaluated as `double'. */
-typedef double float_t;		/* `float' expressions are evaluated as
-				   `double'.  */
-typedef double double_t;	/* `double' expressions are evaluated as
-				   `double'.  */
-
-#  endif
 # else
 
 /* Wild guess at types for float_t and double_t. */