* include/libc-symbols.h (symbol_set_declare): Use arrays of unspecified size.

2003-06-04  Richard Henderson  <rth@redhat.com>

        * include/libc-symbols.h (symbol_set_declare): Use arrays
        of unspecified size.
This commit is contained in:
Richard Henderson 2003-06-06 05:43:57 +00:00
parent cc7ee40876
commit 6f1e513dbb
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-06-04 Richard Henderson <rth@redhat.com>
* include/libc-symbols.h (symbol_set_declare): Use arrays
of unspecified size.
2003-06-04 Jakub Jelinek <jakub@redhat.com>
* config.make.in (ASFLAGS-config): New.

View File

@ -350,8 +350,8 @@
For static linking, the set might be wholly absent and so we use
weak references. */
# define symbol_set_declare(set) \
extern void *const __start_##set __symbol_set_attribute; \
extern void *const __stop_##set __symbol_set_attribute;
extern char const __start_##set[] __symbol_set_attribute; \
extern char const __stop_##set[] __symbol_set_attribute;
# ifdef SHARED
# define __symbol_set_attribute attribute_hidden
# else