scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

localeconv.c (431B)


      1 #include <locale.h>
      2 #include <limits.h>
      3 #undef localeconv
      4 
      5 struct lconv *
      6 localeconv(void)
      7 {
      8 	static struct lconv lc = { ".", "", "", "", "", "", "", "", "", "",
      9 	                           CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX,
     10 	                           CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX,
     11 	                           CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX,
     12 	                           CHAR_MAX, CHAR_MAX };
     13 	return &lc;
     14 }