aboutsummaryrefslogtreecommitdiff
path: root/lualib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-01-12 15:14:26 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-01-12 15:14:26 -0200
commit94c1b3a8eef6778cf995b906d77c0c066c6d55f3 (patch)
tree1b7cd3a0d95a655d9e5016046e56063ab548aeba /lualib.h
parent08199ade4ace6addd63148df4c596d6b61def8cd (diff)
downloadlua-94c1b3a8eef6778cf995b906d77c0c066c6d55f3.tar.gz
lua-94c1b3a8eef6778cf995b906d77c0c066c6d55f3.tar.bz2
lua-94c1b3a8eef6778cf995b906d77c0c066c6d55f3.zip
Handling of LUA_PATH/LUA_CPATH moved back to 'package' library
to avoid incompatibilites with previous releases
Diffstat (limited to 'lualib.h')
-rw-r--r--lualib.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lualib.h b/lualib.h
index ea073444..c01eb9c8 100644
--- a/lualib.h
+++ b/lualib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lualib.h,v 1.43 2011/12/08 12:11:37 roberto Exp roberto $ 2** $Id: lualib.h,v 1.44 2014/02/06 17:32:33 roberto Exp roberto $
3** Lua standard libraries 3** Lua standard libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -11,6 +11,9 @@
11#include "lua.h" 11#include "lua.h"
12 12
13 13
14/* version suffix for environment variable names */
15#define LUA_VERSUFFIX "_" LUA_VERSION_MAJOR "_" LUA_VERSION_MINOR
16
14 17
15LUAMOD_API int (luaopen_base) (lua_State *L); 18LUAMOD_API int (luaopen_base) (lua_State *L);
16 19