diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-10 16:37:37 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-10 16:37:37 +0000 |
commit | 8778ad3b0015df6a1388a98de3796032d45eaa49 (patch) | |
tree | f1a81e31d0b1aa8e15686804ed0e81d03db26409 /usr.bin/ssh/scp.c | |
parent | 18e3c30a70f1f1d35dfc53c49a690b7d84d5fedc (diff) |
move #include <stdarg.h> out of includes.h; ok markus@
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 faa756ee182..4810a55f131 100644 --- a/usr.bin/ssh/scp.c +++ b/usr.bin/ssh/scp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scp.c,v 1.145 2006/07/10 12:03:20 djm Exp $ */ +/* $OpenBSD: scp.c,v 1.146 2006/07/10 16:37:36 stevesk Exp $ */ /* * scp - secure remote copy. This is basically patched BSD rcp which * uses ssh to do the data transfer (instead of using rcmd). @@ -82,6 +82,7 @@ #include <fcntl.h> #include <pwd.h> #include <signal.h> +#include <stdarg.h> #include "xmalloc.h" #include "atomicio.h" |