diff options
author | jkh <jkh@FreeBSD.org> | 1999-08-09 06:50:07 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1999-08-09 06:50:07 +0000 |
commit | d643736cfd7f6070788ca29f626b8820852aed6a (patch) | |
tree | 7c35742f03d232102b0f4d1c9c9b1749a5c0120d | |
parent | def1f76c65091b00414870fdd9ebbe15dd473fac (diff) | |
download | FreeBSD-src-d643736cfd7f6070788ca29f626b8820852aed6a.zip FreeBSD-src-d643736cfd7f6070788ca29f626b8820852aed6a.tar.gz |
This uses an SLIST_ENTRY and breaks the build without sys/queue.h. Commit
this until bde and friends finish arguing over what to do instead. :)
-rw-r--r-- | sys/sys/tty.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/tty.h b/sys/sys/tty.h index 8da94c0..63a49e9 100644 --- a/sys/sys/tty.h +++ b/sys/sys/tty.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)tty.h 8.6 (Berkeley) 1/21/94 - * $Id: tty.h,v 1.45 1999/08/08 19:47:26 phk Exp $ + * $Id: tty.h,v 1.46 1999/08/08 20:24:48 phk Exp $ */ #ifndef _SYS_TTY_H_ @@ -44,6 +44,7 @@ #include <sys/termios.h> #include <sys/select.h> /* For struct selinfo. */ +#include <sys/queue.h> /* * Clists are character lists, which is a variable length linked list |