environment variable names should be configurable

This commit is contained in:
Roberto Ierusalimschy
2006-04-10 15:27:23 -03:00
parent 90df6b7a54
commit 672bb67ee6
3 changed files with 31 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: loadlib.c,v 1.50 2005/12/19 20:56:39 roberto Exp roberto $
** $Id: loadlib.c,v 1.51 2005/12/29 15:32:11 roberto Exp roberto $
** Dynamic library loader for Lua
** See Copyright Notice in lua.h
**
@@ -22,10 +22,6 @@
#include "lualib.h"
/* environment variables that hold the search path for packages */
#define LUA_PATH "LUA_PATH"
#define LUA_CPATH "LUA_CPATH"
/* prefix for open functions in C libraries */
#define LUA_POF "luaopen_"