summaryrefslogtreecommitdiff
path: root/t_lfs.lua
diff options
context:
space:
mode:
authortomas <tomas>2004-09-29 17:46:24 +0000
committertomas <tomas>2004-09-29 17:46:24 +0000
commit8382ef436288664a1199e33f21336c7b9388ab58 (patch)
tree59a5b194fe562ffbd648903db0dd8379de413243 /t_lfs.lua
parentc899c9b2e24401671695b614e88e11886942ad51 (diff)
downloadluafilesystem-8382ef436288664a1199e33f21336c7b9388ab58.tar.gz
luafilesystem-8382ef436288664a1199e33f21336c7b9388ab58.tar.bz2
luafilesystem-8382ef436288664a1199e33f21336c7b9388ab58.zip
Atualizando o codigo para a nova proposta de pacotes.
Diffstat (limited to '')
-rw-r--r--t_lfs.lua8
1 files changed, 0 insertions, 8 deletions
diff --git a/t_lfs.lua b/t_lfs.lua
deleted file mode 100644
index b81950a..0000000
--- a/t_lfs.lua
+++ /dev/null
@@ -1,8 +0,0 @@
1-- $Id: t_lfs.lua,v 1.1 2004/07/29 14:26:33 tomas Exp $
2if not lfs and loadlib then
3 local libname = "LIB_NAME"
4 local libopen = "luaopen_lfs"
5 local init, err1, err2 = loadlib (libname, libopen)
6 assert (init, (err1 or '')..(err2 or ''))
7 init ()
8end