summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/scp.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@cvs.openbsd.org>2006-07-17 01:31:11 +0000
committerKevin Steves <stevesk@cvs.openbsd.org>2006-07-17 01:31:11 +0000
commitd659fd7d8b8c4a47fcabe16b76f0221c7bf05757 (patch)
treef1753975c5db250478d9aaa278c4d6a1ec3115ab /usr.bin/ssh/scp.c
parent6626e2fe6d63bc4f09f17b2f0cf8c7889efce808 (diff)
move #include <unistd.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/scp.c')
-rw-r--r--usr.bin/ssh/scp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c
index f8c9cfe24a7..016d37a27ef 100644
--- a/usr.bin/ssh/scp.c
+++ b/usr.bin/ssh/scp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: scp.c,v 1.147 2006/07/11 20:07:25 stevesk Exp $ */
+/* $OpenBSD: scp.c,v 1.148 2006/07/17 01:31:09 stevesk Exp $ */
/*
* scp - secure remote copy. This is basically patched BSD rcp which
* uses ssh to do the data transfer (instead of using rcmd).
@@ -84,6 +84,7 @@
#include <pwd.h>
#include <signal.h>
#include <stdarg.h>
+#include <unistd.h>
#include "xmalloc.h"
#include "atomicio.h"