diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-09 15:15:12 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-09 15:15:12 +0000 |
commit | 0810117b8375d88af0d02ded172dacc19d88c6cf (patch) | |
tree | 359c3536690cb16962f43ed17fdfc9d8e8c5bba4 /usr.bin/ssh/scp.c | |
parent | 9e854c8465a5d4078ce824c4c519af429c8f71cb (diff) |
move #include <fcntl.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/scp.c')
-rw-r--r-- | usr.bin/ssh/scp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c index e371bf55a05..60cae3f5ab4 100644 --- a/usr.bin/ssh/scp.c +++ b/usr.bin/ssh/scp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scp.c,v 1.143 2006/07/06 16:03:53 stevesk Exp $ */ +/* $OpenBSD: scp.c,v 1.144 2006/07/09 15:15:10 stevesk Exp $ */ /* * scp - secure remote copy. This is basically patched BSD rcp which * uses ssh to do the data transfer (instead of using rcmd). @@ -79,6 +79,7 @@ #include <ctype.h> #include <dirent.h> +#include <fcntl.h> #include <pwd.h> #include <signal.h> |