about summary refs log tree commit diff
path: root/sysdeps/s390/asm-syntax.h
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-01-26 23:31:37 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-01-26 23:31:37 +0000
commit965a54a4eecc6cf5c53718f07290171f744c4d6c (patch)
treed1c7796f9828bc76b907afe6727ed0eb1d94ed4c /sysdeps/s390/asm-syntax.h
parent7071ad79db0886c0f17946feea71439400c706a9 (diff)
downloadglibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.tar.gz
glibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.tar.xz
glibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.zip
Remove __STDC__ conditionals from non-installed headers.
Diffstat (limited to 'sysdeps/s390/asm-syntax.h')
-rw-r--r--sysdeps/s390/asm-syntax.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/sysdeps/s390/asm-syntax.h b/sysdeps/s390/asm-syntax.h
index a1d7b5e74b..98dc6e866e 100644
--- a/sysdeps/s390/asm-syntax.h
+++ b/sysdeps/s390/asm-syntax.h
@@ -23,15 +23,7 @@
 
 #undef L
 #ifdef __ELF__
-# ifdef __STDC__
-#  define L(body) .L##body
-# else
-#  define L(body) .L/**/body
-# endif
+# define L(body) .L##body
 #else
-# ifdef __STDC__
-#  define L(body) L##body
-# else
-#  define L(body) L/**/body
-# endif
+# define L(body) L##body
 #endif