aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-11-19 17:04:58 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-11-19 17:04:58 -0200
commitb4c18248247d84a3acffc020b09d1637dd2990c6 (patch)
treec263a823c85005c7bddd9f5c61a39e8c56a649f6
parent2e5ef6a9fb8116d1fd5cba1c7919670152f6a206 (diff)
downloadlua-b4c18248247d84a3acffc020b09d1637dd2990c6.tar.gz
lua-b4c18248247d84a3acffc020b09d1637dd2990c6.tar.bz2
lua-b4c18248247d84a3acffc020b09d1637dd2990c6.zip
'luaV_arith' must be marked 'LUAI_FUNC' (as all non-static functions)
-rw-r--r--lvm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lvm.h b/lvm.h
index 476bf506..22d37e50 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 2.11 2009/06/17 17:51:07 roberto Exp roberto $ 2** $Id: lvm.h,v 2.12 2009/11/06 17:05:34 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -35,7 +35,7 @@ LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key,
35LUAI_FUNC void luaV_finishOp (lua_State *L); 35LUAI_FUNC void luaV_finishOp (lua_State *L);
36LUAI_FUNC void luaV_execute (lua_State *L); 36LUAI_FUNC void luaV_execute (lua_State *L);
37LUAI_FUNC void luaV_concat (lua_State *L, int total); 37LUAI_FUNC void luaV_concat (lua_State *L, int total);
38void luaV_arith (lua_State *L, StkId ra, const TValue *rb, 38LUAI_FUNC void luaV_arith (lua_State *L, StkId ra, const TValue *rb,
39 const TValue *rc, TMS op); 39 const TValue *rc, TMS op);
40 40
41#endif 41#endif