diff options
Diffstat (limited to 'lib/libc/regex/regex2.h')
-rw-r--r-- | lib/libc/regex/regex2.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/libc/regex/regex2.h b/lib/libc/regex/regex2.h index 1df7067..3016915 100644 --- a/lib/libc/regex/regex2.h +++ b/lib/libc/regex/regex2.h @@ -127,9 +127,7 @@ typedef struct { } cset; static int -CHIN1(cs, ch) -cset *cs; -wint_t ch; +CHIN1(cset *cs, wint_t ch) { int i; @@ -150,9 +148,7 @@ wint_t ch; } static __inline int -CHIN(cs, ch) -cset *cs; -wint_t ch; +CHIN(cset *cs, wint_t ch) { assert(ch >= 0); |