diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1996-10-31 04:32:27 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1996-10-31 04:32:27 +0000 |
| commit | edcfa07284471aa6ada2856c80c06a692ead0fba (patch) | |
| tree | 493c4284243fe4e0f57d2c4bdafb847d241a2b8d /sys/libkern/fnmatch.c | |
| parent | 38aa46cdf0b12752157a56700dbb129bed7aa171 (diff) | |
Notes
Diffstat (limited to 'sys/libkern/fnmatch.c')
| -rw-r--r-- | sys/libkern/fnmatch.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/libkern/fnmatch.c b/sys/libkern/fnmatch.c index 3bf9e1797ae7..f53963adf899 100644 --- a/sys/libkern/fnmatch.c +++ b/sys/libkern/fnmatch.c @@ -45,10 +45,11 @@ static char sccsid[] = "@(#)fnmatch.c 8.2 (Berkeley) 4/16/94"; #include <ctype.h> #include <fnmatch.h> -#include <locale.h> #include <string.h> #include <stdio.h> +#include "collate.h" + #define EOS '\0' static const char *rangematch __P((const char *, char, int)); @@ -186,8 +187,8 @@ rangematch(pattern, test, flags) if (flags & FNM_CASEFOLD) c2 = tolower((unsigned char)c2); - if ( collate_range_cmp(c, test) <= 0 - && collate_range_cmp(test, c2) <= 0 + if ( __collate_range_cmp(c, test) <= 0 + && __collate_range_cmp(test, c2) <= 0 ) ok = 1; } else if (c == test) |
