Date: Sat, 28 Nov 2009 16:30:06 +0000 (UTC) From: Ed Schouten <ed@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r199882 - head/sys/compat/svr4 Message-ID: <200911281630.nASGU6hn060892@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ed Date: Sat Nov 28 16:30:06 2009 New Revision: 199882 URL: http://svn.freebsd.org/changeset/base/199882 Log: Include <sys/tty.h> instead of <sys/termios.h>. Right now <sys/termios.h> includes <sys/ttycom.h>, which provides the TTY ioctls to the svr4 code. We need both struct termios and the ioctls, so include <sys/tty.h> for now. Modified: head/sys/compat/svr4/svr4_termios.c Modified: head/sys/compat/svr4/svr4_termios.c ============================================================================== --- head/sys/compat/svr4/svr4_termios.c Sat Nov 28 16:25:55 2009 (r199881) +++ head/sys/compat/svr4/svr4_termios.c Sat Nov 28 16:30:06 2009 (r199882) @@ -34,7 +34,7 @@ __FBSDID("$FreeBSD$"); #include <sys/systm.h> #include <sys/file.h> #include <sys/filedesc.h> -#include <sys/termios.h> +#include <sys/tty.h> #include <sys/sysproto.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200911281630.nASGU6hn060892>