diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-04 22:45:18 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-04 22:45:18 +0000 |
commit | 51aa15f38ed061e162eb5fdd50db6c15d839cf32 (patch) | |
tree | 782ae9db55a84cfad5325d1913ff3d509b79e8f6 /intrpvar.h | |
parent | 95d94a4f85cab4045e157acc1a0d6b2096eecea2 (diff) | |
download | perl-51aa15f38ed061e162eb5fdd50db6c15d839cf32.tar.gz |
[win32] add AS patch#25 (allow B build with -DPERL_OBJECT)
p4raw-id: //depot/win32/perl@1074
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/intrpvar.h b/intrpvar.h index 7f5b1a5430..062d016c20 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -183,10 +183,10 @@ PERLVAR(Iregseen, U32) /* from regcomp.c */ PERLVAR(Iseen_zerolen, I32) /* from regcomp.c */ PERLVAR(Iregcomp_rx, regexp *) /* from regcomp.c */ PERLVAR(Iextralen, I32) /* from regcomp.c */ -#ifdef DEBUGGING +/* #ifdef DEBUGGING -- keep the structure the same with/without DEBUGGING defined */ PERLVAR(Icolorset, int) /* from regcomp.c */ PERLVAR(Icolors[4], char *) /* from regcomp.c */ -#endif +/* #endif */ PERLVAR(Ireginput, char *) /* String-input pointer. */ PERLVAR(Iregbol, char *) /* Beginning of input, for ^ check. */ @@ -204,11 +204,11 @@ PERLVAR(Ibostr, char *) /* from regexec.c */ PERLVAR(Ireg_flags, U32) /* from regexec.c */ PERLVAR(Ireg_eval_set, I32) /* from regexec.c */ -#ifdef DEBUGGING +/* #ifdef DEBUGGING -- keep the structure the same with/without DEBUGGING defined */ PERLVAR(Iregnarrate, I32) /* from regexec.c */ PERLVAR(Iregprogram, regnode *) /* from regexec.c */ PERLVARI(Iregindent, int, 0) /* from regexec.c */ -#endif +/* #endif */ PERLVAR(Iregcc, CURCUR *) /* from regexec.c */ PERLVARI(Iin_clean_objs,bool, FALSE) /* from sv.c */ @@ -232,3 +232,5 @@ PERLVARI(piDir, IPerlDir*, NULL) PERLVARI(piSock, IPerlSock*, NULL) PERLVARI(piProc, IPerlProc*, NULL) #endif + +PERLVAR(Ispecialsv_list[4], SV *) /* from byterun.h */ |