- (dtucker) [openbsd-compat/openbsd-compat.h] AIX (at least) needs

sys/ioctl.h for struct winsize.
This commit is contained in:
Darren Tucker 2006-03-15 22:25:54 +11:00
parent b0024914c9
commit dc6118e127
2 changed files with 5 additions and 2 deletions

View File

@ -269,6 +269,8 @@
includes removed from includes.h
- (dtucker) [configure.ac] Fix glob test conversion to AC_TRY_COMPILE
- (djm) [includes.h] Put back paths.h, it is needed in defines.h
- (dtucker) [openbsd-compat/openbsd-compat.h] AIX (at least) needs
sys/ioctl.h for struct winsize.
20060313
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@ -4170,4 +4172,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.4222 2006/03/15 10:48:54 djm Exp $
$Id: ChangeLog,v 1.4223 2006/03/15 11:25:54 dtucker Exp $

View File

@ -1,4 +1,4 @@
/* $Id: openbsd-compat.h,v 1.34 2006/03/15 02:02:31 djm Exp $ */
/* $Id: openbsd-compat.h,v 1.35 2006/03/15 11:25:55 dtucker Exp $ */
/*
* Copyright (c) 1999-2003 Damien Miller. All rights reserved.
@ -147,6 +147,7 @@ int asprintf(char **, const char *, ...);
#endif
#ifndef HAVE_OPENPTY
# include <sys/ioctl.h> /* for struct winsize */
int openpty(int *, int *, char *, struct termios *, struct winsize *);
#endif /* HAVE_OPENPTY */