Skip to content

Commit

Permalink
* include/libc-symbols.h (symbol_set_declare): Use arrays of unspeci…
Browse files Browse the repository at this point in the history
…fied size.

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

        * include/libc-symbols.h (symbol_set_declare): Use arrays
        of unspecified size.
  • Loading branch information
Richard Henderson committed Jun 6, 2003
1 parent cc7ee40 commit 6f1e513
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions include/libc-symbols.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6f1e513

Please sign in to comment.