Module Name: src Committed By: christos Date: Sun Jan 24 00:02:38 UTC 2021
Modified Files: src/usr.bin/xlint/lint1: lex.c Log Message: fix the build To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/usr.bin/xlint/lint1/lex.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/lex.c diff -u src/usr.bin/xlint/lint1/lex.c:1.3 src/usr.bin/xlint/lint1/lex.c:1.4 --- src/usr.bin/xlint/lint1/lex.c:1.3 Sat Jan 23 18:11:40 2021 +++ src/usr.bin/xlint/lint1/lex.c Sat Jan 23 19:02:38 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: lex.c,v 1.3 2021/01/23 23:11:40 rillig Exp $ */ +/* $NetBSD: lex.c,v 1.4 2021/01/24 00:02:38 christos Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. @@ -32,9 +32,13 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE 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: lex.c,v 1.3 2021/01/23 23:11:40 rillig Exp $"); +__RCSID("$NetBSD: lex.c,v 1.4 2021/01/24 00:02:38 christos Exp $"); #endif #include <ctype.h>