diff options
Diffstat (limited to 'sys/kern/tty_pty.c')
-rw-r--r-- | sys/kern/tty_pty.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/kern/tty_pty.c b/sys/kern/tty_pty.c index 6326fda..ee0b653 100644 --- a/sys/kern/tty_pty.c +++ b/sys/kern/tty_pty.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tty_pty.c 8.4 (Berkeley) 2/20/95 - * $Id: tty_pty.c,v 1.41 1997/02/22 09:39:25 peter Exp $ + * $Id: tty_pty.c,v 1.42 1997/03/23 03:36:28 bde Exp $ */ /* @@ -42,7 +42,9 @@ #include <sys/param.h> #include <sys/systm.h> -#include <sys/ioctl.h> +#if defined(COMPAT_43) || defined(COMPAT_SUNOS) +#include <sys/ioctl_compat.h> +#endif #include <sys/proc.h> #include <sys/tty.h> #include <sys/conf.h> |