diff options
author | 2001-01-21 19:05:40 +0000 | |
---|---|---|
committer | 2001-01-21 19:05:40 +0000 | |
commit | 94dd3409f9fcf5debd9fa3029b571b40836be45f (patch) | |
tree | 1080bdcf48d87d7f7e6d8eb1e570f76b453298fc /usr.bin/ssh/cli.c | |
parent | UVM and PMAP_NEW are required. (diff) | |
download | wireguard-openbsd-94dd3409f9fcf5debd9fa3029b571b40836be45f.tar.xz wireguard-openbsd-94dd3409f9fcf5debd9fa3029b571b40836be45f.zip |
split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.
rename util.[ch] -> misc.[ch]
Diffstat (limited to 'usr.bin/ssh/cli.c')
-rw-r--r-- | usr.bin/ssh/cli.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/cli.c b/usr.bin/ssh/cli.c index fa18e7b54b6..943bc104b2c 100644 --- a/usr.bin/ssh/cli.c +++ b/usr.bin/ssh/cli.c @@ -1,8 +1,9 @@ #include "includes.h" -RCSID("$OpenBSD: cli.c,v 1.5 2001/01/08 08:50:29 markus Exp $"); +RCSID("$OpenBSD: cli.c,v 1.6 2001/01/21 19:05:47 markus Exp $"); #include "xmalloc.h" -#include "ssh.h" +#include "log.h" + #include <vis.h> static int cli_input = -1; |