aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortomas <tomas>2004-10-14 11:13:29 +0000
committertomas <tomas>2004-10-14 11:13:29 +0000
commita6c8ca71233e9b771b91789e3059b9d22b26c8e9 (patch)
tree765cb8721bc9e1ebf529e694f7cc9ac5b93d521b
parent8382ef436288664a1199e33f21336c7b9388ab58 (diff)
downloadluafilesystem-a6c8ca71233e9b771b91789e3059b9d22b26c8e9.tar.gz
luafilesystem-a6c8ca71233e9b771b91789e3059b9d22b26c8e9.tar.bz2
luafilesystem-a6c8ca71233e9b771b91789e3059b9d22b26c8e9.zip
Adaptacao `a nova funcao luaL_openlib (luaL_module).
-rw-r--r--src/lfs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lfs.c b/src/lfs.c
index d494dd3..727399d 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -9,7 +9,7 @@
9** lfs.lock (fh, mode) 9** lfs.lock (fh, mode)
10** lfs.unlock (fh) 10** lfs.unlock (fh)
11** 11**
12** $Id: lfs.c,v 1.1 2004/07/29 14:26:33 tomas Exp $ 12** $Id: lfs.c,v 1.2 2004/10/14 11:13:29 tomas Exp $
13*/ 13*/
14 14
15#include <errno.h> 15#include <errno.h>
@@ -34,6 +34,7 @@
34#include <lualib.h> 34#include <lualib.h>
35 35
36#include "lfs.h" 36#include "lfs.h"
37#include "compat-5.1.h"
37 38
38/* Define 'strerror' for systems that do not implement it */ 39/* Define 'strerror' for systems that do not implement it */
39#ifdef NO_STRERROR 40#ifdef NO_STRERROR