xref: /openbsd-src/lib/libc/locale/_def_numeric.c (revision a28daedfc357b214be5c701aa8ba8adb29a7f1c2)
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