aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-01-29 02:45:13 +0000
committerUlrich Drepper <drepper@redhat.com>2000-01-29 02:45:13 +0000
commit8217ddf5c6137488b6ea5b244f74c7668b800f83 (patch)
tree0a368d57b7770099c5a2933ac639f938f3eeb216
parent053cc7bbc8ff66ab81f3e1d3ed89900785acd06f (diff)
downloadglibc-8217ddf5c6137488b6ea5b244f74c7668b800f83.tar
glibc-8217ddf5c6137488b6ea5b244f74c7668b800f83.tar.gz
glibc-8217ddf5c6137488b6ea5b244f74c7668b800f83.tar.bz2
glibc-8217ddf5c6137488b6ea5b244f74c7668b800f83.zip
Add initializers for new fields.
-rw-r--r--locale/C-monetary.c10
-rw-r--r--locale/C-numeric.c10
2 files changed, 12 insertions, 8 deletions
diff --git a/locale/C-monetary.c b/locale/C-monetary.c
index d82166c6fc..6c7b4587f9 100644
--- a/locale/C-monetary.c
+++ b/locale/C-monetary.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1995.
@@ -33,11 +33,11 @@ const struct locale_data _nl_C_LC_MONETARY =
_nl_C_name,
NULL, 0, 0, /* no file mapped */
UNDELETABLE,
- 43,
+ 45,
{
{ string: "" },
{ string: "" },
- { string: "" },
+ { string: "." },
{ string: "" },
{ string: "" },
{ string: "" },
@@ -77,6 +77,8 @@ const struct locale_data _nl_C_LC_MONETARY =
{ word: 10101 },
{ word: 99991231 },
{ word: 1 },
- { word: 1 }
+ { word: 1 },
+ { wstr: (uint32_t *) L"." },
+ { wstr: (uint32_t *) L"" }
}
};
diff --git a/locale/C-numeric.c b/locale/C-numeric.c
index d42c5266be..00c692799f 100644
--- a/locale/C-numeric.c
+++ b/locale/C-numeric.c
@@ -1,6 +1,6 @@
-/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
+ Contributed by Ulrich Drepper <drepper@cygnus.com>, 1995.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
@@ -32,10 +32,12 @@ const struct locale_data _nl_C_LC_NUMERIC =
_nl_C_name,
NULL, 0, 0, /* no file mapped */
UNDELETABLE,
- 3,
+ 5,
{
{ string: "." },
{ string: "" },
- { string: not_available }
+ { string: not_available },
+ { wstr: (uint32_t *) L"." },
+ { wstr: (uint32_t *) L"" }
}
};