Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/bin/expr remove redundant declaration of yyparse
details: https://anonhg.NetBSD.org/src/rev/23f92c79f1da
branches: trunk
changeset: 503305:23f92c79f1da
user: christos <christos%NetBSD.org@localhost>
date: Sun Feb 04 19:51:14 2001 +0000
description:
remove redundant declaration of yyparse
diffstat:
bin/expr/expr.y | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diffs (26 lines):
diff -r 06e395c3ec62 -r 23f92c79f1da bin/expr/expr.y
--- a/bin/expr/expr.y Sun Feb 04 19:50:51 2001 +0000
+++ b/bin/expr/expr.y Sun Feb 04 19:51:14 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: expr.y,v 1.23 2000/10/30 14:55:02 jdolecek Exp $ */
+/* $NetBSD: expr.y,v 1.24 2001/02/04 19:51:14 christos Exp $ */
/*_
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
%{
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: expr.y,v 1.23 2000/10/30 14:55:02 jdolecek Exp $");
+__RCSID("$NetBSD: expr.y,v 1.24 2001/02/04 19:51:14 christos Exp $");
#endif /* not lint */
#include <sys/types.h>
@@ -58,7 +58,6 @@
static int yylex(void);
static int is_zero_or_null(const char *);
static int is_integer(const char *);
-static int yyparse(void);
int main(int, const char * const *);
#define YYSTYPE const char *
Home |
Main Index |
Thread Index |
Old Index