aboutsummaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-10 15:36:54 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-10 15:36:54 -0200
commit8a0521fa529ce5091877683bc6f235ff8de7185b (patch)
tree309518c1d073c214e130d7634c2b5a24d7cf7ff6 /opcode.h
parent9deac27704eee47f858f6b41a386c3198bc49587 (diff)
downloadlua-8a0521fa529ce5091877683bc6f235ff8de7185b.tar.gz
lua-8a0521fa529ce5091877683bc6f235ff8de7185b.tar.bz2
lua-8a0521fa529ce5091877683bc6f235ff8de7185b.zip
fallback for garbage collection
Diffstat (limited to 'opcode.h')
-rw-r--r--opcode.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/opcode.h b/opcode.h
index f2a482b6..e26fcce1 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.6 1994/11/09 18:10:58 roberto Exp roberto $ 3** $Id: opcode.h,v 3.7 1994/11/10 17:11:52 roberto Exp roberto $
4*/ 4*/
5 5
6#ifndef opcode_h 6#ifndef opcode_h
@@ -162,5 +162,6 @@ void lua_parse (Byte **code); /* from "lua.stx" module */
162void lua_travstack (void (*fn)(Object *)); 162void lua_travstack (void (*fn)(Object *));
163Object *luaI_Address (lua_Object o); 163Object *luaI_Address (lua_Object o);
164void luaI_pushobject (Object *o); 164void luaI_pushobject (Object *o);
165void luaI_gcFB (Object *o);
165 166
166#endif 167#endif