1 /*	$OpenBSD: unithread_malloc_lock.c,v 1.5 2004/06/07 21:11:23 marc Exp $	*/
2 
3 #include <sys/time.h>
4 #include "thread_private.h"
5 
6 WEAK_PROTOTYPE(_thread_malloc_lock);
7 WEAK_PROTOTYPE(_thread_malloc_unlock);
8 WEAK_PROTOTYPE(_thread_malloc_init);
9 
10 WEAK_ALIAS(_thread_malloc_lock);
11 WEAK_ALIAS(_thread_malloc_unlock);
12 WEAK_ALIAS(_thread_malloc_init);
13 
14 void
WEAK_NAME(_thread_malloc_lock)15 WEAK_NAME(_thread_malloc_lock)(void)
16 {
17 	return;
18 }
19 
20 void
WEAK_NAME(_thread_malloc_unlock)21 WEAK_NAME(_thread_malloc_unlock)(void)
22 {
23 	return;
24 }
25 
26 void
WEAK_NAME(_thread_malloc_init)27 WEAK_NAME(_thread_malloc_init)(void)
28 {
29 	return;
30 }
31