Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/byacc/dist Add missing minus.



details:   https://anonhg.NetBSD.org/src/rev/1c9429f8ab97
branches:  trunk
changeset: 789927:1c9429f8ab97
user:      joerg <joerg%NetBSD.org@localhost>
date:      Fri Sep 13 18:53:29 2013 +0000

description:
Add missing minus.

diffstat:

 external/bsd/byacc/dist/skeleton.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r fe9cdd6b29a2 -r 1c9429f8ab97 external/bsd/byacc/dist/skeleton.c
--- a/external/bsd/byacc/dist/skeleton.c        Fri Sep 13 17:38:17 2013 +0000
+++ b/external/bsd/byacc/dist/skeleton.c        Fri Sep 13 18:53:29 2013 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: skeleton.c,v 1.12 2013/09/13 17:38:17 joerg Exp $      */
+/*     $NetBSD: skeleton.c,v 1.13 2013/09/13 18:53:29 joerg Exp $      */
 
 /* Id: skeleton.c,v 1.32 2013/03/04 23:19:39 tom Exp  */
 
 #include "defs.h"
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: skeleton.c,v 1.12 2013/09/13 17:38:17 joerg Exp $");
+__RCSID("$NetBSD: skeleton.c,v 1.13 2013/09/13 18:53:29 joerg Exp $");
 
 /*  The definition of yysccsid in the banner should be replaced with   */
 /*  a #pragma ident directive if the target C compiler supports                */
@@ -22,7 +22,7 @@
 const char *const banner[] =
 {
     "#ifndef lint",
-    "#if __GNUC__ - 0 >= 4 || (__GNUC__ 0 == 3 && __GNUC_MINOR__ >= 1)",
+    "#if __GNUC__ - 0 >= 4 || (__GNUC__ - 0 == 3 && __GNUC_MINOR__ >= 1)",
     "__attribute__((__used__))",
     "#endif",
     "static const char yysccsid[] = \"@(#)yaccpar      1.9 (Berkeley) 02/21/93\";",



Home | Main Index | Thread Index | Old Index