#define _STDLIB_DEBUG #include #include #include #include #include #include int main(int argc, char **argv) { setlocale(LC_ALL, "C"); struct lconv *c = localeconv(); printf("%s\n",c->negative_sign); return 0; }