diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-02-01 01:32:19 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-02-01 01:32:19 +0000 |
| commit | b231cb39457c13eef87bc92db0a856bef9d3bfeb (patch) | |
| tree | 00d3cf581cd6698c5f1022d99c44cb5d6fa3bd12 /sys/libkern/fnmatch.c | |
| parent | 3bd49456b128a06241e1894fb4feca2f1be5d9eb (diff) | |
Notes
Diffstat (limited to 'sys/libkern/fnmatch.c')
| -rw-r--r-- | sys/libkern/fnmatch.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/libkern/fnmatch.c b/sys/libkern/fnmatch.c index c3312b42110ab..a07a2d06e7c97 100644 --- a/sys/libkern/fnmatch.c +++ b/sys/libkern/fnmatch.c @@ -37,6 +37,8 @@ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)fnmatch.c 8.2 (Berkeley) 4/16/94"; #endif /* LIBC_SCCS and not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * Function fnmatch() as specified in POSIX 1003.2-1992, section B.6. @@ -56,7 +58,7 @@ static char sccsid[] = "@(#)fnmatch.c 8.2 (Berkeley) 4/16/94"; #define RANGE_NOMATCH 0 #define RANGE_ERROR (-1) -static int rangematch __P((const char *, char, int, char **)); +static int rangematch(const char *, char, int, char **); int fnmatch(pattern, string, flags) |
