summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-09-14 22:22:47 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-09-14 22:22:47 +0000
commit533b3d2624d4501babff177ab6a7ba5da6ba09dd (patch)
tree52ff7aabf7d7979b68e92d3bf69f29f351639c00
parent35d0c274b233b23fe8ad06fc40f798145df3b619 (diff)
ARGSUSED before signal handler with unused signo
-rw-r--r--usr.bin/dc/bcode.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/dc/bcode.c b/usr.bin/dc/bcode.c
index 2a394c66a86..d1bcc7fd19c 100644
--- a/usr.bin/dc/bcode.c
+++ b/usr.bin/dc/bcode.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bcode.c,v 1.22 2004/02/11 20:44:31 otto Exp $ */
+/* $OpenBSD: bcode.c,v 1.23 2004/09/14 22:22:46 deraadt Exp $ */
/*
* Copyright (c) 2003, Otto Moerbeek <otto@drijf.net>
@@ -17,7 +17,7 @@
*/
#ifndef lint
-static const char rcsid[] = "$OpenBSD: bcode.c,v 1.22 2004/02/11 20:44:31 otto Exp $";
+static const char rcsid[] = "$OpenBSD: bcode.c,v 1.23 2004/09/14 22:22:46 deraadt Exp $";
#endif /* not lint */
#include <ssl/ssl.h>
@@ -222,6 +222,7 @@ static const struct jump_entry jump_table_data[] = {
#define JUMP_TABLE_DATA_SIZE \
(sizeof(jump_table_data)/sizeof(jump_table_data[0]))
+/* ARGSUSED */
static void
sighandler(int ignored)
{