summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-07-06 19:23:06 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-07-06 19:23:06 +0000
commite788e7d35b1f8979a002a1e994535be7aae30018 (patch)
tree441eb4c139c118d109a46c23ef6b62ad744408ac /perl.c
parent9bc648147f297cac824aecca53c6e0232b54c002 (diff)
downloadperl-e788e7d35b1f8979a002a1e994535be7aae30018.tar.gz
rename s/\bSI_/PERLSI_/ to avoid collisions with sysinfo headers
p4raw-id: //depot/perl@1339
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl.c b/perl.c
index 7202c87b81..dd48844cca 100644
--- a/perl.c
+++ b/perl.c
@@ -1443,7 +1443,7 @@ perl_require_pv(char *pv)
{
SV* sv;
dSP;
- PUSHSTACKi(SI_REQUIRE);
+ PUSHSTACKi(PERLSI_REQUIRE);
PUTBACK;
sv = sv_newmortal();
sv_setpv(sv, "require '");
@@ -2356,7 +2356,7 @@ init_stacks(ARGSproto)
/* start with 128-item stack and 8K cxstack */
curstackinfo = new_stackinfo(REASONABLE(128),
REASONABLE(8192/sizeof(PERL_CONTEXT) - 1));
- curstackinfo->si_type = SI_MAIN;
+ curstackinfo->si_type = PERLSI_MAIN;
curstack = curstackinfo->si_stack;
mainstack = curstack; /* remember in case we switch stacks */