Home | History | Annotate | Download | only in Locale
      1 /*  $NetBSD: _def_numeric.c,v 1.6 2005/06/12 05:21:27 lukem Exp $ */
      2 
      3 /*
      4  * Written by J.T. Conklin <jtc (at) NetBSD.org>.
      5  * Public domain.
      6  */
      7 #include  <LibConfig.h>
      8 #include  <sys/EfiCdefs.h>
      9 #if defined(LIBC_SCCS) && !defined(lint)
     10 __RCSID("$NetBSD: _def_numeric.c,v 1.6 2005/06/12 05:21:27 lukem Exp $");
     11 #endif /* LIBC_SCCS and not lint */
     12 
     13 #include <sys/localedef.h>
     14 #include <locale.h>
     15 
     16 const _NumericLocale _DefaultNumericLocale =
     17 {
     18   ".",
     19   "",
     20   ""
     21 };
     22 
     23 const _NumericLocale *_CurrentNumericLocale = &_DefaultNumericLocale;
     24