novi upstream verzije 2.8.3
[ossec-hids.git] / src / external / lua-5.2.3 / src / lfs.h
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 */
7
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
15
16
17 int luaopen_lfs (lua_State *L);