From 94d40f3980d4f13ed33d1c23fcc8c7aafbd7be59 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Tue, 10 Apr 2007 09:18:17 -0300 Subject: luaO_log2 can be private to ltable.c --- lobject.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index bb786b01..b8765f96 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 2.20 2006/01/18 11:37:34 roberto Exp roberto $ +** $Id: lobject.h,v 2.21 2006/09/11 14:07:24 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -364,9 +364,6 @@ typedef struct Table { LUAI_DATA const TValue luaO_nilobject_; -#define ceillog2(x) (luaO_log2((x)-1) + 1) - -LUAI_FUNC int luaO_log2 (unsigned int x); LUAI_FUNC int luaO_int2fb (unsigned int x); LUAI_FUNC int luaO_fb2int (int x); LUAI_FUNC int luaO_rawequalObj (const TValue *t1, const TValue *t2); -- cgit v1.2.3-55-g6feb