diff options
author | Rob Landley <rob@landley.net> | 2007-03-11 23:06:39 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-03-11 23:06:39 +0000 |
commit | 4bb5454cbdfe9f3e0c5d6ea3239de3ee1995bb2e (patch) | |
tree | 2e0919a37988e397a25680d2fe2df2a1fa4fdd25 /libc/sysdeps/linux/ia64 | |
parent | 8e3683e96af9e86e612cf60fffa7723a556c2f05 (diff) |
Patch from Al Stone to fix ia64:
The attached patch works around some compilation failures on
ia64 caused by the use of the C preprocessor ## operator, and
allows the ia64 default configuration to build again -- or, at
least get as far as an x86 build does (the current source tree
has some problems compiling because of conflicting type
declarations for __kernel_dev_t).
Diffstat (limited to 'libc/sysdeps/linux/ia64')
-rw-r--r-- | libc/sysdeps/linux/ia64/sysdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/ia64/sysdep.h b/libc/sysdeps/linux/ia64/sysdep.h index 03e74360d..d10020ac1 100644 --- a/libc/sysdeps/linux/ia64/sysdep.h +++ b/libc/sysdeps/linux/ia64/sysdep.h @@ -34,7 +34,7 @@ #define ASM_UNW_PRLG_GRSAVE(ninputs) (32+(ninputs)) #ifdef __STDC__ -#define C_LABEL(name) name##: +#define C_LABEL(name) name : #else #define C_LABEL(name) name/**/: #endif |