diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-09 05:37:48 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-09 05:37:48 +0000 |
commit | 15e52e56ffc1b4b0632038d47561373c5ca610c4 (patch) | |
tree | 15aaf7ccef22d054555bbacbab3696f48ba8aab3 /intrpvar.h | |
parent | d06ea78cdb5afedf2e1a85ff54e3bfc5c519b3c5 (diff) | |
download | perl-15e52e56ffc1b4b0632038d47561373c5ca610c4.tar.gz |
get it building again on win32
p4raw-id: //depot/perl@1394
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/intrpvar.h b/intrpvar.h index c81a99a7a1..1ff9ac8660 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -240,9 +240,10 @@ PERLVARI(Iregindent, int, 0) /* from regexec.c */ PERLVAR(Iregcc, CURCUR *) /* from regexec.c */ -PERLVARI(Iregcompp, regcomp_t, &pregcomp) /* Pointer to RE compiler */ -PERLVARI(Iregexecp, regexec_t, ®exec_flags) /* Pointer to RE executer */ - +PERLVARI(Iregcompp, regcomp_t, FUNC_NAME_TO_PTR(pregcomp)) + /* Pointer to RE compiler */ +PERLVARI(Iregexecp, regexec_t, FUNC_NAME_TO_PTR(regexec_flags)) + /* Pointer to RE executer */ PERLVARI(Iin_clean_objs,bool, FALSE) /* from sv.c */ PERLVARI(Iin_clean_all, bool, FALSE) /* from sv.c */ |