From f87cd5a2293c048a211709b1bfa737d3f65bd9b4 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 9 Sep 1995 00:01:05 +0000 Subject: * libc-symbols.h [HAVE_ELF] (symbol_set_declare): Declare the symbols weak. --- libc-symbols.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libc-symbols.h') diff --git a/libc-symbols.h b/libc-symbols.h index 8030abb..5eefbed 100644 --- a/libc-symbols.h +++ b/libc-symbols.h @@ -214,7 +214,8 @@ Cambridge, MA 02139, USA. */ /* Declare SET for use in this module, if defined in another module. */ #define symbol_set_declare(set) \ - extern void *const __start_##set, *const __stop_##set; + extern void *const __start_##set __attribute__ ((__weak__)); \ + extern void *const __stop_##set __attribute__ ((__weak__)); /* Return a pointer (void *const *) to the first element of SET. */ #define symbol_set_first_element(set) (&__start_##set) -- cgit v1.1