diff options
| author | Jessica Clarke <jrtc27@FreeBSD.org> | 2021-12-23 16:38:10 +0000 |
|---|---|---|
| committer | Jessica Clarke <jrtc27@FreeBSD.org> | 2021-12-23 16:38:10 +0000 |
| commit | 0aa8b18bc9bb1d948d4152c50819d69940d68045 (patch) | |
| tree | 3211ccf2ec14c6a496d506bcd59a66797fbc82a2 /lib | |
| parent | e51b46cefbfaab08f6e5cb402ebecbf1c0cba3c8 (diff) | |
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libc/regex/regexec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/regex/regexec.c b/lib/libc/regex/regexec.c index bf27d05f86c6..d7aa46f45b2b 100644 --- a/lib/libc/regex/regexec.c +++ b/lib/libc/regex/regexec.c @@ -97,8 +97,8 @@ xmbrtowc_dummy(wint_t *wi, } /* macros for manipulating states, small version */ -#define states long -#define states1 states /* for later use in regexec() decision */ +#define states1 long /* for later use in regexec() decision */ +#define states states1 #define CLEAR(v) ((v) = 0) #define SET0(v, n) ((v) &= ~((unsigned long)1 << (n))) #define SET1(v, n) ((v) |= (unsigned long)1 << (n)) |
