diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2008-06-13 21:18:44 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2008-06-13 21:18:44 +0000 |
commit | f1f39c97df92318738c74a2c9c6e84d298054e32 (patch) | |
tree | b246253db7c5965ce2fc558c65d804e823a5b6ea /lib/libc/thread/unithread_malloc_lock.c | |
parent | ba65de2ed207d73f6640130f2afd026c6889f953 (diff) |
remove _MALLOC_LOCK_INIT; major bump; ok deraadt@
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; |