summaryrefslogtreecommitdiff
path: root/core/src/xmake/engine.c
diff options
context:
space:
mode:
authorruki <[email protected]>2021-09-21 00:52:15 +0800
committerruki <[email protected]>2021-09-21 00:52:15 +0800
commitbce8f65cb9f619dfa30d7b4b1fa2da9fa56b58e1 (patch)
treee05136ba9eaa706a2d2cabab6732a9410b05e297 /core/src/xmake/engine.c
parent4181bf780192cbf4be257fb7b658cfb390684a12 (diff)
improve bytes
Diffstat (limited to 'core/src/xmake/engine.c')
-rw-r--r--core/src/xmake/engine.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/src/xmake/engine.c b/core/src/xmake/engine.c
index e7c4c9644..e6ecec020 100644
--- a/core/src/xmake/engine.c
+++ b/core/src/xmake/engine.c
@@ -228,8 +228,6 @@ tb_int_t xm_libc_memcpy(lua_State* lua);
tb_int_t xm_libc_memset(lua_State* lua);
tb_int_t xm_libc_strndup(lua_State* lua);
tb_int_t xm_libc_dataptr(lua_State* lua);
-tb_int_t xm_libc_ptraddr(lua_State* lua);
-tb_int_t xm_libc_diffptr(lua_State* lua);
tb_int_t xm_libc_byteof(lua_State* lua);
tb_int_t xm_libc_setbyte(lua_State* lua);
@@ -433,8 +431,6 @@ static luaL_Reg const g_libc_functions[] =
, { "memset", xm_libc_memset }
, { "strndup", xm_libc_strndup }
, { "dataptr", xm_libc_dataptr }
-, { "ptraddr", xm_libc_ptraddr }
-, { "diffptr", xm_libc_diffptr }
, { "byteof", xm_libc_byteof }
, { "setbyte", xm_libc_setbyte }
, { tb_null, tb_null }