Files
musl/src/thread/pthread_rwlockattr_getpshared.c

8 lines
144 B
C
Raw Normal View History

#include "pthread_impl.h"
int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *a, int *pshared)
{
*pshared = *(int *)a;
return 0;
}