mirror of https://github.com/rusefi/lua.git
new LUA_USERCONFIG to include user options
This commit is contained in:
parent
27f8a4a69e
commit
a048d71ef3
10
lua.c
10
lua.c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue