From f8f842e4d8ec82e737e77ea159cd8409c6602cc1 Mon Sep 17 00:00:00 2001 From: Gurusamy Sarathy Date: Wed, 23 Sep 1998 02:54:15 +0000 Subject: [PATCH] silence redefined warning for XS(INIT) {} p4raw-id: //depot/perl@1801 --- op.c | 1 + 1 file changed, 1 insertion(+) diff --git a/op.c b/op.c index ca89229..5b06f6f 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 -- 2.7.4