Module Name: src Committed By: rillig Date: Fri Feb 19 14:44:29 UTC 2021
Modified Files: src/usr.bin/xlint/lint1: ckgetopt.c Log Message: lint: fix build in tools mode To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/usr.bin/xlint/lint1/ckgetopt.c 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/xlint/lint1/ckgetopt.c diff -u src/usr.bin/xlint/lint1/ckgetopt.c:1.1 src/usr.bin/xlint/lint1/ckgetopt.c:1.2 --- src/usr.bin/xlint/lint1/ckgetopt.c:1.1 Fri Feb 19 12:28:56 2021 +++ src/usr.bin/xlint/lint1/ckgetopt.c Fri Feb 19 14:44:29 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: ckgetopt.c,v 1.1 2021/02/19 12:28:56 rillig Exp $ */ +/* $NetBSD: ckgetopt.c,v 1.2 2021/02/19 14:44:29 rillig Exp $ */ /*- * Copyright (c) 2021 The NetBSD Foundation, Inc. @@ -29,9 +29,13 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#if HAVE_NBTOOL_CONFIG_H +#include "nbtool_config.h" +#endif + #include <sys/cdefs.h> #if defined(__RCSID) && !defined(lint) -__RCSID("$NetBSD: ckgetopt.c,v 1.1 2021/02/19 12:28:56 rillig Exp $"); +__RCSID("$NetBSD: ckgetopt.c,v 1.2 2021/02/19 14:44:29 rillig Exp $"); #endif #include <stdbool.h>