summaryrefslogtreecommitdiff
path: root/libpthread/linuxthreads.old/ptfork.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-24 17:42:25 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-24 17:42:25 +0000
commit1a90c75e47052d5b2360f038a822d5cac6a2e1a0 (patch)
treed42bbcd97cedad82db769b259fd3c43ac1c14562 /libpthread/linuxthreads.old/ptfork.c
parentb0403788201afc178b376735f889c3790efc2a06 (diff)
use __typeof for all __libc_x prototypes, do not need __sigaction/__vfork
Diffstat (limited to 'libpthread/linuxthreads.old/ptfork.c')
-rw-r--r--libpthread/linuxthreads.old/ptfork.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libpthread/linuxthreads.old/ptfork.c b/libpthread/linuxthreads.old/ptfork.c
index 9d0d80cd3..b153621b2 100644
--- a/libpthread/linuxthreads.old/ptfork.c
+++ b/libpthread/linuxthreads.old/ptfork.c
@@ -103,11 +103,10 @@ pid_t attribute_hidden __fork(void)
}
strong_alias(__fork,fork)
-pid_t attribute_hidden __vfork(void)
+pid_t vfork(void)
{
return __fork();
}
-strong_alias(__vfork,vfork)
#else