new LUA_USERCONFIG to include user options

This commit is contained in:
Roberto Ierusalimschy 2002-08-13 12:04:59 -03:00
parent 27f8a4a69e
commit a048d71ef3
1 changed files with 9 additions and 1 deletions

10
lua.c
View File

@ -1,5 +1,5 @@
/*
** $Id: lua.c,v 1.101 2002/08/08 20:08:41 roberto Exp roberto $
** $Id: lua.c,v 1.102 2002/08/12 17:23:12 roberto Exp roberto $
** Lua stand-alone interpreter
** See Copyright Notice in lua.h
*/
@ -16,6 +16,14 @@
#include "lualib.h"
/*
** generic extra include file
*/
#ifdef LUA_USERCONFIG
#include LUA_USERCONFIG
#endif
#ifdef _POSIX_SOURCE
#include <unistd.h>
#else