diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-11-15 11:59:55 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-11-15 11:59:55 +0000 |
commit | 9a400142cffe890b8de4ba6115b21260136d69eb (patch) | |
tree | a3ab6d7e2a896813540c9260e7c07d26133bccae | |
parent | 9713ce1e96e3ec24afc8cdb9b31e8709285c9503 (diff) |
Include sys/queue.h explicitly instead of assuming some other header
will pull it in. At the moment it gets pulled in by sys/select.h
(which ssh has no business including) via event.h. OK markus@
-rw-r--r-- | usr.bin/ssh/includes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/includes.h b/usr.bin/ssh/includes.h index b088cfe603a..93d9d851ea5 100644 --- a/usr.bin/ssh/includes.h +++ b/usr.bin/ssh/includes.h @@ -1,4 +1,4 @@ -/* $OpenBSD: includes.h,v 1.19 2005/05/19 02:42:26 djm Exp $ */ +/* $OpenBSD: includes.h,v 1.20 2005/11/15 11:59:54 millert Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -21,7 +21,7 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg } #include <sys/types.h> #include <sys/socket.h> -#include <sys/select.h> +#include <sys/queue.h> #include <sys/param.h> #include <sys/ioctl.h> #include <sys/endian.h> |