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/powerpc/vfork.S | |
parent | a01c09263d316cc96d574795150c0155c06d3236 (diff) |
Use #define __NR_vfork __NR_fork consistently
Diffstat (limited to 'libc/sysdeps/linux/powerpc/vfork.S')
-rw-r--r-- | libc/sysdeps/linux/powerpc/vfork.S | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/libc/sysdeps/linux/powerpc/vfork.S b/libc/sysdeps/linux/powerpc/vfork.S index a55b6fbc9..a79cf9e39 100644 --- a/libc/sysdeps/linux/powerpc/vfork.S +++ b/libc/sysdeps/linux/powerpc/vfork.S @@ -3,16 +3,13 @@ * * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ -#include <features.h> + #include <sys/syscall.h> #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 @@ -27,6 +24,6 @@ __vfork: b __syscall_error .size __vfork,.-__vfork -#endif + weak_alias(__vfork,vfork) libc_hidden_def(vfork) |