diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-25 19:41:22 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-25 19:41:22 +0000 |
commit | c24a610e7adc577dd888154169a98616c455452e (patch) | |
tree | 7f7482c0f3b83e91ccacd97d5164c6a13634f7b1 /libc/sysdeps/linux/x86_64 | |
parent | a01c09263d316cc96d574795150c0155c06d3236 (diff) |
Use #define __NR_vfork __NR_fork consistently
Diffstat (limited to 'libc/sysdeps/linux/x86_64')
-rw-r--r-- | libc/sysdeps/linux/x86_64/vfork.S | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libc/sysdeps/linux/x86_64/vfork.S b/libc/sysdeps/linux/x86_64/vfork.S index a065916d1..41acfeec0 100644 --- a/libc/sysdeps/linux/x86_64/vfork.S +++ b/libc/sysdeps/linux/x86_64/vfork.S @@ -16,7 +16,6 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include <features.h> #include <sys/syscall.h> /* Clone the calling process, but without copying the whole address space. @@ -26,10 +25,8 @@ #ifndef __NR_vfork /* No vfork so use fork instead */ -strong_alias(fork,__libc_fork) -hidden_strong_alias(__libc_fork,__vfork) - -#else +# define __NR_vfork __NR_fork +#endif .text .global __vfork @@ -58,6 +55,5 @@ __vfork: .size __vfork,.-__vfork -#endif /* __NR_vfork */ weak_alias(__vfork,vfork) libc_hidden_def(vfork) |