commit 8bfc696676f5ae6dc669b142981bc4ec8b3c4fb2
parent 97a35e70af9374e6145800c867eee1cdd9f07a2d
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Mon, 11 Jan 2010 15:32:45 -0200
missing 'external' in variable declaration
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ltests.h b/ltests.h
@@ -1,5 +1,5 @@
/*
-** $Id: ltests.h,v 2.28 2009/12/16 16:42:58 roberto Exp roberto $
+** $Id: ltests.h,v 2.29 2009/12/17 12:26:09 roberto Exp roberto $
** Internal Header for Debugging of the Lua Implementation
** See Copyright Notice in lua.h
*/
@@ -39,7 +39,7 @@ extern Memcontrol l_memcontrol;
/*
** generic variable for debug tricks
*/
-void *l_Trick;
+extern void *l_Trick;
void *debug_realloc (void *ud, void *block, size_t osize, size_t nsize);