diff options
author | 2006-07-11 20:07:25 +0000 | |
---|---|---|
committer | 2006-07-11 20:07:25 +0000 | |
commit | ea82e68e1968fc98bb3f8a021adffd459741a62c (patch) | |
tree | 1504737d23d474589fd111f74d216148a095f4b4 /usr.bin/ssh/monitor_fdpass.c | |
parent | Ensure virtual and profiling interval timers are reset in child process (diff) | |
download | wireguard-openbsd-ea82e68e1968fc98bb3f8a021adffd459741a62c.tar.xz wireguard-openbsd-ea82e68e1968fc98bb3f8a021adffd459741a62c.zip |
move #include <errno.h> out of includes.h; ok markus@
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 a7c63a277e7..ccfbac3b71f 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.9 2006/07/08 21:47:12 stevesk Exp $ */ +/* $OpenBSD: monitor_fdpass.c,v 1.10 2006/07/11 20:07:25 stevesk Exp $ */ /* * Copyright 2001 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -30,6 +30,8 @@ #include <sys/socket.h> #include <sys/uio.h> +#include <errno.h> + #include "log.h" #include "monitor_fdpass.h" |