glibc/locale/C-address.c
Florian Weimer 7ee41feba6 locale: Remove private union from struct __locale_data
This avoids an alias violation later.  This commit also fixes
an incorrect double-checked locking idiom in _nl_init_era_entries.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
2022-05-23 11:06:31 +02:00

49 lines
1.4 KiB
C

/* Copyright (C) 1998-2022 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#include <endian.h>
#include "localeinfo.h"
/* This table's entries are taken from ISO 14652, the table in section
4.10 "LC_ADDRESS". */
const struct __locale_data _nl_C_LC_ADDRESS attribute_hidden =
{
_nl_C_name,
NULL, 0, 0, /* no file mapped */
NULL, /* No cached data. */
UNDELETABLE,
0,
13,
{
{ .string = "%a%N%f%N%d%N%b%N%s %h %e %r%N%C-%z %T%N%c%N" },
{ .string = "" },
{ .string = "" },
{ .string = "" },
{ .string = "" },
{ .string = "" },
{ .word = 0 },
{ .string = "" },
{ .string = "" },
{ .string = "" },
{ .string = "" },
{ .string = "" },
{ .string = _nl_C_codeset }
}
};