From 546fafa0a1d5adf099af6795f9eaf6a625e9fe33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sun, 26 Aug 2018 12:01:40 +0200 Subject: [PATCH] pty.h: fix typo. --- headers/compatibility/bsd/pty.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/compatibility/bsd/pty.h b/headers/compatibility/bsd/pty.h index 2ef64ff593..3ccf7f87bf 100644 --- a/headers/compatibility/bsd/pty.h +++ b/headers/compatibility/bsd/pty.h @@ -17,7 +17,7 @@ __BEGIN_DECLS extern int openpty(int* master, int* slave, char* name, struct termios* termAttrs, struct winsize* windowSize); -extern int login_pty(int fd); +extern int login_tty(int fd); extern pid_t forkpty(int* master, char* name, struct termios* termAttrs, struct winsize* windowSize);