summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/scp.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2006-08-03 03:34:43 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2006-08-03 03:34:43 +0000
commit6a841a89e8143678d8b0bb3a7506a55e69e91cf5 (patch)
tree5f1332f81b08861f309a3b01c3ba9e835be55dbc /usr.bin/ssh/scp.c
parent4ca59a2a0eaecec3c6b29af7c2d68ac8732918db (diff)
almost entirely get rid of the culture of ".h files that include .h files"
ok djm, sort of ok stevesk makes the pain stop in one easy step
Diffstat (limited to 'usr.bin/ssh/scp.c')
-rw-r--r--usr.bin/ssh/scp.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c
index 8bb8c426869..d0751729070 100644
--- a/usr.bin/ssh/scp.c
+++ b/usr.bin/ssh/scp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: scp.c,v 1.154 2006/08/01 23:22:47 stevesk Exp $ */
+/* $OpenBSD: scp.c,v 1.155 2006/08/03 03:34:42 deraadt Exp $ */
/*
* scp - secure remote copy. This is basically patched BSD rcp which
* uses ssh to do the data transfer (instead of using rcmd).
@@ -71,13 +71,12 @@
*
*/
-#include "includes.h"
-
+#include <sys/param.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <sys/time.h>
-#include <sys/param.h>
+#include <sys/uio.h>
#include <ctype.h>
#include <dirent.h>