musl-tcc/src/thread/pthread_rwlock_destroy.c
2022-03-20 16:48:53 +08:00

7 lines
91 B
C

#include "pthread_impl.h"
int pthread_rwlock_destroy(pthread_rwlock_t *rw)
{
return 0;
}