aboutsummaryrefslogtreecommitdiff
path: root/lmem.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-26 16:53:45 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-26 16:53:45 -0200
commit9ae0c082a350a0685a51da0f7bee3266d5c74e79 (patch)
tree08df45369191945693df85ddebb891ca9ebe9f4d /lmem.h
parentaccd7bc25355be4350db6d117515c672121a67f2 (diff)
downloadlua-9ae0c082a350a0685a51da0f7bee3266d5c74e79.tar.gz
lua-9ae0c082a350a0685a51da0f7bee3266d5c74e79.tar.bz2
lua-9ae0c082a350a0685a51da0f7bee3266d5c74e79.zip
small details by lint.
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