diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-01-09 05:54:25 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-01-09 05:54:25 +0000 |
commit | 8b19fd5b44373213b806a5b30705e6882560cdfc (patch) | |
tree | 48e876caff71a68e70eeab4fac343d1e8cc9fb79 /libc/string | |
parent | 2d6c9cc3659360206cd1c8dabfcacb8e3ec93566 (diff) |
add workaround for gcc-3.4.6 with mips
Diffstat (limited to 'libc/string')
-rw-r--r-- | libc/string/mips/sysdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/mips/sysdep.h b/libc/string/mips/sysdep.h index 96f088c94..5dad8342e 100644 --- a/libc/string/mips/sysdep.h +++ b/libc/string/mips/sysdep.h @@ -29,7 +29,7 @@ .globl name; \ .align 2; \ .ent name,0; \ - name##: + name/* use a comment rather than ## to workaround bug in gcc-3.4.x */: #undef END #define END(function) \ |