diff options
author | 2001-06-23 15:12:17 +0000 | |
---|---|---|
committer | 2001-06-23 15:12:17 +0000 | |
commit | fae73ca39db8778fbd881b5971d896922ed8bf76 (patch) | |
tree | a0ef435bb5abac50a55a93941614a1aa2cad1c96 /usr.bin/ssh/cli.c | |
parent | document ll, depreciate q (diff) | |
download | wireguard-openbsd-fae73ca39db8778fbd881b5971d896922ed8bf76.tar.xz wireguard-openbsd-fae73ca39db8778fbd881b5971d896922ed8bf76.zip |
more strict prototypes. raise warning level in Makefile.inc. markus ok'ed
TODO; cleanup headers
Diffstat (limited to 'usr.bin/ssh/cli.c')
-rw-r--r-- | usr.bin/ssh/cli.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/cli.c b/usr.bin/ssh/cli.c index 7cd6bbf4b36..7b7d24da403 100644 --- a/usr.bin/ssh/cli.c +++ b/usr.bin/ssh/cli.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cli.c,v 1.13 2001/05/06 21:23:31 markus Exp $ */ +/* $OpenBSD: cli.c,v 1.14 2001/06/23 15:12:18 itojun Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -25,7 +25,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: cli.c,v 1.13 2001/05/06 21:23:31 markus Exp $"); +RCSID("$OpenBSD: cli.c,v 1.14 2001/06/23 15:12:18 itojun Exp $"); #include "xmalloc.h" #include "log.h" @@ -81,7 +81,7 @@ cli_close(void) return; } -void +static void intrcatch(int sig) { intr = 1; |