diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-05-04 14:21:08 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-05-04 14:21:08 -0300 |
commit | 2d7a81a204400aca4c3869d80dc1e761b8c6dc2f (patch) | |
tree | e90326cc71e45b28857e62ed1d5e4db8d89b4e3c /lauxlib.h | |
parent | 658ea8752b979102627e2fede7b7ddfbb67ba6c9 (diff) | |
download | lua-2d7a81a204400aca4c3869d80dc1e761b8c6dc2f.tar.gz lua-2d7a81a204400aca4c3869d80dc1e761b8c6dc2f.tar.bz2 lua-2d7a81a204400aca4c3869d80dc1e761b8c6dc2f.zip |
missing parentheses in declaration
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.103 2010/04/14 15:14:21 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.104 2010/04/19 18:52:15 roberto Exp roberto $ |
3 | ** Auxiliary functions for building Lua libraries | 3 | ** Auxiliary functions for building Lua libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -33,7 +33,7 @@ LUALIB_API void (luaL_openlib) (lua_State *L, const char *libname, | |||
33 | const luaL_Reg *l, int nup); | 33 | const luaL_Reg *l, int nup); |
34 | LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e); | 34 | LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e); |
35 | LUALIB_API int (luaL_callmeta) (lua_State *L, int obj, const char *e); | 35 | LUALIB_API int (luaL_callmeta) (lua_State *L, int obj, const char *e); |
36 | LUALIB_API const char *luaL_tolstring (lua_State *L, int idx, size_t *len); | 36 | LUALIB_API const char *(luaL_tolstring) (lua_State *L, int idx, size_t *len); |
37 | LUALIB_API int (luaL_typeerror) (lua_State *L, int narg, const char *tname); | 37 | LUALIB_API int (luaL_typeerror) (lua_State *L, int narg, const char *tname); |
38 | LUALIB_API int (luaL_argerror) (lua_State *L, int numarg, const char *extramsg); | 38 | LUALIB_API int (luaL_argerror) (lua_State *L, int numarg, const char *extramsg); |
39 | LUALIB_API const char *(luaL_checklstring) (lua_State *L, int numArg, | 39 | LUALIB_API const char *(luaL_checklstring) (lua_State *L, int numArg, |