Module Name:    src
Committed By:   joerg
Date:           Sun Jan  4 18:31:09 UTC 2015

Modified Files:
        src/usr.bin/m4: parser.y

Log Message:
Don't depend on yacc skeleton to include sys/cdefs.h early.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.bin/m4/parser.y

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

Modified files:

Index: src/usr.bin/m4/parser.y
diff -u src/usr.bin/m4/parser.y:1.2 src/usr.bin/m4/parser.y:1.3
--- src/usr.bin/m4/parser.y:1.2	Mon Oct 26 21:11:28 2009
+++ src/usr.bin/m4/parser.y	Sun Jan  4 18:31:09 2015
@@ -1,5 +1,5 @@
 %{
-/* $NetBSD: parser.y,v 1.2 2009/10/26 21:11:28 christos Exp $ */
+/* $NetBSD: parser.y,v 1.3 2015/01/04 18:31:09 joerg Exp $ */
 /* $OpenBSD: parser.y,v 1.6 2008/08/21 21:00:14 espie Exp $ */
 /*
  * Copyright (c) 2004 Marc Espie <[email protected]>
@@ -19,7 +19,8 @@
 #if HAVE_NBTOOL_CONFIG_H
 #include "nbtool_config.h"
 #endif
-__RCSID("$NetBSD: parser.y,v 1.2 2009/10/26 21:11:28 christos Exp $");
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: parser.y,v 1.3 2015/01/04 18:31:09 joerg Exp $");
 #include <stdint.h>
 #define YYSTYPE	int32_t
 extern int32_t end_result;

Reply via email to