diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-09-23 02:54:15 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-09-23 02:54:15 +0000 |
commit | f8f842e4d8ec82e737e77ea159cd8409c6602cc1 (patch) | |
tree | 73c5542f64b1ba166c5352291f2fa9e5b175bc56 /op.c | |
parent | 6cef1e77274f883a8b06f0546efeff6e6b8660d8 (diff) | |
download | perl-f8f842e4d8ec82e737e77ea159cd8409c6602cc1.tar.gz |
silence redefined warning for XS(INIT) {}
p4raw-id: //depot/perl@1801
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |