summaryrefslogtreecommitdiffstats
path: root/src/civetweb/src/third_party/lfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/civetweb/src/third_party/lfs.h')
-rw-r--r--src/civetweb/src/third_party/lfs.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/civetweb/src/third_party/lfs.h b/src/civetweb/src/third_party/lfs.h
new file mode 100644
index 000000000..02ceafbeb
--- /dev/null
+++ b/src/civetweb/src/third_party/lfs.h
@@ -0,0 +1,32 @@
+/*
+** LuaFileSystem
+** Copyright Kepler Project 2003 (http://www.keplerproject.org/luafilesystem)
+**
+** $Id: lfs.h,v 1.5 2008/02/19 20:08:23 mascarenhas Exp $
+*/
+
+/* Define 'chdir' for systems that do not implement it */
+#ifdef NO_CHDIR
+#define chdir(p) (-1)
+#define chdir_error "Function 'chdir' not provided by system"
+#else
+#define chdir_error strerror(errno)
+
+#endif
+
+#ifdef _WIN32
+#define chdir(p) (_chdir(p))
+#define getcwd(d, s) (_getcwd(d, s))
+#define rmdir(p) (_rmdir(p))
+#define fileno(f) (_fileno(f))
+#endif
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+int luaopen_lfs (lua_State *L);
+
+#ifdef __cplusplus
+}
+#endif