diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2007-01-03 04:09:16 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2007-01-03 04:09:16 +0000 |
commit | 9b3f77e0780cb828bd791c1c2e5b9ebbab36881a (patch) | |
tree | b7aae3c3fe7e6f93953d995249280cafefc9f790 /usr.bin | |
parent | 96f0d621f12f45ded6499774d02b57fc67b38875 (diff) |
ARGSUSED for lint
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/sftp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/sftp.c b/usr.bin/ssh/sftp.c index 9f2336a384a..8c9a23ce35d 100644 --- a/usr.bin/ssh/sftp.c +++ b/usr.bin/ssh/sftp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp.c,v 1.95 2007/01/03 03:01:40 stevesk Exp $ */ +/* $OpenBSD: sftp.c,v 1.96 2007/01/03 04:09:15 stevesk Exp $ */ /* * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> * @@ -154,6 +154,7 @@ static const struct CMD cmds[] = { int interactive_loop(int fd_in, int fd_out, char *file1, char *file2); +/* ARGSUSED */ static void killchild(int signo) { @@ -165,6 +166,7 @@ killchild(int signo) _exit(1); } +/* ARGSUSED */ static void cmd_interrupt(int signo) { |