(original) (raw)
changeset: 86488:8bd69bd6e129 user: Serhiy Storchaka storchaka@gmail.com date: Sat Oct 19 21:39:31 2013 +0300 files: Include/pyport.h description: Restore prototypes for the 'openpty' and 'forkpty' on BSDI (broken in issue #1772673). diff -r 53c4b7132a19 -r 8bd69bd6e129 Include/pyport.h --- a/Include/pyport.h Sat Oct 19 21:15:55 2013 +0300 +++ b/Include/pyport.h Sat Oct 19 21:39:31 2013 +0300 @@ -673,10 +673,8 @@ /* 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) *//storchaka@gmail.com