diff options
author | 2006-02-10 01:44:26 +0000 | |
---|---|---|
committer | 2006-02-10 01:44:26 +0000 | |
commit | 85e5e18c9e6a70bb5eff87acef3d6ef6c7ccd670 (patch) | |
tree | e2d26a85af1f8d66ef00bc696a80c23213ed3373 /usr.bin/ssh/readpass.c | |
parent | move #include <sys/ioctl.h> out of includes.h; ok markus@ (diff) | |
download | wireguard-openbsd-85e5e18c9e6a70bb5eff87acef3d6ef6c7ccd670.tar.xz wireguard-openbsd-85e5e18c9e6a70bb5eff87acef3d6ef6c7ccd670.zip |
move #include <sys/wait.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/readpass.c')
-rw-r--r-- | usr.bin/ssh/readpass.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/readpass.c b/usr.bin/ssh/readpass.c index 60f22c07856..8d4c571557e 100644 --- a/usr.bin/ssh/readpass.c +++ b/usr.bin/ssh/readpass.c @@ -23,7 +23,10 @@ */ #include "includes.h" -RCSID("$OpenBSD: readpass.c,v 1.34 2006/02/08 12:15:27 stevesk Exp $"); +RCSID("$OpenBSD: readpass.c,v 1.35 2006/02/10 01:44:26 stevesk Exp $"); + +#include <sys/types.h> +#include <sys/wait.h> #include <paths.h> #include <readpassphrase.h> |