aboutsummaryrefslogtreecommitdiff
path: root/lmem.h
diff options
context:
space:
mode:
Diffstat (limited to 'lmem.h')
-rw-r--r--lmem.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/lmem.h b/lmem.h
index dcc1c1a4..90111336 100644
--- a/lmem.h
+++ b/lmem.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: $ 2** $Id: lmem.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $
3** Interface to Memory Manager 3** Interface to Memory Manager
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -38,7 +38,9 @@ int luaM_growaux (void **block, unsigned long nelems, int size,
38#define luaM_reallocvector(v,n,t) ((t *)luaM_realloc(v,(n)*sizeof(t))) 38#define luaM_reallocvector(v,n,t) ((t *)luaM_realloc(v,(n)*sizeof(t)))
39 39
40 40
41void luaM_query (void); /* only ifdef DEBUG */ 41#ifdef DEBUG
42void luaM_query (void);
43#endif
42 44
43 45
44#endif 46#endif