aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ltests.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ltests.h b/ltests.h
index 305f5619..26ffed83 100644
--- a/ltests.h
+++ b/ltests.h
@@ -63,7 +63,7 @@ LUA_API Memcontrol l_memcontrol;
63 63
64 64
65#define luai_tracegc(L,f) luai_tracegctest(L, f) 65#define luai_tracegc(L,f) luai_tracegctest(L, f)
66LUAI_FUNC void luai_tracegctest (lua_State *L, int first); 66extern void luai_tracegctest (lua_State *L, int first);
67 67
68 68
69/* 69/*
@@ -75,26 +75,26 @@ extern void *l_Trick;
75/* 75/*
76** Function to traverse and check all memory used by Lua 76** Function to traverse and check all memory used by Lua
77*/ 77*/
78LUAI_FUNC int lua_checkmemory (lua_State *L); 78extern int lua_checkmemory (lua_State *L);
79 79
80/* 80/*
81** Function to print an object GC-friendly 81** Function to print an object GC-friendly
82*/ 82*/
83struct GCObject; 83struct GCObject;
84LUAI_FUNC void lua_printobj (lua_State *L, struct GCObject *o); 84extern void lua_printobj (lua_State *L, struct GCObject *o);
85 85
86 86
87/* 87/*
88** Function to print a value 88** Function to print a value
89*/ 89*/
90struct TValue; 90struct TValue;
91LUAI_FUNC void lua_printvalue (struct TValue *v); 91extern void lua_printvalue (struct TValue *v);
92 92
93/* 93/*
94** Function to print the stack 94** Function to print the stack
95*/ 95*/
96LUAI_FUNC void lua_printstack (lua_State *L); 96extern void lua_printstack (lua_State *L);
97LUAI_FUNC int lua_printallstack (lua_State *L); 97extern int lua_printallstack (lua_State *L);
98 98
99 99
100/* test for lock/unlock */ 100/* test for lock/unlock */