summaryrefslogtreecommitdiffstats
path: root/osdep/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/io.c')
-rw-r--r--osdep/io.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/osdep/io.c b/osdep/io.c
index a49ee82638..3b2061e55b 100644
--- a/osdep/io.c
+++ b/osdep/io.c
@@ -799,4 +799,18 @@ int msync(void *addr, size_t length, int flags)
}
#endif
+locale_t newlocale(int category, const char *locale, locale_t base)
+{
+ return (locale_t)1;
+}
+
+locale_t uselocale(locale_t locobj)
+{
+ return (locale_t)1;
+}
+
+void freelocale(locale_t locobj)
+{
+}
+
#endif // __MINGW32__