aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/i386/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/i386/asm-syntax.h
parent7071ad79db0886c0f17946feea71439400c706a9 (diff)
downloadglibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.zip
glibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.tar.gz
glibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.tar.bz2
Remove __STDC__ conditionals from non-installed headers.
Diffstat (limited to 'sysdeps/i386/asm-syntax.h')
-rw-r--r--sysdeps/i386/asm-syntax.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/sysdeps/i386/asm-syntax.h b/sysdeps/i386/asm-syntax.h
index 19510e0..4b9fd20 100644
--- a/sysdeps/i386/asm-syntax.h
+++ b/sysdeps/i386/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