1994-05-25 03:40:06 +04:00
|
|
|
/*
|
1995-04-29 03:19:22 +04:00
|
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
|
|
* Public domain.
|
1994-05-25 03:40:06 +04:00
|
|
|
*/
|
|
|
|
|
1994-09-29 07:57:04 +03:00
|
|
|
#include <sys/localedef.h>
|
1994-05-25 03:40:06 +04:00
|
|
|
#include <locale.h>
|
|
|
|
|
|
|
|
const _NumericLocale _DefaultNumericLocale =
|
|
|
|
{
|
|
|
|
".",
|
|
|
|
"",
|
|
|
|
""
|
|
|
|
};
|
|
|
|
|
|
|
|
const _NumericLocale *_CurrentNumericLocale = &_DefaultNumericLocale;
|