diff options
Diffstat (limited to 'Userland/Libraries/LibC/pty.h')
-rw-r--r-- | Userland/Libraries/LibC/pty.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/pty.h b/Userland/Libraries/LibC/pty.h index 45681620bf..e2068f1105 100644 --- a/Userland/Libraries/LibC/pty.h +++ b/Userland/Libraries/LibC/pty.h @@ -12,7 +12,7 @@ __BEGIN_DECLS int openpty(int* amaster, int* aslave, char* name, const struct termios* termp, const struct winsize* winp); -pid_t forkpty(int* amaster, int* aslave, char* name, const struct termios* termp, const struct winsize* winp); +pid_t forkpty(int* amaster, char* name, const struct termios* termp, const struct winsize* winp); int login_tty(int fd); __END_DECLS |