diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-06-21 20:44:28 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-06-21 20:44:28 +0000 |
commit | defb9e49f98f300b34dceaf3bc959aea45f35045 (patch) | |
tree | a9c0c1ea4ad48a6915a8c8943bf698910945bd32 /include | |
parent | d88bc9731d81c72bc5b57c0b36ac744fc9620ab4 (diff) |
allow arches to easily override asm-line-sep, move cris over to new style, and have hppa use it now
Diffstat (limited to 'include')
-rw-r--r-- | include/libc-symbols.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libc-symbols.h b/include/libc-symbols.h index ec3696b5e..c5d574d90 100644 --- a/include/libc-symbols.h +++ b/include/libc-symbols.h @@ -131,7 +131,9 @@ # endif #endif -#ifndef ASM_LINE_SEP +#ifdef __UCLIBC_ASM_LINE_SEP__ +# define ASM_LINE_SEP __UCLIBC_ASM_LINE_SEP__ +#else # define ASM_LINE_SEP ; #endif |