summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-05-29 06:59:02 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-05-29 06:59:02 +0000
commit2c3f3f38058736ef42335063d21c4481c1a7971f (patch)
tree105ad6948488d3167c2060ac7428118ce777cd6f
parentffa405206783be34fe83b6f39923147b56630fa2 (diff)
ansi
-rw-r--r--lib/liby/yyerror.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/liby/yyerror.c b/lib/liby/yyerror.c
index fa1c463fae0..705a1d50677 100644
--- a/lib/liby/yyerror.c
+++ b/lib/liby/yyerror.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: yyerror.c,v 1.4 2003/06/02 20:18:42 millert Exp $ */
+/* $OpenBSD: yyerror.c,v 1.5 2004/05/29 06:59:01 deraadt Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -31,14 +31,13 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)yyerror.c 5.2 (Berkeley) 5/15/90";*/
-static char rcsid[] = "$OpenBSD: yyerror.c,v 1.4 2003/06/02 20:18:42 millert Exp $";
+static char rcsid[] = "$OpenBSD: yyerror.c,v 1.5 2004/05/29 06:59:01 deraadt Exp $";
#endif /* not lint */
#include <stdio.h>
int
-yyerror(msg)
- char *msg;
+yyerror(char *msg)
{
(void)fprintf(stderr, "%s\n", msg);
return(0);