
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>
19 lines
350 B
C
19 lines
350 B
C
/* $OpenBSD: _def_messages.c,v 1.5 2005/08/08 08:05:35 espie Exp $ */
|
|
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <sys/localedef.h>
|
|
#include <locale.h>
|
|
|
|
const _MessagesLocale _DefaultMessagesLocale =
|
|
{
|
|
"^[Yy]",
|
|
"^[Nn]",
|
|
"yes",
|
|
"no"
|
|
} ;
|
|
|
|
const _MessagesLocale *_CurrentMessagesLocale = &_DefaultMessagesLocale;
|