fix localeconv values and implementation
authorRich Felker <dalias@aerifal.cx>
Wed, 20 Jun 2012 02:44:08 +0000 (22:44 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 20 Jun 2012 02:44:08 +0000 (22:44 -0400)
commit85a3ba3a289aa1e0d6cb8ad95f6f358a245a9422
treeab405b0c0d0dd99bdad56cf9ec9824ac9d22a14a
parentee96c50d4bac709f02f7007ecf669952d56f1b2d
fix localeconv values and implementation

dynamic-allocation of the structure is not valid; it can crash an
application if malloc fails. since localeconv is not specified to have
failure conditions, the object needs to have static storage duration.

need to review whether all the values are right or not still..
src/locale/localeconv.c