summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-09-23 02:54:15 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-09-23 02:54:15 +0000
commitf8f842e4d8ec82e737e77ea159cd8409c6602cc1 (patch)
tree73c5542f64b1ba166c5352291f2fa9e5b175bc56 /op.c
parent6cef1e77274f883a8b06f0546efeff6e6b8660d8 (diff)
downloadperl-f8f842e4d8ec82e737e77ea159cd8409c6602cc1.tar.gz
silence redefined warning for XS(INIT) {}
p4raw-id: //depot/perl@1801
Diffstat (limited to 'op.c')
-rw-r--r--op.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/op.c b/op.c
index ca89229a0d..5b06f6f156 100644
--- a/op.c
+++ b/op.c
@@ -4019,6 +4019,7 @@ newXS(char *name, void (*subaddr) (CV * _CPERLproto), char *filename)
if (!PL_initav)
PL_initav = newAV();
av_push(PL_initav, (SV *)cv);
+ GvCV(gv) = 0;
}
}
else