'ceillog2' now is exported (other modules may need it)

This commit is contained in:
Roberto Ierusalimschy
2008-01-30 16:05:23 -02:00
parent dd3519ab89
commit a76fa25199
3 changed files with 25 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lobject.h,v 2.21 2006/09/11 14:07:24 roberto Exp roberto $
** $Id: lobject.h,v 2.22 2007/04/10 12:18:17 roberto Exp roberto $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
@@ -366,6 +366,7 @@ LUAI_DATA const TValue luaO_nilobject_;
LUAI_FUNC int luaO_int2fb (unsigned int x);
LUAI_FUNC int luaO_fb2int (int x);
LUAI_FUNC int luaO_ceillog2 (lu_int32 x);
LUAI_FUNC int luaO_rawequalObj (const TValue *t1, const TValue *t2);
LUAI_FUNC int luaO_str2d (const char *s, lua_Number *result);
LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt,