aboutsummaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-07 14:34:44 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-07 14:34:44 -0200
commitd95a8b312166752e2211678b33514edb1d68a0a6 (patch)
tree87a7180705c1c5e6db71831fb8cb49ce8980f4d0 /opcode.h
parent9ffba7a3dbdfa68595cd8cec26bd99689ce5fd08 (diff)
downloadlua-d95a8b312166752e2211678b33514edb1d68a0a6.tar.gz
lua-d95a8b312166752e2211678b33514edb1d68a0a6.tar.bz2
lua-d95a8b312166752e2211678b33514edb1d68a0a6.zip
new API: lua_Object now is an integer
Diffstat (limited to 'opcode.h')
-rw-r--r--opcode.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/opcode.h b/opcode.h
index 72ea09d5..beb629a1 100644
--- a/opcode.h
+++ b/opcode.h
@@ -1,6 +1,6 @@
1/* 1/*
2** TeCGraf - PUC-Rio 2** TeCGraf - PUC-Rio
3** $Id: opcode.h,v 3.3 1994/11/06 15:35:04 roberto Exp $ 3** $Id: opcode.h,v 3.4 1994/11/07 15:20:56 roberto Exp roberto $
4*/ 4*/
5 5
6#ifndef opcode_h 6#ifndef opcode_h
@@ -152,7 +152,6 @@ typedef struct
152 code.m.c3 = *pc++; code.m.c4 = *pc++;} 152 code.m.c3 = *pc++; code.m.c4 = *pc++;}
153 153
154 154
155
156/* Exported functions */ 155/* Exported functions */
157char *lua_strdup (char *l); 156char *lua_strdup (char *l);
158 157
@@ -162,5 +161,7 @@ int yylex (void); /* from "lex.c" module */
162Byte *lua_parse (void); /* from "lua.stx" module */ 161Byte *lua_parse (void); /* from "lua.stx" module */
163void lua_travstack (void (*fn)(Object *)); 162void lua_travstack (void (*fn)(Object *));
164void luaI_setfallback (void); 163void luaI_setfallback (void);
164Object *luaI_Address (lua_Object o);
165void luaI_pushobject (Object *o);
165 166
166#endif 167#endif