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/monitor_fdpass.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/monitor_fdpass.c')
-rw-r--r-- | usr.bin/ssh/monitor_fdpass.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/monitor_fdpass.c b/usr.bin/ssh/monitor_fdpass.c index a94d7ef2610..a7c63a277e7 100644 --- a/usr.bin/ssh/monitor_fdpass.c +++ b/usr.bin/ssh/monitor_fdpass.c @@ -1,4 +1,4 @@ -/* $OpenBSD: monitor_fdpass.c,v 1.8 2006/03/25 13:17:02 djm Exp $ */ +/* $OpenBSD: monitor_fdpass.c,v 1.9 2006/07/08 21:47:12 stevesk Exp $ */ /* * Copyright 2001 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -26,6 +26,8 @@ #include "includes.h" +#include <sys/types.h> +#include <sys/socket.h> #include <sys/uio.h> #include "log.h" |