From dd46d4e05f2e301b4d9451bbfabfabbc788975c5 Mon Sep 17 00:00:00 2001 From: deischen Date: Tue, 10 Apr 2001 04:19:21 +0000 Subject: To be consistent, use the __weak_reference macro from instead of #pragma weak to create weak definitions. Suggested by: bde --- lib/libpthread/thread/thr_once.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libpthread/thread/thr_once.c') diff --git a/lib/libpthread/thread/thr_once.c b/lib/libpthread/thread/thr_once.c index dde5474..20e2904 100644 --- a/lib/libpthread/thread/thr_once.c +++ b/lib/libpthread/thread/thr_once.c @@ -34,7 +34,7 @@ #include #include "pthread_private.h" -#pragma weak pthread_once=_pthread_once +__weak_reference(_pthread_once, pthread_once); int _pthread_once(pthread_once_t * once_control, void (*init_routine) (void)) -- cgit v1.1