summaryrefslogtreecommitdiff
path: root/src/user/lib/include/locale.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/lib/include/locale.h')
-rw-r--r--src/user/lib/include/locale.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/user/lib/include/locale.h b/src/user/lib/include/locale.h
index 263dfb5..1221375 100644
--- a/src/user/lib/include/locale.h
+++ b/src/user/lib/include/locale.h
@@ -67,4 +67,7 @@ static inline struct lconv *localeconv(void) {
return &locale;
}
-char *setlocale(int category, const char *locale);
+static inline char *setlocale(int category, const char *locale) {
+ (void)category; (void)locale;
+ return NULL;
+}