summaryrefslogtreecommitdiff
path: root/lfunc.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-11-24 16:50:36 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-11-24 16:50:36 -0200
commit5ee63257f9eee2216b6ed06afa93aceac3227fb4 (patch)
treee6f265aebc65df1d0308aad77566b3db2444680b /lfunc.h
parent8bc6c680219f6fe7dd96ea17235484b0ded5fc15 (diff)
downloadlua-github-5ee63257f9eee2216b6ed06afa93aceac3227fb4.tar.gz
macros for closure sizes are global
Diffstat (limited to 'lfunc.h')
-rw-r--r--lfunc.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/lfunc.h b/lfunc.h
index ae55e289..bb0fa001 100644
--- a/lfunc.h
+++ b/lfunc.h
@@ -1,5 +1,5 @@
/*
-** $Id: lfunc.h,v 1.21 2003/03/18 12:50:04 roberto Exp roberto $
+** $Id: lfunc.h,v 1.22 2003/10/20 17:42:41 roberto Exp roberto $
** Auxiliary functions to manipulate prototypes and closures
** See Copyright Notice in lua.h
*/
@@ -11,6 +11,13 @@
#include "lobject.h"
+#define sizeCclosure(n) (cast(int, sizeof(CClosure)) + \
+ cast(int, sizeof(TObject)*((n)-1)))
+
+#define sizeLclosure(n) (cast(int, sizeof(LClosure)) + \
+ cast(int, sizeof(TObject *)*((n)-1)))
+
+
Proto *luaF_newproto (lua_State *L);
Closure *luaF_newCclosure (lua_State *L, int nelems);
Closure *luaF_newLclosure (lua_State *L, int nelems, TObject *e);