summaryrefslogtreecommitdiff
path: root/src/unistd/tcsetpgrp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/tcsetpgrp.c')
-rw-r--r--src/unistd/tcsetpgrp.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/unistd/tcsetpgrp.c b/src/unistd/tcsetpgrp.c
deleted file mode 100644
index dab8b52e..00000000
--- a/src/unistd/tcsetpgrp.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#if 0
-
-#include <sys/types.h>
-#include <unistd.h>
-#include <termios/_termios.h>
-
-int tcsetpgrp(int fildes, pid_t pgid_id)
-{
- return ioctl(fildes, TIOCSPGRP, &pgid_id);
-}
-
-/*
-POSIX(1)
-*/
-
-
-#endif