diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-04-29 13:57:48 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-04-29 13:57:48 -0300 |
commit | 00744a272908d9212fb1c82157260195d62fe81c (patch) | |
tree | b1841b86b61ab3d6d026e02a9490aa5ac62bd2da /lobject.h | |
parent | b4be5075784bcc8fed974bda4005425a9ccec1ba (diff) | |
download | lua-00744a272908d9212fb1c82157260195d62fe81c.tar.gz lua-00744a272908d9212fb1c82157260195d62fe81c.tar.bz2 lua-00744a272908d9212fb1c82157260195d62fe81c.zip |
'luaO_arith' -> 'luaO_numarith'
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.73 2013/04/15 15:44:46 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.74 2013/04/16 18:46:28 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -496,7 +496,7 @@ LUAI_DDEC const TValue luaO_nilobject_; | |||
496 | LUAI_FUNC int luaO_int2fb (unsigned int x); | 496 | LUAI_FUNC int luaO_int2fb (unsigned int x); |
497 | LUAI_FUNC int luaO_fb2int (int x); | 497 | LUAI_FUNC int luaO_fb2int (int x); |
498 | LUAI_FUNC int luaO_ceillog2 (unsigned int x); | 498 | LUAI_FUNC int luaO_ceillog2 (unsigned int x); |
499 | LUAI_FUNC lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2); | 499 | LUAI_FUNC lua_Number luaO_numarith (int op, lua_Number v1, lua_Number v2); |
500 | LUAI_FUNC int luaO_str2d (const char *s, size_t len, lua_Number *result); | 500 | LUAI_FUNC int luaO_str2d (const char *s, size_t len, lua_Number *result); |
501 | LUAI_FUNC int luaO_str2int (const char *s, lua_Integer *result); | 501 | LUAI_FUNC int luaO_str2int (const char *s, lua_Integer *result); |
502 | LUAI_FUNC int luaO_hexavalue (int c); | 502 | LUAI_FUNC int luaO_hexavalue (int c); |