summaryrefslogtreecommitdiff
path: root/src/print.c
diff options
context:
space:
mode:
authorIan Darwin <ian@darwinsys.com>1987-11-06 21:29:50 +0000
committerIan Darwin <ian@darwinsys.com>1987-11-06 21:29:50 +0000
commit36ba83a699428bedbe30054b6175ee02dae5cb54 (patch)
tree6a847489ca376b612949c48ced204bd3aa927e56 /src/print.c
parentfec800cbd1cca40ad92da98c743dda5b2b01537d (diff)
downloadfile-git-36ba83a699428bedbe30054b6175ee02dae5cb54.tar.gz
Put ARGSUSED in front of error() and warning().
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index fe068f0d..b3cbed53 100644
--- a/src/print.c
+++ b/src/print.c
@@ -31,7 +31,7 @@
#ifndef lint
static char *moduleid =
- "@(#)$Header: /p/file/cvsroot/file/src/print.c,v 1.8 1987/11/06 17:26:01 ian Exp $";
+ "@(#)$Header: /p/file/cvsroot/file/src/print.c,v 1.9 1987/11/06 21:29:50 ian Exp $";
#endif /* lint */
#define MAXSTR 500
@@ -61,6 +61,8 @@ struct magic *m;
/*
* error - print best error message possible and exit
*/
+/*ARGSUSED1*/
+/*VARARGS*/
void
error(s1, s2)
char *s1, *s2;
@@ -69,6 +71,7 @@ char *s1, *s2;
exit(1);
}
+/*ARGSUSED1*/
/*VARARGS*/
warning(f, a)
char *f, *a;