xref: /openbsd/lib/libc/locale/_def_numeric.c (revision 404b540a)
1 /*	$OpenBSD: _def_numeric.c,v 1.4 2005/08/08 08:05:35 espie Exp $ */
2 /*
3  * Written by J.T. Conklin <jtc@netbsd.org>.
4  * Public domain.
5  */
6 
7 #include <sys/localedef.h>
8 #include <locale.h>
9 
10 const _NumericLocale _DefaultNumericLocale =
11 {
12 	".",
13 	"",
14 	""
15 };
16 
17 const _NumericLocale *_CurrentNumericLocale = &_DefaultNumericLocale;
18