From: Andreas Jaeger Date: Sat, 3 Jan 2004 13:07:29 +0000 (+0000) Subject: (re_match_context_t): Add dfa member. X-Git-Tag: upstream/2.30~18423 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a2fd078ab11e11d8481faa6ea631939f35e7c492;p=external%2Fglibc.git (re_match_context_t): Add dfa member. --- diff --git a/posix/regex_internal.h b/posix/regex_internal.h index 8113914..8f11f89 100644 --- a/posix/regex_internal.h +++ b/posix/regex_internal.h @@ -556,6 +556,11 @@ typedef struct { /* The string object corresponding to the input string. */ re_string_t input; +#if defined _LIBC || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) + re_dfa_t *const dfa; +#else + re_dfa_t *dfa; +#endif /* EFLAGS of the argument of regexec. */ int eflags; /* Where the matching ends. */