diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-03-15 12:25:54 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-03-15 12:25:54 +0100 |
commit | dc6118e1272e91fd4faebde7b2ea85a36dd6f08d (patch) | |
tree | b4af3fdae524eb1c2e73eb9802b3707a4369ae3e /openbsd-compat/openbsd-compat.h | |
parent | - (djm) [includes.h] Put back paths.h, it is needed in defines.h (diff) | |
download | openssh-dc6118e1272e91fd4faebde7b2ea85a36dd6f08d.tar.xz openssh-dc6118e1272e91fd4faebde7b2ea85a36dd6f08d.zip |
- (dtucker) [openbsd-compat/openbsd-compat.h] AIX (at least) needs
sys/ioctl.h for struct winsize.
Diffstat (limited to 'openbsd-compat/openbsd-compat.h')
-rw-r--r-- | openbsd-compat/openbsd-compat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsd-compat/openbsd-compat.h b/openbsd-compat/openbsd-compat.h index 9022c793f..432b183e7 100644 --- a/openbsd-compat/openbsd-compat.h +++ b/openbsd-compat/openbsd-compat.h @@ -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 */ |