mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 14:11:56 +00:00
8 lines
121 B
C
8 lines
121 B
C
![]() |
#include "pthread_impl.h"
|
||
|
|
||
|
int pthread_rwlockattr_init(pthread_rwlockattr_t *a)
|
||
|
{
|
||
|
memset(a, 0, sizeof *a);
|
||
|
return 0;
|
||
|
}
|