* posix/regex.h: g++ still cannot handled [restrict].
This commit is contained in:
Ulrich Drepper 2006-05-02 21:55:00 +00:00
parent d2dc7b0816
commit 5631e740ff
4 changed files with 12 additions and 4 deletions

View file

@ -1,5 +1,8 @@
2006-05-02 Ulrich Drepper <drepper@redhat.com>
[BZ #1201]
* posix/regex.h: g++ still cannot handled [restrict].
[BZ #2509]
* stdio-common/vfprintf.c (process_arg): Fix reading of signed
short and byte values from parameter list.

View file

@ -1,5 +1,9 @@
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
tr_CY.UTF-8.

View file

@ -150,9 +150,9 @@ d_fmt "<U0025><U0064><U002E><U0025><U006D><U002E><U0025><U0059>"
% "%T"
t_fmt "<U0025><U0054>"
t_fmt_ampm ""
date_fmt "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065>/
<U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020>/
<U0025><U005A><U0020><U0025><U0059>"
date_fmt "<U0025><U0061><U0020><U0025><U002D><U0064><U002E><U0020>/
<U0025><U0062><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053>/
<U0020><U0025><U005A><U0020><U0025><U0059>"
END LC_TIME
LC_MESSAGES

View file

@ -525,7 +525,8 @@ extern int re_exec (const char *);
#endif
/* gcc 3.1 and up support the [restrict] syntax. */
#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
# else
# define __restrict_arr