aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-13 12:04:59 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-13 12:04:59 -0300
commita048d71ef38af8110eca2155e40ec167b9a9ca8b (patch)
tree47a028a4daccc1d72442a84eaae48720b0f6b211
parent27f8a4a69e15bc9e1ca98db87d10b19c582c6fd3 (diff)
downloadlua-a048d71ef38af8110eca2155e40ec167b9a9ca8b.tar.gz
lua-a048d71ef38af8110eca2155e40ec167b9a9ca8b.tar.bz2
lua-a048d71ef38af8110eca2155e40ec167b9a9ca8b.zip
new LUA_USERCONFIG to include user options
-rw-r--r--lua.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/lua.c b/lua.c
index 643e8e79..85ce0803 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.101 2002/08/08 20:08:41 roberto Exp roberto $ 2** $Id: lua.c,v 1.102 2002/08/12 17:23:12 roberto Exp roberto $
3** Lua stand-alone interpreter 3** Lua stand-alone interpreter
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -16,6 +16,14 @@
16#include "lualib.h" 16#include "lualib.h"
17 17
18 18
19/*
20** generic extra include file
21*/
22#ifdef LUA_USERCONFIG
23#include LUA_USERCONFIG
24#endif
25
26
19#ifdef _POSIX_SOURCE 27#ifdef _POSIX_SOURCE
20#include <unistd.h> 28#include <unistd.h>
21#else 29#else