diff options
Diffstat (limited to 'libc/stdlib/unix_grantpt.c')
-rw-r--r-- | libc/stdlib/unix_grantpt.c | 6 |
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, |