Module Name:    src
Committed By:   joerg
Date:           Sat Apr  6 15:27:05 UTC 2013

Modified Files:
        src/external/bsd/flex/dist: flexdef.h

Log Message:
Don't use __printflike during tool build.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/flex/dist/flexdef.h

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

Modified files:

Index: src/external/bsd/flex/dist/flexdef.h
diff -u src/external/bsd/flex/dist/flexdef.h:1.3 src/external/bsd/flex/dist/flexdef.h:1.4
--- src/external/bsd/flex/dist/flexdef.h:1.3	Sat Apr  6 14:27:52 2013
+++ src/external/bsd/flex/dist/flexdef.h	Sat Apr  6 15:27:05 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: flexdef.h,v 1.3 2013/04/06 14:27:52 christos Exp $	*/
+/*	$NetBSD: flexdef.h,v 1.4 2013/04/06 15:27:05 joerg Exp $	*/
 
 
 /* flexdef - definitions file for flex */
@@ -1224,8 +1224,9 @@ extern void sf_pop(void);
 /*
  * From "misc.c"
  */
-void lerrsf_fatal (const char *msg, ...) __printflike(1, 2);
-
-
+#ifdef __NetBSD__
+__printflike(1, 2)
+#endif
+void lerrsf_fatal (const char *msg, ...);
 
 #endif /* not defined FLEXDEF_H */

Reply via email to