diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1996-08-12 18:49:54 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1996-08-12 18:49:54 +0000 |
| commit | 79deb124106dbbfe1e08e8f8bea325f1ebc1fb20 (patch) | |
| tree | 3f2ed0e11588c3b2e1116f5966c0d362c28edb67 /lib/libc/gen/fnmatch.c | |
| parent | 883a3266d1879a3c6161c27eb85dd1996b9857e9 (diff) | |
Notes
Diffstat (limited to 'lib/libc/gen/fnmatch.c')
| -rw-r--r-- | lib/libc/gen/fnmatch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/fnmatch.c b/lib/libc/gen/fnmatch.c index 3005184e3364..47bd40523234 100644 --- a/lib/libc/gen/fnmatch.c +++ b/lib/libc/gen/fnmatch.c @@ -44,8 +44,8 @@ static char sccsid[] = "@(#)fnmatch.c 8.2 (Berkeley) 4/16/94"; */ #include <fnmatch.h> +#include <locale.h> #include <string.h> -#include "collate.h" #define EOS '\0' @@ -163,8 +163,8 @@ rangematch(pattern, test, flags) c2 = *pattern++; if (c2 == EOS) return (NULL); - if ( __collcmp(c, test) <= 0 - && __collcmp(test, c2) <= 0 + if ( collate_range_cmp(c, test) <= 0 + && collate_range_cmp(test, c2) <= 0 ) ok = 1; } else if (c == test) |
