/* ** LuaFileSystem ** Copyright Kepler Project 2003 (http://www.keplerproject.org/luafilesystem) ** ** $Id: lfs.h,v 1.4 2008/02/11 22:42:21 carregal 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 int luaopen_lfs (lua_State *L);