diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 17:36:58 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 17:36:58 +0000 |
commit | 2f7571c9b6f3b108f1ec27f6c7252a3181efdbca (patch) | |
tree | 9c3314ab1f90f0ba4e61067b53abc430c9db434d /include | |
parent | 78c62942f560d0a82ea83e1b65677ad20f890671 (diff) |
Correct C_SYMBOL_PREFIX handling for asm, supports only none or _
Diffstat (limited to 'include')
-rw-r--r-- | include/libc-internal.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/libc-internal.h b/include/libc-internal.h index efab0c102..9b83d1b3f 100644 --- a/include/libc-internal.h +++ b/include/libc-internal.h @@ -47,7 +47,11 @@ #else /* __ASSEMBLER__ */ -# define C_SYMBOL_NAME(name) __C_SYMBOL_PREFIX__ ##name +#ifdef __SYMBOL_PREFIX +# define C_SYMBOL_NAME(name) _##name +#else +# define C_SYMBOL_NAME(name) name +#endif # define strong_alias(name, aliasname) \ .global C_SYMBOL_NAME (aliasname) ; \ |