summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/m68k/ptrace.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-20 17:26:51 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-20 17:26:51 +0000
commit039fefad93deee41292caff324f78ff1e74b437d (patch)
treebb18329e674c10c3ba4c027f1ba0028c1974c40f /libc/sysdeps/linux/m68k/ptrace.c
parentb593d7dc2b12b84c3d4eabfe7c5bd1ed47d6d4b0 (diff)
Nobody should be using the SYS_ syscall names. Use the __NR_<foo>
names instead. -Erik
Diffstat (limited to 'libc/sysdeps/linux/m68k/ptrace.c')
-rw-r--r--libc/sysdeps/linux/m68k/ptrace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/m68k/ptrace.c b/libc/sysdeps/linux/m68k/ptrace.c
index a82adc765..423be05e2 100644
--- a/libc/sysdeps/linux/m68k/ptrace.c
+++ b/libc/sysdeps/linux/m68k/ptrace.c
@@ -18,7 +18,7 @@ ptrace(int request, int pid, int addr, int data)
"trap #0\n\t"
"movel %/d0,%0"
:"=g" (res)
- :"i" (SYS_ptrace), "g" (request), "g" (pid),
+ :"i" (__NR_ptrace), "g" (request), "g" (pid),
"g" (addr), "g" (data) : "%d0", "%d1", "%d2", "%d3", "%d4");
if (res >= 0) {