aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsystem/lib/embind/bind.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/system/lib/embind/bind.cpp b/system/lib/embind/bind.cpp
index 35d99dad..ec1648a9 100755
--- a/system/lib/embind/bind.cpp
+++ b/system/lib/embind/bind.cpp
@@ -36,24 +36,6 @@ extern "C" {
}
}
-// TODO: fix in library.js or a proper emscripten libc
-extern "C" wchar_t *wmemset(wchar_t *dest, wchar_t c, size_t count) {
- wchar_t *o = dest;
- while (count--) {
- *o++ = c;
- }
- return dest;
-}
-
-// TODO: fix in library.js or a proper emscripten libc
-extern "C" wchar_t *wmemcpy(wchar_t *dest, const wchar_t *src, size_t count) {
- wchar_t *o = dest;
- while (count--) {
- *dest++ = *src++;
- }
- return dest;
-}
-
EMSCRIPTEN_BINDINGS(native_and_builtin_types) {
using namespace emscripten::internal;