Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[BZ #1201]
	* posix/regex.h: g++ still cannot handled [restrict].
  • Loading branch information
Ulrich Drepper committed May 2, 2006
1 parent d2dc7b0 commit 5631e74
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
@@ -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.
Expand Down
4 changes: 4 additions & 0 deletions localedata/ChangeLog
@@ -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.

Expand Down
6 changes: 3 additions & 3 deletions localedata/locales/de_DE
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion posix/regex.h
Expand Up @@ -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
Expand Down

0 comments on commit 5631e74

Please sign in to comment.