1 /* 2 * Written by J.T. Conklin <jtc@netbsd.org>. 3 * Public domain. 4 */ 5 6 #if defined(LIBC_SCCS) && !defined(lint) 7 static char rcsid[] = "$OpenBSD: _def_numeric.c,v 1.3 1997/07/23 21:14:39 kstailey Exp $"; 8 #endif /* LIBC_SCCS and not lint */ 9 10 #include <sys/localedef.h> 11 #include <locale.h> 12 13 const _NumericLocale _DefaultNumericLocale = 14 { 15 ".", 16 "", 17 "" 18 }; 19 20 const _NumericLocale *_CurrentNumericLocale = &_DefaultNumericLocale; 21