diff options
Diffstat (limited to 'login/forkpty.c')
-rw-r--r-- | login/forkpty.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/login/forkpty.c b/login/forkpty.c index ea3e209faa..881b62eb92 100644 --- a/login/forkpty.c +++ b/login/forkpty.c @@ -23,11 +23,8 @@ #include <pty.h> int -forkpty (amaster, name, termp, winp) - int *amaster; - char *name; - const struct termios *termp; - const struct winsize *winp; +forkpty (int *amaster, char *name, const struct termios *termp, + const struct winsize *winp) { int master, slave, pid; |