/* Define 'chdir' for systems that do not implement it */
/* $Id: lfs.h,v 1.1 2004/07/29 14:26:33 tomas Exp $ */
#ifdef NO_CHDIR
#define chdir(p)	(-1)
#define chdir_error	"Function 'chdir' not provided by system"
#else
#define chdir_error	strerror(errno)
#endif
#ifndef LUAFILESYSTEM_H
#define LUAFILESYSTEM_H
int luaopen_lfs (lua_State *L);
#endif


syntax highlighted by Code2HTML, v. 0.9.1