Files
musl/src/thread/pthread_rwlockattr_init.c

8 lines
121 B
C
Raw Normal View History

#include "pthread_impl.h"
int pthread_rwlockattr_init(pthread_rwlockattr_t *a)
{
memset(a, 0, sizeof *a);
return 0;
}