diff options
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 2274c02..a5f39de 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 24bad14..02a17e4 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 cb56e48..6b2bf38 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 e001f39..70e0ec5 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 54cd771..2dcd497 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 41c04b4..96f2997 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> |