diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-04-10 15:27:23 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-04-10 15:27:23 -0300 |
commit | 672bb67ee6b3f1c705fca4537824e6190c4a8d57 (patch) | |
tree | b5177e0595a029176a8bcfd21f23dbeb4bcdbb0e /loadlib.c | |
parent | 90df6b7a542f39281181d39674756aa759bfad07 (diff) | |
download | lua-672bb67ee6b3f1c705fca4537824e6190c4a8d57.tar.gz lua-672bb67ee6b3f1c705fca4537824e6190c4a8d57.tar.bz2 lua-672bb67ee6b3f1c705fca4537824e6190c4a8d57.zip |
environment variable names should be configurable
Diffstat (limited to 'loadlib.c')
-rw-r--r-- | loadlib.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: loadlib.c,v 1.50 2005/12/19 20:56:39 roberto Exp roberto $ | 2 | ** $Id: loadlib.c,v 1.51 2005/12/29 15:32:11 roberto Exp roberto $ |
3 | ** Dynamic library loader for Lua | 3 | ** Dynamic library loader for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | ** | 5 | ** |
@@ -22,10 +22,6 @@ | |||
22 | #include "lualib.h" | 22 | #include "lualib.h" |
23 | 23 | ||
24 | 24 | ||
25 | /* environment variables that hold the search path for packages */ | ||
26 | #define LUA_PATH "LUA_PATH" | ||
27 | #define LUA_CPATH "LUA_CPATH" | ||
28 | |||
29 | /* prefix for open functions in C libraries */ | 25 | /* prefix for open functions in C libraries */ |
30 | #define LUA_POF "luaopen_" | 26 | #define LUA_POF "luaopen_" |
31 | 27 | ||