diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-12-17 10:28:57 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-12-17 10:28:57 -0200 |
commit | e0f9d1c8f5cca74d1ad4017a1f14ff1acac2075a (patch) | |
tree | ae7e07fee8706490585ed02745f051283d179564 /ldo.h | |
parent | de6fc75d630b393d8b577ba03353abe527523d0f (diff) | |
download | lua-e0f9d1c8f5cca74d1ad4017a1f14ff1acac2075a.tar.gz lua-e0f9d1c8f5cca74d1ad4017a1f14ff1acac2075a.tar.bz2 lua-e0f9d1c8f5cca74d1ad4017a1f14ff1acac2075a.zip |
removed export of function only for coco
Diffstat (limited to 'ldo.h')
-rw-r--r-- | ldo.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.h,v 2.16 2009/11/19 16:24:41 roberto Exp roberto $ | 2 | ** $Id: ldo.h,v 2.17 2009/11/25 15:27:51 roberto Exp roberto $ |
3 | ** Stack and Call structure of Lua | 3 | ** Stack and Call structure of Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -41,8 +41,5 @@ LUAI_FUNC void luaD_shrinkstack (lua_State *L); | |||
41 | LUAI_FUNC void luaD_throw (lua_State *L, int errcode); | 41 | LUAI_FUNC void luaD_throw (lua_State *L, int errcode); |
42 | LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud); | 42 | LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud); |
43 | 43 | ||
44 | /* exported for Coco */ | ||
45 | LUAI_FUNC void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop); | ||
46 | |||
47 | #endif | 44 | #endif |
48 | 45 | ||