diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-22 21:53:29 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-22 21:53:29 +0000 |
| commit | 333fc21e3cd79bca0c94d7722c5a56cb5ad078d1 (patch) | |
| tree | a7704420ac18af12d14349c9bc6bdaf03497c1d5 /lib/libc/regex | |
| parent | f2ae7368eac70a923d9eb24d3afb54678cb94dcb (diff) | |
Notes
Diffstat (limited to 'lib/libc/regex')
| -rw-r--r-- | lib/libc/regex/engine.c | 5 | ||||
| -rw-r--r-- | lib/libc/regex/grot/debug.c | 5 | ||||
| -rw-r--r-- | lib/libc/regex/grot/main.c | 5 | ||||
| -rw-r--r-- | lib/libc/regex/grot/split.c | 5 | ||||
| -rw-r--r-- | lib/libc/regex/regcomp.c | 4 | ||||
| -rw-r--r-- | lib/libc/regex/regfree.c | 4 |
6 files changed, 16 insertions, 12 deletions
diff --git a/lib/libc/regex/engine.c b/lib/libc/regex/engine.c index 2274c02461ab..a5f39ded4c5f 100644 --- a/lib/libc/regex/engine.c +++ b/lib/libc/regex/engine.c @@ -35,10 +35,11 @@ * SUCH DAMAGE. * * @(#)engine.c 8.5 (Berkeley) 3/20/94 - * - * $FreeBSD$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + /* * The matching engine and friends. This file is #included by regexec.c * after suitable #defines of a variety of macros used herein, so that diff --git a/lib/libc/regex/grot/debug.c b/lib/libc/regex/grot/debug.c index 24bad149f684..02a17e4dc0b7 100644 --- a/lib/libc/regex/grot/debug.c +++ b/lib/libc/regex/grot/debug.c @@ -1,5 +1,6 @@ -/* $FreeBSD$ - */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <stdio.h> #include <string.h> #include <ctype.h> diff --git a/lib/libc/regex/grot/main.c b/lib/libc/regex/grot/main.c index cb56e48433c9..6b2bf386eed4 100644 --- a/lib/libc/regex/grot/main.c +++ b/lib/libc/regex/grot/main.c @@ -1,5 +1,6 @@ -/* $FreeBSD$ - */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <stdio.h> #include <string.h> #include <sys/types.h> diff --git a/lib/libc/regex/grot/split.c b/lib/libc/regex/grot/split.c index e001f39ed5ec..70e0ec5fca90 100644 --- a/lib/libc/regex/grot/split.c +++ b/lib/libc/regex/grot/split.c @@ -1,5 +1,6 @@ -/* $FreeBSD$ - */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <stdio.h> #include <string.h> diff --git a/lib/libc/regex/regcomp.c b/lib/libc/regex/regcomp.c index 54cd7715b42a..2dcd497818c6 100644 --- a/lib/libc/regex/regcomp.c +++ b/lib/libc/regex/regcomp.c @@ -35,13 +35,13 @@ * SUCH DAMAGE. * * @(#)regcomp.c 8.5 (Berkeley) 3/20/94 - * - * $FreeBSD$ */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)regcomp.c 8.5 (Berkeley) 3/20/94"; #endif /* LIBC_SCCS and not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/types.h> #include <stdio.h> diff --git a/lib/libc/regex/regfree.c b/lib/libc/regex/regfree.c index 41c04b414484..96f29976a8c3 100644 --- a/lib/libc/regex/regfree.c +++ b/lib/libc/regex/regfree.c @@ -35,13 +35,13 @@ * SUCH DAMAGE. * * @(#)regfree.c 8.3 (Berkeley) 3/20/94 - * - * $FreeBSD$ */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)regfree.c 8.3 (Berkeley) 3/20/94"; #endif /* LIBC_SCCS and not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/types.h> #include <stdio.h> |
