1997-04-29 20:40:13 +04:00
|
|
|
/* $NetBSD: _def_numeric.c,v 1.4 1997/04/29 16:40:16 kleink Exp $ */
|
|
|
|
|
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;
|