Module Name: src
Committed By: christos
Date: Thu Aug 30 12:06:06 UTC 2018
Modified Files:
src/lib/libc/stdlib: getsubopt.c
Log Message:
Allow being compiled as a tool.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/lib/libc/stdlib/getsubopt.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/stdlib/getsubopt.c
diff -u src/lib/libc/stdlib/getsubopt.c:1.9 src/lib/libc/stdlib/getsubopt.c:1.10
--- src/lib/libc/stdlib/getsubopt.c:1.9 Mon Jun 25 18:32:45 2012
+++ src/lib/libc/stdlib/getsubopt.c Thu Aug 30 08:06:06 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: getsubopt.c,v 1.9 2012/06/25 22:32:45 abs Exp $ */
+/* $NetBSD: getsubopt.c,v 1.10 2018/08/30 12:06:06 christos Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -29,12 +29,16 @@
* SUCH DAMAGE.
*/
+#if HAVE_NBTOOL_CONFIG_H
+#include "nbtool_config.h"
+#endif
+
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
static char sccsid[] = "@(#)getsubopt.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: getsubopt.c,v 1.9 2012/06/25 22:32:45 abs Exp $");
+__RCSID("$NetBSD: getsubopt.c,v 1.10 2018/08/30 12:06:06 christos Exp $");
#endif
#endif /* LIBC_SCCS and not lint */