diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-17 01:31:11 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-17 01:31:11 +0000 |
commit | d659fd7d8b8c4a47fcabe16b76f0221c7bf05757 (patch) | |
tree | f1753975c5db250478d9aaa278c4d6a1ec3115ab /usr.bin/ssh/msg.c | |
parent | 6626e2fe6d63bc4f09f17b2f0cf8c7889efce808 (diff) |
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" |