Changee __attribute(__weak__) to __weak_reference(). Produces same object code

and matches lib/csu/common_elf/common.h.  Fixes linkage with PCC.
This commit is contained in:
gmcgarry 2008-08-17 10:51:19 +00:00
parent e5321bd81b
commit 77023558e8

View File

@ -1,4 +1,4 @@
/* $NetBSD: nsdispatch.c,v 1.32 2008/04/28 20:23:00 martin Exp $ */
/* $NetBSD: nsdispatch.c,v 1.33 2008/08/17 10:51:19 gmcgarry Exp $ */
/*-
* Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc.
@ -63,7 +63,7 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: nsdispatch.c,v 1.32 2008/04/28 20:23:00 martin Exp $");
__RCSID("$NetBSD: nsdispatch.c,v 1.33 2008/08/17 10:51:19 gmcgarry Exp $");
#endif /* LIBC_SCCS and not lint */
#include "namespace.h"
@ -173,7 +173,7 @@ static mutex_t _ns_drec_lock = MUTEX_INITIALIZER;
* Runtime determination of whether we are dynamically linked or not.
*/
#ifdef __ELF__
extern int _DYNAMIC __attribute__((__weak__));
extern int _DYNAMIC __weak_reference(_DYNAMIC);
#define is_dynamic() (&_DYNAMIC != NULL)
#else
#define is_dynamic() (0) /* don't bother - switch to ELF! */