diff options
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/powerpc/bits/syscalls.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/sysdeps/linux/powerpc/bits/syscalls.h b/libc/sysdeps/linux/powerpc/bits/syscalls.h index f2a1b6da4..ec9e8507f 100644 --- a/libc/sysdeps/linux/powerpc/bits/syscalls.h +++ b/libc/sysdeps/linux/powerpc/bits/syscalls.h @@ -24,12 +24,12 @@ __asm__ ( \ ".section \".text\"\n\t" \ ".align 2\n\t" \ - ".globl "###name"\n\t" \ - ".type "###name",@function\n" \ + ".globl " STRINGIFY(name) "\n\t" \ + ".type " STRINGIFY(name) ",@function\n" \ #name":\n\tli 0," STRINGIFY(__NR_##name) "\n\t" \ - "b "JUMPTARGET(__uClibc_syscall)"\n" \ - ".Lfe1"###name":\n\t" \ - ".size\t"###name ",.Lfe1"###name"-"###name"\n" \ + "b " JUMPTARGET(__uClibc_syscall) "\n" \ + ".Lfe1" STRINGIFY(name) ":\n\t" \ + ".size\t" STRINGIFY(name) ",.Lfe1" STRINGIFY(name) "-" STRINGIFY(name) "\n" \ ) #undef _syscall0 |