summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2005-12-03 18:23:48 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2005-12-03 18:23:48 +0000
commit126d5cbb7dd9eda542ec52974768d5b82d4a2b24 (patch)
tree90cd47a3a65b42e8f44f650d020b817d7dc602f5 /usr.bin
parent4d60ab38042a247bf785fd9380dd486f52ccbd28 (diff)
ARGSUSED signal handler
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/bc/scan.l5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/bc/scan.l b/usr.bin/bc/scan.l
index ca700b6031c..c5e128f38d8 100644
--- a/usr.bin/bc/scan.l
+++ b/usr.bin/bc/scan.l
@@ -1,5 +1,5 @@
%{
-/* $OpenBSD: scan.l,v 1.18 2005/04/13 06:36:03 otto Exp $ */
+/* $OpenBSD: scan.l,v 1.19 2005/12/03 18:23:47 deraadt Exp $ */
/*
* Copyright (c) 2003, Otto Moerbeek <otto@drijf.net>
@@ -18,7 +18,7 @@
*/
#ifndef lint
-static const char rcsid[] = "$OpenBSD: scan.l,v 1.18 2005/04/13 06:36:03 otto Exp $";
+static const char rcsid[] = "$OpenBSD: scan.l,v 1.19 2005/12/03 18:23:47 deraadt Exp $";
#endif /* not lint */
#include <err.h>
@@ -225,6 +225,7 @@ add_str(const char *str)
strlcat(strbuf, str, strbuf_sz);
}
+/* ARGSUSED */
void
abort_line(int sig)
{