From 65c289b0465f717f907aa31ea7c68cf99e6420bf Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 7 Jun 2001 10:46:29 -0300 Subject: details --- ldebug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ldebug.h') diff --git a/ldebug.h b/ldebug.h index 7dd7ed23..c48681f1 100644 --- a/ldebug.h +++ b/ldebug.h @@ -1,5 +1,5 @@ /* -** $Id: ldebug.h,v 1.11 2001/02/23 17:17:25 roberto Exp roberto $ +** $Id: ldebug.h,v 1.12 2001/06/05 18:17:01 roberto Exp roberto $ ** Auxiliary functions from Debug Interface module ** See Copyright Notice in lua.h */ @@ -26,7 +26,7 @@ enum OpModeMask { OpModeT /* operator is a test */ }; -extern const unsigned char luaG_opmodes[]; +extern const lu_byte luaG_opmodes[]; #define getOpMode(m) ((enum OpMode)(luaG_opmodes[m] & 3)) #define testOpMode(m, b) (luaG_opmodes[m] & (1 << (b))) -- cgit v1.2.3-55-g6feb