From aa2b22abf342dd000d243512c620d5b5022381cf Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sat, 19 Oct 2013 21:39:31 +0300 Subject: [PATCH] Restore prototypes for the 'openpty' and 'forkpty' on BSDI (broken in issue #1772673). --- Include/pyport.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Include/pyport.h b/Include/pyport.h index 17dad4165ae..ca20b226016 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -673,10 +673,8 @@ extern char * _getpty(int *, int, mode_t, int); /* BSDI does not supply a prototype for the 'openpty' and 'forkpty' functions, even though they are included in libutil. */ #include -extern int openpty(int *, int *, char *, - const struct termios *, const struct winsize *); -extern pid_t forkpty(int *, char *, - const struct termios *, const struct winsize *); +extern int openpty(int *, int *, char *, struct termios *, struct winsize *); +extern pid_t forkpty(int *, char *, struct termios *, struct winsize *); #endif /* !defined(HAVE_PTY_H) && !defined(HAVE_LIBUTIL_H) */ #endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) */