diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-26 16:53:45 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-26 16:53:45 -0200 |
commit | 9ae0c082a350a0685a51da0f7bee3266d5c74e79 (patch) | |
tree | 08df45369191945693df85ddebb891ca9ebe9f4d /lmem.h | |
parent | accd7bc25355be4350db6d117515c672121a67f2 (diff) | |
download | lua-9ae0c082a350a0685a51da0f7bee3266d5c74e79.tar.gz lua-9ae0c082a350a0685a51da0f7bee3266d5c74e79.tar.bz2 lua-9ae0c082a350a0685a51da0f7bee3266d5c74e79.zip |
small details by lint.
Diffstat (limited to 'lmem.h')
-rw-r--r-- | lmem.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 | ||
41 | void luaM_query (void); /* only ifdef DEBUG */ | 41 | #ifdef DEBUG |
42 | void luaM_query (void); | ||
43 | #endif | ||
42 | 44 | ||
43 | 45 | ||
44 | #endif | 46 | #endif |