diff options
author | 2006-07-17 01:31:09 +0000 | |
---|---|---|
committer | 2006-07-17 01:31:09 +0000 | |
commit | eb2751a22d6728146140c132c9aa405419f63e4b (patch) | |
tree | 040c6046972d8088cc81a795efd16dc8cc66b53b /usr.bin/ssh/msg.c | |
parent | Fix splassert false positives on older VAXstation with devices wired to (diff) | |
download | wireguard-openbsd-eb2751a22d6728146140c132c9aa405419f63e4b.tar.xz wireguard-openbsd-eb2751a22d6728146140c132c9aa405419f63e4b.zip |
move #include <unistd.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/msg.c')
-rw-r--r-- | usr.bin/ssh/msg.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/msg.c b/usr.bin/ssh/msg.c index 4344a131267..5c535d1af4b 100644 --- a/usr.bin/ssh/msg.c +++ b/usr.bin/ssh/msg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: msg.c,v 1.12 2006/07/11 20:07:25 stevesk Exp $ */ +/* $OpenBSD: msg.c,v 1.13 2006/07/17 01:31:09 stevesk Exp $ */ /* * Copyright (c) 2002 Markus Friedl. All rights reserved. * @@ -24,7 +24,10 @@ */ #include "includes.h" +#include <sys/types.h> + #include <errno.h> +#include <unistd.h> #include "buffer.h" #include "log.h" |