From 98b55637d580660d79fad229f9c059fcbf7985c2 Mon Sep 17 00:00:00 2001 From: Malcolm Beattie Date: Fri, 20 Feb 1998 16:39:38 +0000 Subject: [compiler] Win32 changes from Sarathy, tweaked slightly by me. p4raw-id: //depot/perlext/Compiler@561 --- byterun.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'byterun.h') diff --git a/byterun.h b/byterun.h index 0e10b63ae4..81e82049cf 100644 --- a/byterun.h +++ b/byterun.h @@ -185,8 +185,10 @@ EXT int optype_size[] #endif /* DOINIT */ ; -EXT SV * specialsv_list[4] -#ifdef DOINIT -= { Nullsv, &sv_undef, &sv_yes, &sv_no } -#endif /* DOINIT */ -; +EXT SV * specialsv_list[4]; +#define INIT_SPECIALSV_LIST STMT_START { \ +specialsv_list[0] = Nullsv; \ +specialsv_list[1] = &sv_undef; \ +specialsv_list[2] = &sv_yes; \ +specialsv_list[3] = &sv_no; \ +} STMT_END -- cgit v1.2.1