diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-03-08 17:10:05 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-03-08 17:10:05 -0300 |
commit | f8df21bd2071c4e3729d37d1552f54ca2742551a (patch) | |
tree | 6d85e7fd9f86bfb6879c0edd60780b1f40325027 /loslib.c | |
parent | d3902cfa81021bca0a8c30b3ad79a1e2367f6621 (diff) | |
download | lua-f8df21bd2071c4e3729d37d1552f54ca2742551a.tar.gz lua-f8df21bd2071c4e3729d37d1552f54ca2742551a.tar.bz2 lua-f8df21bd2071c4e3729d37d1552f54ca2742551a.zip |
`luaconf.h´ exports all its definitions always (so all of them
must have a lua/LUA prefix).
Diffstat (limited to 'loslib.c')
-rw-r--r-- | loslib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: loslib.c,v 1.3 2004/10/08 18:57:16 roberto Exp roberto $ | 2 | ** $Id: loslib.c,v 1.4 2005/01/10 19:16:29 roberto Exp roberto $ |
3 | ** Standard Operating System library | 3 | ** Standard Operating System library |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -57,7 +57,7 @@ static int io_rename (lua_State *L) { | |||
57 | 57 | ||
58 | 58 | ||
59 | static int io_tmpname (lua_State *L) { | 59 | static int io_tmpname (lua_State *L) { |
60 | #if !USE_TMPNAME | 60 | #if !LUA_USETMPNAME |
61 | luaL_error(L, "`tmpname' not supported"); | 61 | luaL_error(L, "`tmpname' not supported"); |
62 | return 0; | 62 | return 0; |
63 | #else | 63 | #else |