use weak aliases rather than function pointers to simplify some code
[musl] / src / thread / pthread_mutex_lock.c
1 #include "pthread_impl.h"
2
3 int pthread_mutex_lock(pthread_mutex_t *m)
4 {
5         return pthread_mutex_timedlock(m, 0);
6 }