diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-03-07 09:46:22 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-03-07 09:46:22 +0000 |
commit | 499e2c9e41da676ad2280de9b03c3ed4871093c9 (patch) | |
tree | 1764331f2f7ddbb15d49a3175a0f1afb5bf91348 /libc/sysdeps/linux | |
parent | 237cb9a3926db9334004c62e0474ca0672fbed50 (diff) |
Fix PLTJMP() token pasting build error, patch from
Carmelo Amoroso <carmelo73@gmail.com>.
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/sh/clone.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/sh/clone.S b/libc/sysdeps/linux/sh/clone.S index f9141eb0c..386b4ceb1 100644 --- a/libc/sysdeps/linux/sh/clone.S +++ b/libc/sysdeps/linux/sh/clone.S @@ -27,7 +27,7 @@ #ifdef __HAVE_SHARED__ -#define PLTJMP(_x) _x##@PLT +#define PLTJMP(_x) _x@PLT #else #define PLTJMP(_x) _x #endif |