diff options
author | 2006-07-08 21:47:12 +0000 | |
---|---|---|
committer | 2006-07-08 21:47:12 +0000 | |
commit | 3e070fac36aa8ea631ceedd0e261343d5d61afe0 (patch) | |
tree | 4eeca60f3d3a739918ff45af04f91eab63f6477b /usr.bin/ssh/ssh.c | |
parent | Rename VTON() to VTOU() (diff) | |
download | wireguard-openbsd-3e070fac36aa8ea631ceedd0e261343d5d61afe0.tar.xz wireguard-openbsd-3e070fac36aa8ea631ceedd0e261343d5d61afe0.zip |
move #include <sys/socket.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 929fad8fb7c..5b50b2b42a3 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.279 2006/07/06 16:03:53 stevesk Exp $ */ +/* $OpenBSD: ssh.c,v 1.280 2006/07/08 21:47:12 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -45,6 +45,7 @@ #include <sys/resource.h> #include <sys/ioctl.h> #include <sys/types.h> +#include <sys/socket.h> #include <sys/un.h> #include <sys/stat.h> |