From 1c0a4c3a8e679dbc8238d03b30e2fb76be9aec35 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Sat, 26 Dec 2009 06:20:56 +0000 Subject: Make pty.h match recent glibc. * include/pty.h (openpty, forkpty): Mark last two arguments const, to match glibc 2.8. * libc/bsdlib.cc (openpty, forkpty): Likewise. --- winsup/cygwin/include/pty.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'winsup/cygwin/include') diff --git a/winsup/cygwin/include/pty.h b/winsup/cygwin/include/pty.h index e4b4da03f..7b92a2b4d 100644 --- a/winsup/cygwin/include/pty.h +++ b/winsup/cygwin/include/pty.h @@ -8,8 +8,10 @@ extern "C" { #endif -int _EXFUN(openpty ,(int *, int *, char *, struct termios *, struct winsize *)); -int _EXFUN(forkpty ,(int *, char *, struct termios *, struct winsize *)); +int _EXFUN(openpty ,(int *, int *, char *, const struct termios *, + const struct winsize *)); +int _EXFUN(forkpty ,(int *, char *, const struct termios *, + const struct winsize *)); #ifdef __cplusplus } -- cgit v1.2.3