Module Name:    src
Committed By:   christos
Date:           Thu Jun 14 02:46:56 UTC 2018

Modified Files:
        src/bin/expr: expr.y

Log Message:
remove notreached


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/bin/expr/expr.y

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/bin/expr/expr.y
diff -u src/bin/expr/expr.y:1.42 src/bin/expr/expr.y:1.43
--- src/bin/expr/expr.y:1.42	Wed Jun 13 22:44:16 2018
+++ src/bin/expr/expr.y	Wed Jun 13 22:46:56 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: expr.y,v 1.42 2018/06/14 02:44:16 christos Exp $ */
+/* $NetBSD: expr.y,v 1.43 2018/06/14 02:46:56 christos Exp $ */
 
 /*_
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 %{
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: expr.y,v 1.42 2018/06/14 02:44:16 christos Exp $");
+__RCSID("$NetBSD: expr.y,v 1.43 2018/06/14 02:46:56 christos Exp $");
 #endif /* not lint */
 
 #include <sys/types.h>
@@ -454,5 +454,4 @@ main(int argc, const char * const *argv)
 	av = argv + 1;
 
 	return yyparse();
-	/* NOTREACHED */
 }

Reply via email to