blob: 75ddf02bc129e4398d7ccf1b4bbfc0d0234d2437 [file] [log] [blame]
#include "pthread_impl.h"
int pthread_mutex_init(pthread_mutex_t *m, const pthread_mutexattr_t *a)
{
memset(m, 0, sizeof *m);
if (a) m->_m_type = *a & 7;
return 0;
}