diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-05-14 10:39:05 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-05-14 10:39:05 +0000 |
commit | b3322420c583e6f77750054aa27e6aab7f88a8c2 (patch) | |
tree | 785706ab68b6e33d3aa7bd3cd2bca5766671049d /libc/sysdeps/linux/frv | |
parent | 2baa0cccce48cc0c2fffcb0a6191dc383aceec72 (diff) |
Kill off the now obsolete __libc_vfork symbol
Diffstat (limited to 'libc/sysdeps/linux/frv')
-rw-r--r-- | libc/sysdeps/linux/frv/vfork.S | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libc/sysdeps/linux/frv/vfork.S b/libc/sysdeps/linux/frv/vfork.S index 2f97b2a47..0d5d6ea8d 100644 --- a/libc/sysdeps/linux/frv/vfork.S +++ b/libc/sysdeps/linux/frv/vfork.S @@ -22,10 +22,10 @@ #include <bits/errno.h> .text - .globl __libc_vfork - .type __libc_vfork,@function + .globl vfork + .type vfork,@function /* int vfork(void) */ -__libc_vfork: +vfork: setlos #__NR_vfork, gr7 tira gr0, #0 @@ -39,6 +39,3 @@ __libc_vfork: .size vfork,.-vfork -.weak vfork -.global vfork -.set vfork, __libc_vfork |