mirror of git://sourceware.org/git/glibc.git
Update.
2003-12-16 Petter Reinholdtsen <pere@hungry.com> * posix/regex_internal.h: Make sure the regex code compile with non-GCC compilers by hiding attributes.
This commit is contained in:
parent
457beec8d7
commit
93226feb21
|
|
@ -1,3 +1,8 @@
|
||||||
|
2003-12-16 Petter Reinholdtsen <pere@hungry.com>
|
||||||
|
|
||||||
|
* posix/regex_internal.h: Make sure the regex code compile
|
||||||
|
with non-GCC compilers by hiding attributes.
|
||||||
|
|
||||||
2002-12-16 Jakub Jelinek <jakub@redhat.com>
|
2002-12-16 Jakub Jelinek <jakub@redhat.com>
|
||||||
Paolo Bonzini <bonzini@gnu.org>
|
Paolo Bonzini <bonzini@gnu.org>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -107,9 +107,9 @@
|
||||||
#endif /* not _LIBC */
|
#endif /* not _LIBC */
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
# define __attribute __attribute__
|
# define __attribute(arg) __attribute__ (arg)
|
||||||
#else
|
#else
|
||||||
# define __attribute
|
# define __attribute(arg)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern const char __re_error_msgid[] attribute_hidden;
|
extern const char __re_error_msgid[] attribute_hidden;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue