24 lines
500 B
C
24 lines
500 B
C
|
/* $NetBSD: _def_numeric.c,v 1.6 2005/06/12 05:21:27 lukem Exp $ */
|
||
|
|
||
|
/*
|
||
|
* Written by J.T. Conklin <jtc@NetBSD.org>.
|
||
|
* Public domain.
|
||
|
*/
|
||
|
|
||
|
#include <sys/cdefs.h>
|
||
|
#if defined(LIBC_SCCS) && !defined(lint)
|
||
|
__RCSID("$NetBSD: _def_numeric.c,v 1.6 2005/06/12 05:21:27 lukem Exp $");
|
||
|
#endif /* LIBC_SCCS and not lint */
|
||
|
|
||
|
#include <sys/localedef.h>
|
||
|
#include <locale.h>
|
||
|
|
||
|
const _NumericLocale _DefaultNumericLocale =
|
||
|
{
|
||
|
".",
|
||
|
"",
|
||
|
""
|
||
|
};
|
||
|
|
||
|
const _NumericLocale *_CurrentNumericLocale = &_DefaultNumericLocale;
|