Files
semi-libc/src/thread/pthread_rwlock_init.c
T

10 lines
160 B
C

#include "pthread_impl.h"
int pthread_rwlock_init(pthread_rwlock_t *rw, const pthread_rwlockattr_t *a)
{
memset(rw, 0, sizeof *rw);
if (a) {
}
return 0;
}