diff options
| author | ruki <[email protected]> | 2022-04-07 21:01:47 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-04-07 21:01:47 +0800 |
| commit | 424b7f895f87551bc2ad5629053733df82994e3a (patch) | |
| tree | 9536bb72b209c08437c968042d1b8f5f9b09b8dc /xmake/core/base/libc.lua | |
| parent | cb099dedd27ecfb5d52d5991b44de22eb86ff336 (diff) | |
improve libc.memmov
Diffstat (limited to 'xmake/core/base/libc.lua')
| -rw-r--r-- | xmake/core/base/libc.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmake/core/base/libc.lua b/xmake/core/base/libc.lua index 655a7cde0..10590dd35 100644 --- a/xmake/core/base/libc.lua +++ b/xmake/core/base/libc.lua @@ -25,6 +25,7 @@ local libc = libc or {} libc._malloc = libc._malloc or libc.malloc libc._free = libc._free or libc.free libc._memcpy = libc._memcpy or libc.memcpy +libc._memmov = libc._memmov or libc.memmov libc._memset = libc._memset or libc.memset libc._strndup = libc._strndup or libc.strndup libc._dataptr = libc._dataptr or libc.dataptr |
