summaryrefslogtreecommitdiff
path: root/libc/posix/fnmatch_loop.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/posix/fnmatch_loop.c')
-rw-r--r--libc/posix/fnmatch_loop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/posix/fnmatch_loop.c b/libc/posix/fnmatch_loop.c
index 66033cb4d..3fda83b36 100644
--- a/libc/posix/fnmatch_loop.c
+++ b/libc/posix/fnmatch_loop.c
@@ -48,8 +48,8 @@ FCT (pattern, string, string_end, no_leading_period, flags, ends, alloca_used)
struct STRUCT *ends;
size_t alloca_used;
{
- register const CHAR *p = pattern, *n = string;
- register UCHAR c;
+ const CHAR *p = pattern, *n = string;
+ UCHAR c;
#ifdef _LIBC
# if WIDE_CHAR_VERSION
const char *collseq = (const char *)
@@ -243,7 +243,7 @@ FCT (pattern, string, string_end, no_leading_period, flags, ends, alloca_used)
/* Nonzero if the sense of the character class is inverted. */
const CHAR *p_init = p;
const CHAR *n_init = n;
- register int not;
+ int not;
CHAR cold;
UCHAR fn;