summaryrefslogtreecommitdiff
path: root/lcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-20 15:15:33 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-20 15:15:33 -0300
commit099442c41f2cec6122690e6c8f2e11327613e6f6 (patch)
tree73599b274ea4a9b96906ff8160eeb4a524702a8e /lcode.h
parent27600fe87a6fafdfd4ddddeb390591fe749b480f (diff)
downloadlua-github-099442c41f2cec6122690e6c8f2e11327613e6f6.tar.gz
better separation between basic types
Diffstat (limited to 'lcode.h')
-rw-r--r--lcode.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lcode.h b/lcode.h
index 3c8a13a7..41b8a55b 100644
--- a/lcode.h
+++ b/lcode.h
@@ -1,5 +1,5 @@
/*
-** $Id: lcode.h,v 1.18 2000/12/04 18:33:40 roberto Exp roberto $
+** $Id: lcode.h,v 1.19 2001/01/29 15:26:40 roberto Exp roberto $
** Code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -39,9 +39,9 @@ enum Mode {iO, iU, iS, iAB}; /* instruction format */
#define VD 100 /* flag for variable delta */
typedef struct OpProperties {
- char mode;
- unsigned char push;
- unsigned char pop;
+ lu_byte mode;
+ lu_byte push;
+ lu_byte pop;
} OpProperties;
extern const OpProperties luaK_opproperties[];