summaryrefslogtreecommitdiff
path: root/usr.bin/xlint/lint1/err.c
diff options
context:
space:
mode:
authorChad Loder <cloder@cvs.openbsd.org>2005-12-17 20:19:47 +0000
committerChad Loder <cloder@cvs.openbsd.org>2005-12-17 20:19:47 +0000
commit5e2c01731eeeb93a50ed8f3f133a869801b94bbf (patch)
tree7791dc20f476f51a21765b26fe84502669a9e6d7 /usr.bin/xlint/lint1/err.c
parent538c5953ad727adc8581431f557811c23044733e (diff)
Check for functions declared with ARGSUSED but having no arguments.
Diffstat (limited to 'usr.bin/xlint/lint1/err.c')
-rw-r--r--usr.bin/xlint/lint1/err.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/xlint/lint1/err.c b/usr.bin/xlint/lint1/err.c
index a46486bceae..cc3c72b31bd 100644
--- a/usr.bin/xlint/lint1/err.c
+++ b/usr.bin/xlint/lint1/err.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: err.c,v 1.16 2005/12/15 05:49:48 cloder Exp $ */
+/* $OpenBSD: err.c,v 1.17 2005/12/17 20:19:46 cloder Exp $ */
/* $NetBSD: err.c,v 1.8 1995/10/02 17:37:00 jpo Exp $ */
/*
@@ -33,7 +33,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: err.c,v 1.16 2005/12/15 05:49:48 cloder Exp $";
+static char rcsid[] = "$OpenBSD: err.c,v 1.17 2005/12/17 20:19:46 cloder Exp $";
#endif
/* number of errors found */
@@ -367,6 +367,7 @@ const char *msgs[] = {
"case ranges are illegal in ANSI C", /* 311 */
"suspicious operator for sizeof: %s", /* 312 */
"conversion of %s return value from '%s' to '%s'", /* 313 */
+ "function %s declared with %s, but takes no arguments", /* 314 */
};
/*