X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=m4%2Fposix%2Flocale.m4;fp=m4%2Fposix%2Flocale.m4;h=0000000000000000000000000000000000000000;hp=64cd66f700d03a865032de896922184db9e40819;hb=4174d499fe105c6d8bd76d265e28e07f0db08b55;hpb=f090ccb51eb2ecc92a6cca8325c77d688cbbb61d diff --git a/m4/posix/locale.m4 b/m4/posix/locale.m4 deleted file mode 100644 index 64cd66f..0000000 --- a/m4/posix/locale.m4 +++ /dev/null @@ -1,54 +0,0 @@ -PSI_CHECK_LOCALE() { - PSI_STRUCT(struct lconv, [ - char *currency_symbol, - char *decimal_point, - char frac_digits, - char *grouping, - char *int_curr_symbol, - char int_frac_digits, - char int_n_cs_precedes, - char int_n_sep_by_space, - char int_n_sign_posn, - char int_p_cs_precedes, - char int_p_sep_by_space, - char int_p_sign_posn, - char *mon_decimal_point, - char *mon_grouping, - char *mon_thousands_sep, - char *negative_sign, - char n_cs_precedes, - char n_sep_by_space, - char n_sign_posn, - char *positive_sign, - char p_cs_precedes, - char p_sep_by_space, - char p_sign_posn, - char *thousands_sep]) - - PSI_CONST(LC_ALL, int) - PSI_CONST(LC_COLLATE, int) - PSI_CONST(LC_CTYPE, int) - PSI_CONST(LC_MESSAGES, int) - PSI_CONST(LC_MONETARY, int) - PSI_CONST(LC_NUMERIC, int) - PSI_CONST(LC_TIME, int) - - PSI_CONST(LC_COLLATE_MASK, int) - PSI_CONST(LC_CTYPE_MASK, int) - PSI_CONST(LC_MESSAGES_MASK, int) - PSI_CONST(LC_MONETARY_MASK, int) - PSI_CONST(LC_NUMERIC_MASK, int) - PSI_CONST(LC_TIME_MASK, int) - PSI_CONST(LC_ALL_MASK, int) - - PSI_MACRO(locale_t LC_GLOBAL_LOCALE) - - PSI_OPAQUE_TYPE(locale_t) - - PSI_DECL(locale_t duplocale, [(locale_t loc)]) - PSI_DECL(void freelocale, [(locale_t loc)]) - PSI_DECL(struct lconv *localeconv, [(void)]) - PSI_DECL(locale_t newlocale, [(int mask, const char *locale, locale_t base)]) - PSI_DECL(char *setlocale, [(int category, const char *locale)]) - PSI_DECL(locale_t uselocale, [(locale_t loc)]) -}