diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-01-26 23:31:37 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-01-26 23:31:37 +0000 |
commit | 965a54a4eecc6cf5c53718f07290171f744c4d6c (patch) | |
tree | d1c7796f9828bc76b907afe6727ed0eb1d94ed4c /sysdeps/s390/asm-syntax.h | |
parent | 7071ad79db0886c0f17946feea71439400c706a9 (diff) | |
download | glibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.tar glibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.tar.gz glibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.tar.bz2 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.h | 12 |
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 |