diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-08 21:47:13 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-08 21:47:13 +0000 |
commit | 751e64a6f437a770bfa4c7c19a978f5aa956cec1 (patch) | |
tree | 9f597dc77753b537c4645caef63253530dee71d6 /usr.bin/ssh/nchan.c | |
parent | 3df254212e0fda4fda8f3e7b5cf2b3050a267990 (diff) |
move #include <sys/socket.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/nchan.c')
-rw-r--r-- | usr.bin/ssh/nchan.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/nchan.c b/usr.bin/ssh/nchan.c index 13afe11ba41..7e936412769 100644 --- a/usr.bin/ssh/nchan.c +++ b/usr.bin/ssh/nchan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nchan.c,v 1.53 2006/03/25 13:17:02 djm Exp $ */ +/* $OpenBSD: nchan.c,v 1.54 2006/07/08 21:47:12 stevesk Exp $ */ /* * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved. * @@ -25,6 +25,9 @@ #include "includes.h" +#include <sys/types.h> +#include <sys/socket.h> + #include "ssh1.h" #include "ssh2.h" #include "buffer.h" |