aboutsummaryrefslogtreecommitdiff
path: root/lcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-03-19 17:03:44 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-03-19 17:03:44 -0300
commit64867624630b4effacb3d3fb54708ecda19f0221 (patch)
tree53c7d56952967c8b0702c9c479cf54c906b1592a /lcode.h
parent4907444db9d31f340f29f6ff7c9284ee06a03f5b (diff)
downloadlua-64867624630b4effacb3d3fb54708ecda19f0221.tar.gz
lua-64867624630b4effacb3d3fb54708ecda19f0221.tar.bz2
lua-64867624630b4effacb3d3fb54708ecda19f0221.zip
missing LUAI_FUNC in prototype for 'luaK_patchgoto'
Diffstat (limited to 'lcode.h')
-rw-r--r--lcode.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lcode.h b/lcode.h
index e7c294d4..6ec8b099 100644
--- a/lcode.h
+++ b/lcode.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.h,v 1.70 2017/12/18 15:44:44 roberto Exp roberto $ 2** $Id: lcode.h,v 1.71 2018/03/07 15:55:38 roberto Exp roberto $
3** Code generator for Lua 3** Code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -78,7 +78,8 @@ LUAI_FUNC void luaK_setoneret (FuncState *fs, expdesc *e);
78LUAI_FUNC int luaK_jump (FuncState *fs); 78LUAI_FUNC int luaK_jump (FuncState *fs);
79LUAI_FUNC void luaK_ret (FuncState *fs, int first, int nret); 79LUAI_FUNC void luaK_ret (FuncState *fs, int first, int nret);
80LUAI_FUNC void luaK_patchlist (FuncState *fs, int list, int target); 80LUAI_FUNC void luaK_patchlist (FuncState *fs, int list, int target);
81void luaK_patchgoto (FuncState *fs, int list, int target, int hasclose); 81LUAI_FUNC void luaK_patchgoto (FuncState *fs, int list, int target,
82 int hasclose);
82LUAI_FUNC void luaK_patchtohere (FuncState *fs, int list); 83LUAI_FUNC void luaK_patchtohere (FuncState *fs, int list);
83LUAI_FUNC void luaK_patchclose (FuncState *fs, int list); 84LUAI_FUNC void luaK_patchclose (FuncState *fs, int list);
84LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2); 85LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2);