beta-0.89.2
[luatex.git] / source / texk / web2c / luatexdir / luafilesystem / src / lfs.h
blob4b52780bb3ffb2f3f131e458fad24e3141c42733
1 /*
2 ** LuaFileSystem
3 ** Copyright Kepler Project 2003 (http://www.keplerproject.org/luafilesystem)
4 **
5 ** $Id: lfs.h,v 1.5 2008/02/19 20:08:23 mascarenhas Exp $
6 */
8 /* Define 'chdir' for systems that do not implement it */
9 #ifdef NO_CHDIR
10 #define chdir(p) (-1)
11 #define chdir_error "Function 'chdir' not provided by system"
12 #else
13 #define chdir_error strerror(errno)
14 #endif
17 int luaopen_lfs (lua_State *L);