mirror of git://sourceware.org/git/glibc.git
parent
d2dc7b0816
commit
5631e740ff
|
|
@ -1,5 +1,8 @@
|
||||||
2006-05-02 Ulrich Drepper <drepper@redhat.com>
|
2006-05-02 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
[BZ #1201]
|
||||||
|
* posix/regex.h: g++ still cannot handled [restrict].
|
||||||
|
|
||||||
[BZ #2509]
|
[BZ #2509]
|
||||||
* stdio-common/vfprintf.c (process_arg): Fix reading of signed
|
* stdio-common/vfprintf.c (process_arg): Fix reading of signed
|
||||||
short and byte values from parameter list.
|
short and byte values from parameter list.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,9 @@
|
||||||
2006-05-02 Ulrich Drepper <drepper@redhat.com>
|
2006-05-02 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
[BZ #1203]
|
||||||
|
* locales/de_DE: Fix order of day of month and month name in
|
||||||
|
date_fmt. Add period after the day number and avoid padding.
|
||||||
|
|
||||||
* SUPPORTED (SUPPORTED-LOCALES): Add tr_CY.ISO-8859-9 and
|
* SUPPORTED (SUPPORTED-LOCALES): Add tr_CY.ISO-8859-9 and
|
||||||
tr_CY.UTF-8.
|
tr_CY.UTF-8.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -150,9 +150,9 @@ d_fmt "<U0025><U0064><U002E><U0025><U006D><U002E><U0025><U0059>"
|
||||||
% "%T"
|
% "%T"
|
||||||
t_fmt "<U0025><U0054>"
|
t_fmt "<U0025><U0054>"
|
||||||
t_fmt_ampm ""
|
t_fmt_ampm ""
|
||||||
date_fmt "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065>/
|
date_fmt "<U0025><U0061><U0020><U0025><U002D><U0064><U002E><U0020>/
|
||||||
<U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020>/
|
<U0025><U0062><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053>/
|
||||||
<U0025><U005A><U0020><U0025><U0059>"
|
<U0020><U0025><U005A><U0020><U0025><U0059>"
|
||||||
END LC_TIME
|
END LC_TIME
|
||||||
|
|
||||||
LC_MESSAGES
|
LC_MESSAGES
|
||||||
|
|
|
||||||
|
|
@ -525,7 +525,8 @@ extern int re_exec (const char *);
|
||||||
#endif
|
#endif
|
||||||
/* gcc 3.1 and up support the [restrict] syntax. */
|
/* gcc 3.1 and up support the [restrict] syntax. */
|
||||||
#ifndef __restrict_arr
|
#ifndef __restrict_arr
|
||||||
# if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
|
# if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) \
|
||||||
|
&& !defined __GNUG__
|
||||||
# define __restrict_arr __restrict
|
# define __restrict_arr __restrict
|
||||||
# else
|
# else
|
||||||
# define __restrict_arr
|
# define __restrict_arr
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue