1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

Remove __STDC__ conditionals from non-installed headers.

This commit is contained in:
Joseph Myers
2012-01-26 23:31:37 +00:00
parent 7071ad79db
commit 965a54a4ee
10 changed files with 27 additions and 63 deletions

View File

@@ -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