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/ssh-keyscan.c | |
parent | 3df254212e0fda4fda8f3e7b5cf2b3050a267990 (diff) |
move #include <sys/socket.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index a26689cb706..af587402499 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/ssh-keyscan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keyscan.c,v 1.64 2006/03/25 13:17:02 djm Exp $ */ +/* $OpenBSD: ssh-keyscan.c,v 1.65 2006/07/08 21:47:12 stevesk Exp $ */ /* * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. * @@ -9,6 +9,8 @@ #include "includes.h" +#include <sys/types.h> +#include <sys/socket.h> #include <sys/queue.h> #include <sys/resource.h> |