]> sourceware.org Git - glibc.git/commitdiff
(re_match_context_t): Add dfa member.
authorAndreas Jaeger <aj@suse.de>
Sat, 3 Jan 2004 13:07:29 +0000 (13:07 +0000)
committerAndreas Jaeger <aj@suse.de>
Sat, 3 Jan 2004 13:07:29 +0000 (13:07 +0000)
posix/regex_internal.h

index 811391492591adbbf1b4b362eb787e5d57ed23f6..8f11f89ebbc71470d0642f8487b40f1bbf0eb0a6 100644 (file)
@@ -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.  */
This page took 0.043272 seconds and 5 git commands to generate.