1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00

first version of "lua_close"

This commit is contained in:
Roberto Ierusalimschy
1997-12-01 18:31:25 -02:00
parent 00c122cc29
commit 3393fd7f25
7 changed files with 84 additions and 12 deletions
+4 -2
View File
@@ -1,5 +1,5 @@
/*
** $Id: lua.c,v 1.4 1997/11/19 17:29:23 roberto Exp roberto $
** $Id: lua.c,v 1.5 1997/11/21 19:00:46 roberto Exp roberto $
** Lua stand-alone interpreter
** See Copyright Notice in lua.h
*/
@@ -82,7 +82,9 @@ int main (int argc, char *argv[])
}
}
}
/* lua_close(); */
#if DEBUG
lua_close();
#endif
return 0;
}