diff options
Diffstat (limited to 'lib/libc/thread/unithread_malloc_lock.c')
-rw-r--r-- | lib/libc/thread/unithread_malloc_lock.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/libc/thread/unithread_malloc_lock.c b/lib/libc/thread/unithread_malloc_lock.c index ca5081ba780..920250139b8 100644 --- a/lib/libc/thread/unithread_malloc_lock.c +++ b/lib/libc/thread/unithread_malloc_lock.c @@ -1,15 +1,13 @@ -/* $OpenBSD: unithread_malloc_lock.c,v 1.7 2008/01/01 00:43:39 kurt Exp $ */ +/* $OpenBSD: unithread_malloc_lock.c,v 1.8 2008/06/13 21:18:43 otto Exp $ */ #include <sys/time.h> #include "thread_private.h" WEAK_PROTOTYPE(_thread_malloc_lock); WEAK_PROTOTYPE(_thread_malloc_unlock); -WEAK_PROTOTYPE(_thread_malloc_init); WEAK_ALIAS(_thread_malloc_lock); WEAK_ALIAS(_thread_malloc_unlock); -WEAK_ALIAS(_thread_malloc_init); WEAK_PROTOTYPE(_thread_atexit_lock); WEAK_PROTOTYPE(_thread_atexit_unlock); @@ -36,12 +34,6 @@ WEAK_NAME(_thread_malloc_unlock)(void) } void -WEAK_NAME(_thread_malloc_init)(void) -{ - return; -} - -void WEAK_NAME(_thread_atexit_lock)(void) { return; |