Module Name: src
Committed By: uwe
Date: Wed Sep 18 23:18:14 UTC 2013
Modified Files:
src/games/fortune/strfile: strfile.c
Log Message:
#include "nbtool_config.h" to pull in getprogname() declaration.
To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/games/fortune/strfile/strfile.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/games/fortune/strfile/strfile.c
diff -u src/games/fortune/strfile/strfile.c:1.35 src/games/fortune/strfile/strfile.c:1.36
--- src/games/fortune/strfile/strfile.c:1.35 Sat Oct 13 20:42:56 2012
+++ src/games/fortune/strfile/strfile.c Wed Sep 18 23:18:14 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: strfile.c,v 1.35 2012/10/13 20:42:56 dholland Exp $ */
+/* $NetBSD: strfile.c,v 1.36 2013/09/18 23:18:14 uwe Exp $ */
/*-
* Copyright (c) 1989, 1993
@@ -32,6 +32,10 @@
* SUCH DAMAGE.
*/
+#if HAVE_NBTOOL_CONFIG_H
+#include "nbtool_config.h"
+#endif
+
#ifdef __NetBSD__
#include <sys/cdefs.h>
#ifndef lint
@@ -43,7 +47,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 19
#if 0
static char sccsid[] = "@(#)strfile.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: strfile.c,v 1.35 2012/10/13 20:42:56 dholland Exp $");
+__RCSID("$NetBSD: strfile.c,v 1.36 2013/09/18 23:18:14 uwe Exp $");
#endif
#endif /* not lint */
#endif /* __NetBSD__ */