mirror of
https://github.com/fluencelabs/musl
synced 2025-05-23 12:41:32 +00:00
10 lines
160 B
C
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;
|
||
|
}
|