summaryrefslogtreecommitdiff
path: root/lua.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-12-01 18:31:25 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-12-01 18:31:25 -0200
commit3393fd7f257397199c6ecd143f956a19ee4a0cf7 (patch)
tree3a0114c3f5954b07074bb51d9fa5616bc49b101d /lua.c
parent00c122cc291cfb24e01a5c00f2c3503a6dfa073e (diff)
downloadlua-3393fd7f257397199c6ecd143f956a19ee4a0cf7.tar.gz
lua-3393fd7f257397199c6ecd143f956a19ee4a0cf7.tar.bz2
lua-3393fd7f257397199c6ecd143f956a19ee4a0cf7.zip
first version of "lua_close"
Diffstat (limited to 'lua.c')
-rw-r--r--lua.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lua.c b/lua.c
index 2484d3bc..2ebfc951 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.4 1997/11/19 17:29:23 roberto Exp roberto $ 2** $Id: lua.c,v 1.5 1997/11/21 19:00:46 roberto Exp roberto $
3** Lua stand-alone interpreter 3** Lua stand-alone interpreter
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -82,7 +82,9 @@ int main (int argc, char *argv[])
82 } 82 }
83 } 83 }
84 } 84 }
85/* lua_close(); */ 85#if DEBUG
86 lua_close();
87#endif
86 return 0; 88 return 0;
87} 89}
88 90