complex: make _Complex_I work with gcc -std=c99 -pedantic-errors
[musl] / src / locale / setlocale.c
1 #include <locale.h>
2
3 char *setlocale(int category, const char *locale)
4 {
5         /* Note: plain "C" would be better, but puts some broken
6          * software into legacy 8-bit-codepage mode, ignoring
7          * the standard library's multibyte encoding */
8         return "C.UTF-8";
9 }