diff options
Diffstat (limited to 'lfunc.c')
-rw-r--r-- | lfunc.c | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lfunc.c,v 1.70 2003/11/17 19:50:05 roberto Exp roberto $ | 2 | ** $Id: lfunc.c,v 1.71 2003/11/19 19:41:30 roberto Exp roberto $ |
3 | ** Auxiliary functions to manipulate prototypes and closures | 3 | ** Auxiliary functions to manipulate prototypes and closures |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -18,13 +18,6 @@ | |||
18 | #include "lstate.h" | 18 | #include "lstate.h" |
19 | 19 | ||
20 | 20 | ||
21 | #define sizeCclosure(n) (cast(int, sizeof(CClosure)) + \ | ||
22 | cast(int, sizeof(TObject)*((n)-1))) | ||
23 | |||
24 | #define sizeLclosure(n) (cast(int, sizeof(LClosure)) + \ | ||
25 | cast(int, sizeof(TObject *)*((n)-1))) | ||
26 | |||
27 | |||
28 | 21 | ||
29 | Closure *luaF_newCclosure (lua_State *L, int nelems) { | 22 | Closure *luaF_newCclosure (lua_State *L, int nelems) { |
30 | Closure *c = cast(Closure *, luaM_malloc(L, sizeCclosure(nelems))); | 23 | Closure *c = cast(Closure *, luaM_malloc(L, sizeCclosure(nelems))); |