From 103a10514868618165742e26004f4b21f10d36df Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Mon, 7 Aug 2006 10:24:39 +0000 Subject: [PATCH] Provide a BGET_svtype, required by #28667 p4raw-id: //depot/perl@28668 --- ext/ByteLoader/bytecode.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/ByteLoader/bytecode.h b/ext/ByteLoader/bytecode.h index addae62..fd2c4f6 100644 --- a/ext/ByteLoader/bytecode.h +++ b/ext/ByteLoader/bytecode.h @@ -28,6 +28,7 @@ typedef char *pvindex; #define BGET_IV(arg) BGET_OR_CROAK(arg, IV) #define BGET_PADOFFSET(arg) BGET_OR_CROAK(arg, PADOFFSET) #define BGET_long(arg) BGET_OR_CROAK(arg, long) +#define BGET_svtype(arg) BGET_OR_CROAK(arg, svtype) #define BGET_OR_CROAK(arg, type) STMT_START { \ if (BGET_FREAD(&arg, sizeof(type), 1) < 1) { \ -- 2.7.4