diff options
Diffstat (limited to 'src/user/lib/include/locale.h')
-rw-r--r-- | src/user/lib/include/locale.h | 5 |
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; +} |