
lconv is taken from ndk/sources/android/support/include/locale.h and matches bsd/glibc upstream. Keep old declaration for 32-bits for compatibility. localeconv.c and deps are taken from openbsd upstream. Changed strtod.c accordingly. Change-Id: I9fcc4d15f5674d192950d80edf26f36006cd31b4 Signed-off-by: Pavel Chupin <pavel.v.chupin@intel.com>
31 lines
457 B
C
31 lines
457 B
C
/* $OpenBSD: _def_monetary.c,v 1.4 2005/08/08 08:05:35 espie Exp $ */
|
|
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <sys/localedef.h>
|
|
#include <limits.h>
|
|
#include <locale.h>
|
|
|
|
const _MonetaryLocale _DefaultMonetaryLocale =
|
|
{
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
CHAR_MAX,
|
|
CHAR_MAX,
|
|
CHAR_MAX,
|
|
CHAR_MAX,
|
|
CHAR_MAX,
|
|
CHAR_MAX,
|
|
CHAR_MAX,
|
|
CHAR_MAX
|
|
};
|
|
|
|
const _MonetaryLocale *_CurrentMonetaryLocale = &_DefaultMonetaryLocale;
|