summaryrefslogtreecommitdiff
path: root/ltests.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-01-11 15:33:09 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-01-11 15:33:09 -0200
commit8bfc696676f5ae6dc669b142981bc4ec8b3c4fb2 (patch)
treea2d8a5bcd9346482e03fc9ff4b313be39c4e9e13 /ltests.h
parent97a35e70af9374e6145800c867eee1cdd9f07a2d (diff)
downloadlua-8bfc696676f5ae6dc669b142981bc4ec8b3c4fb2.tar.gz
lua-8bfc696676f5ae6dc669b142981bc4ec8b3c4fb2.tar.bz2
lua-8bfc696676f5ae6dc669b142981bc4ec8b3c4fb2.zip
missing 'external' in variable declaration
Diffstat (limited to 'ltests.h')
-rw-r--r--ltests.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltests.h b/ltests.h
index 796fb5a0..7416a941 100644
--- a/ltests.h
+++ b/ltests.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.h,v 2.28 2009/12/16 16:42:58 roberto Exp roberto $ 2** $Id: ltests.h,v 2.29 2009/12/17 12:26:09 roberto Exp roberto $
3** Internal Header for Debugging of the Lua Implementation 3** Internal Header for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -39,7 +39,7 @@ extern Memcontrol l_memcontrol;
39/* 39/*
40** generic variable for debug tricks 40** generic variable for debug tricks
41*/ 41*/
42void *l_Trick; 42extern void *l_Trick;
43 43
44 44
45void *debug_realloc (void *ud, void *block, size_t osize, size_t nsize); 45void *debug_realloc (void *ud, void *block, size_t osize, size_t nsize);