Mercurial > hg > xemacs-beta
changeset 508:0be8704d6062
[xemacs-hg @ 2001-05-05 10:21:20 by martinb]
Port to bsdi g++
author | martinb |
---|---|
date | Sat, 05 May 2001 10:21:25 +0000 |
parents | 167135c7a7ae |
children | 68eb53e4b7e5 |
files | src/ChangeLog src/s/bsdos4.h |
diffstat | 2 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Sat May 05 10:10:42 2001 +0000 +++ b/src/ChangeLog Sat May 05 10:21:25 2001 +0000 @@ -1,3 +1,7 @@ +2001-05-04 Martin Buchholz <martin@xemacs.org> + + * s/bsdos4.h (openpty): Add declaration, missing from system headers. + 2001-05-05 Martin Buchholz <martin@xemacs.org> * search.c (warn_about_possibly_incompatible_back_references):
--- a/src/s/bsdos4.h Sat May 05 10:10:42 2001 +0000 +++ b/src/s/bsdos4.h Sat May 05 10:21:25 2001 +0000 @@ -8,3 +8,8 @@ #define UNEXEC unexelf.o #endif /* ELF */ + +/* The declaration for openpty is missing. Where is libutil.h? */ +struct termios; +struct winsize; +int openpty (int *, int *, char *, struct termios *, struct winsize *);