1
0
mirror of https://github.com/fluencelabs/musl synced 2025-07-18 16:02:00 +00:00
Files
musl/src/thread/pthread_mutex_init.c

10 lines
154 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include "pthread_impl.h"
int pthread_mutex_init(pthread_mutex_t *m, const pthread_mutexattr_t *a)
{
memset(m, 0, sizeof *m);
if (a) {
}
return 0;
}