fb689271ce7affd0171368005ceebc03abcf6cff
[musl] / src / thread / pthread_mutex_init.c
1 #include "pthread_impl.h"
2
3 int pthread_mutex_init(pthread_mutex_t *restrict m, const pthread_mutexattr_t *restrict a)
4 {
5         memset(m, 0, sizeof *m);
6         if (a) m->_m_type = *a & 7;
7         return 0;
8 }