diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-02-23 14:30:22 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-02-23 14:30:22 -0300 |
commit | d55bb795faaa3a632aeb92fd29fc12b796ae7968 (patch) | |
tree | e81b84b41de1264dd078cec37541716ba0ffcf27 /luaconf.h | |
parent | d84cc9d2dbf1f44e7126fe3ed9a82eed9757a63a (diff) | |
download | lua-d55bb795faaa3a632aeb92fd29fc12b796ae7968.tar.gz lua-d55bb795faaa3a632aeb92fd29fc12b796ae7968.tar.bz2 lua-d55bb795faaa3a632aeb92fd29fc12b796ae7968.zip |
details
Diffstat (limited to 'luaconf.h')
-rw-r--r-- | luaconf.h | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.27 2005/01/10 18:33:37 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.28 2005/02/10 17:12:02 roberto Exp roberto $ |
3 | ** Configuration file for Lua | 3 | ** Configuration file for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -307,7 +307,7 @@ __inline int l_lrint (double flt) | |||
307 | 307 | ||
308 | 308 | ||
309 | /* allows user-specific initialization on new threads */ | 309 | /* allows user-specific initialization on new threads */ |
310 | #define lua_userstateopen(L) /* empty */ | 310 | #define lua_userstateopen(L) ((void)0) |
311 | 311 | ||
312 | 312 | ||
313 | #endif | 313 | #endif |
@@ -325,9 +325,6 @@ __inline int l_lrint (double flt) | |||
325 | #ifdef LUA_LIB | 325 | #ifdef LUA_LIB |
326 | 326 | ||
327 | 327 | ||
328 | |||
329 | /* `assert' options */ | ||
330 | |||
331 | /* environment variables that hold the search path for packages */ | 328 | /* environment variables that hold the search path for packages */ |
332 | #define LUA_PATH "LUA_PATH" | 329 | #define LUA_PATH "LUA_PATH" |
333 | #define LUA_CPATH "LUA_CPATH" | 330 | #define LUA_CPATH "LUA_CPATH" |
@@ -336,7 +333,7 @@ __inline int l_lrint (double flt) | |||
336 | #define LUA_POF "luaopen_" | 333 | #define LUA_POF "luaopen_" |
337 | 334 | ||
338 | /* separator for open functions in C libraries */ | 335 | /* separator for open functions in C libraries */ |
339 | #define LUA_OFSEP "" | 336 | #define LUA_OFSEP "_" |
340 | 337 | ||
341 | /* directory separator (for submodules) */ | 338 | /* directory separator (for submodules) */ |
342 | #if defined(_WIN32) | 339 | #if defined(_WIN32) |