summaryrefslogtreecommitdiffstats
path: root/common/os_calls.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/os_calls.c')
-rw-r--r--common/os_calls.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/common/os_calls.c b/common/os_calls.c
index bbbe5e73..65cc6206 100644
--- a/common/os_calls.c
+++ b/common/os_calls.c
@@ -1075,6 +1075,20 @@ g_pos(char* str, const char* to_find)
}
/*****************************************************************************/
+int APP_CC
+g_mbstowcs(twchar* dest, const char* src, int n)
+{
+ return mbstowcs(dest, src, n);
+}
+
+/*****************************************************************************/
+int APP_CC
+g_wcstombs(char* dest, const twchar* src, int n)
+{
+ return wcstombs(dest, src, n);
+}
+
+/*****************************************************************************/
long APP_CC
g_load_library(char* in)
{