diff options
| author | christos <christos@NetBSD.org> | 2021-02-26 19:24:47 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2021-02-26 19:24:47 +0000 |
| commit | b23833c67d5d06c77ba5b52bc8cb545667ee2ebd (patch) | |
| tree | b81b7203b6bdc139462ab4abc3b6344a841bb68e /lib/libc | |
| parent | d506ab08d330221c62a5ae6a8c104c18fe7a2e76 (diff) | |
Arrange for tools build
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/regex/regcomp.c | 8 | ||||
| -rw-r--r-- | lib/libc/regex/regerror.c | 8 | ||||
| -rw-r--r-- | lib/libc/regex/regexec.c | 8 | ||||
| -rw-r--r-- | lib/libc/regex/regfree.c | 8 |
4 files changed, 24 insertions, 8 deletions
diff --git a/lib/libc/regex/regcomp.c b/lib/libc/regex/regcomp.c index a7606987ad3..eebf973e347 100644 --- a/lib/libc/regex/regcomp.c +++ b/lib/libc/regex/regcomp.c @@ -1,4 +1,4 @@ -/* $NetBSD: regcomp.c,v 1.44 2021/02/25 21:59:27 christos Exp $ */ +/* $NetBSD: regcomp.c,v 1.45 2021/02/26 19:24:47 christos Exp $ */ /*- * SPDX-License-Identifier: BSD-3-Clause @@ -42,12 +42,16 @@ * @(#)regcomp.c 8.5 (Berkeley) 3/20/94 */ +#if HAVE_NBTOOL_CONFIG_H +#include "nbtool_config.h" +#endif + #include <sys/cdefs.h> #if 0 static char sccsid[] = "@(#)regcomp.c 8.5 (Berkeley) 3/20/94"; __FBSDID("$FreeBSD: head/lib/libc/regex/regcomp.c 368359 2020-12-05 03:18:48Z kevans $"); #endif -__RCSID("$NetBSD: regcomp.c,v 1.44 2021/02/25 21:59:27 christos Exp $"); +__RCSID("$NetBSD: regcomp.c,v 1.45 2021/02/26 19:24:47 christos Exp $"); #define _OPENBSD_SOURCE diff --git a/lib/libc/regex/regerror.c b/lib/libc/regex/regerror.c index c788a9c49e3..262144220f3 100644 --- a/lib/libc/regex/regerror.c +++ b/lib/libc/regex/regerror.c @@ -1,4 +1,4 @@ -/* $NetBSD: regerror.c,v 1.24 2021/02/23 22:14:59 christos Exp $ */ +/* $NetBSD: regerror.c,v 1.25 2021/02/26 19:24:47 christos Exp $ */ /*- * SPDX-License-Identifier: BSD-3-Clause @@ -37,12 +37,16 @@ * @(#)regerror.c 8.4 (Berkeley) 3/20/94 */ +#if HAVE_NBTOOL_CONFIG_H +#include "nbtool_config.h" +#endif + #include <sys/cdefs.h> #if 0 static char sccsid[] = "@(#)regerror.c 8.4 (Berkeley) 3/20/94"; __FBSDID("$FreeBSD: head/lib/libc/regex/regerror.c 326025 2017-11-20 19:49:47Z pfg $"); #endif -__RCSID("$NetBSD: regerror.c,v 1.24 2021/02/23 22:14:59 christos Exp $"); +__RCSID("$NetBSD: regerror.c,v 1.25 2021/02/26 19:24:47 christos Exp $"); #include "namespace.h" #include <sys/types.h> diff --git a/lib/libc/regex/regexec.c b/lib/libc/regex/regexec.c index a20bc96cbc4..213a90b3bb8 100644 --- a/lib/libc/regex/regexec.c +++ b/lib/libc/regex/regexec.c @@ -1,4 +1,4 @@ -/* $NetBSD: regexec.c,v 1.25 2021/02/25 21:28:40 christos Exp $ */ +/* $NetBSD: regexec.c,v 1.26 2021/02/26 19:24:47 christos Exp $ */ /*- * SPDX-License-Identifier: BSD-3-Clause @@ -37,12 +37,16 @@ * @(#)regexec.c 8.3 (Berkeley) 3/20/94 */ +#if HAVE_NBTOOL_CONFIG_H +#include "nbtool_config.h" +#endif + #include <sys/cdefs.h> #if 0 static char sccsid[] = "@(#)regexec.c 8.3 (Berkeley) 3/20/94"; __FBSDID("$FreeBSD: head/lib/libc/regex/regexec.c 326025 2017-11-20 19:49:47Z pfg $"); #endif -__RCSID("$NetBSD: regexec.c,v 1.25 2021/02/25 21:28:40 christos Exp $"); +__RCSID("$NetBSD: regexec.c,v 1.26 2021/02/26 19:24:47 christos Exp $"); /* * the outer shell of regexec() diff --git a/lib/libc/regex/regfree.c b/lib/libc/regex/regfree.c index e88822b4421..7e388b15966 100644 --- a/lib/libc/regex/regfree.c +++ b/lib/libc/regex/regfree.c @@ -1,4 +1,4 @@ -/* $NetBSD: regfree.c,v 1.18 2021/02/25 21:28:40 christos Exp $ */ +/* $NetBSD: regfree.c,v 1.19 2021/02/26 19:24:47 christos Exp $ */ /*- * SPDX-License-Identifier: BSD-3-Clause @@ -37,12 +37,16 @@ * @(#)regfree.c 8.3 (Berkeley) 3/20/94 */ +#if HAVE_NBTOOL_CONFIG_H +#include "nbtool_config.h" +#endif + #include <sys/cdefs.h> #if 0 static char sccsid[] = "@(#)regfree.c 8.3 (Berkeley) 3/20/94"; __FBSDID("$FreeBSD: head/lib/libc/regex/regfree.c 326025 2017-11-20 19:49:47Z pfg $"); #endif -__RCSID("$NetBSD: regfree.c,v 1.18 2021/02/25 21:28:40 christos Exp $"); +__RCSID("$NetBSD: regfree.c,v 1.19 2021/02/26 19:24:47 christos Exp $"); #include "namespace.h" #include <sys/types.h> |
