From: Ulrich Drepper Date: Tue, 16 Dec 2003 19:52:22 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/ChangeLog~154 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=93226feb21300d173d293a25f10e83d7426c9f6f;p=thirdparty%2Fglibc.git Update. 2003-12-16 Petter Reinholdtsen * posix/regex_internal.h: Make sure the regex code compile with non-GCC compilers by hiding attributes. --- diff --git a/ChangeLog b/ChangeLog index f852b850a25..0dd06a51983 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-12-16 Petter Reinholdtsen + + * posix/regex_internal.h: Make sure the regex code compile + with non-GCC compilers by hiding attributes. + 2002-12-16 Jakub Jelinek Paolo Bonzini diff --git a/posix/regex_internal.h b/posix/regex_internal.h index 214f7af6c0c..ea9a30c16e7 100644 --- a/posix/regex_internal.h +++ b/posix/regex_internal.h @@ -107,9 +107,9 @@ #endif /* not _LIBC */ #ifdef __GNUC__ -# define __attribute __attribute__ +# define __attribute(arg) __attribute__ (arg) #else -# define __attribute +# define __attribute(arg) #endif extern const char __re_error_msgid[] attribute_hidden;