Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2009-06-16 23:45:17 +0400
committerCorinna Vinschen <corinna@vinschen.de>2009-06-16 23:45:17 +0400
commit999820f6ab8aaf6a281dbb919341fcf2a2f3d119 (patch)
treefc0402507b25fef6a5b6960efa9431a4511749dc
parent4844eaa5f8be7786ade8f681bf376e8a21dd735b (diff)
* libc/include/locale.h (struct lconv): Add missing members required
by POSIX.1-2008. * libc/locale/locale.c (lconv): Initialize new members to default values in "C" locale.
-rw-r--r--newlib/ChangeLog7
-rw-r--r--newlib/libc/include/locale.h6
-rw-r--r--newlib/libc/locale/locale.c2
3 files changed, 15 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 1378cbb76..21d31f7b7 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,4 +1,11 @@
2009-06-16 Corinna Vinschen <corinna@vinschen.de>
+
+ * libc/include/locale.h (struct lconv): Add missing members required
+ by POSIX.1-2008.
+ * libc/locale/locale.c (lconv): Initialize new members to default
+ values in "C" locale.
+
+2009-06-16 Corinna Vinschen <corinna@vinschen.de>
* libc/stdio/vfprintf.c (_VFPRINTF_R): Use actual length of
radix char instead of assuming length 1.
diff --git a/newlib/libc/include/locale.h b/newlib/libc/include/locale.h
index ebe1422fe..fa5c270fc 100644
--- a/newlib/libc/include/locale.h
+++ b/newlib/libc/include/locale.h
@@ -43,6 +43,12 @@ struct lconv
char n_sep_by_space;
char p_sign_posn;
char n_sign_posn;
+ char int_n_cs_precedes;
+ char int_n_sep_by_space;
+ char int_n_sign_posn;
+ char int_p_cs_precedes;
+ char int_p_sep_by_space;
+ char int_p_sign_posn;
};
#ifndef _REENT_ONLY
diff --git a/newlib/libc/locale/locale.c b/newlib/libc/locale/locale.c
index 6349bd9ad..3b2ffb9d3 100644
--- a/newlib/libc/locale/locale.c
+++ b/newlib/libc/locale/locale.c
@@ -160,6 +160,8 @@ static _CONST struct lconv lconv =
".", "", "", "", "", "", "", "", "", "",
CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX,
CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX,
+ CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX,
+ CHAR_MAX, CHAR_MAX
};
#ifdef _MB_CAPABLE