summaryrefslogtreecommitdiff
path: root/libc/stdlib/unix_grantpt.c
diff options
context:
space:
mode:
authorMark Salter <msalter@redhat.com>2012-05-04 08:18:46 -0400
committerMike Frysinger <vapier@gentoo.org>2012-05-05 15:02:27 -0400
commit036daaa8e143c0865ac92359396f38c0d7e2c1f2 (patch)
tree82a2754db999707c7eae0ce796f31cfdc90a673c /libc/stdlib/unix_grantpt.c
parent3457d04a3d79cd046ef5d1b000047805aa03ec97 (diff)
drop support for old systems lacking vfork
Only really old systems (<=linux-2.0) lack a dedicated vfork system call. The code that is in place to support them is causing issues with newer arches that also don't provide a vfork system call -- instead, they do vfork by calling clone in userspace. If anyone cares about these really old systems, they can submit a patch to make the system work with them while not breaking newer systems. Signed-off-by: Mark Salter <msalter@redhat.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libc/stdlib/unix_grantpt.c')
-rw-r--r--libc/stdlib/unix_grantpt.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libc/stdlib/unix_grantpt.c b/libc/stdlib/unix_grantpt.c
index 1be0a7ddb..527b8c928 100644
--- a/libc/stdlib/unix_grantpt.c
+++ b/libc/stdlib/unix_grantpt.c
@@ -31,12 +31,6 @@
#include "pty-private.h"
-/* uClinux-2.0 has vfork, but Linux 2.0 doesn't */
-#include <sys/syscall.h>
-#if ! defined __NR_vfork
-#define vfork fork
-#endif
-
/* Return the result of ptsname_r in the buffer pointed to by PTS,
which should be of length BUF_LEN. If it is too long to fit in
this buffer, a sufficiently long buffer is allocated using malloc,