pthread_rwlock_destroy.c 91 B

123456
  1. #include "pthread_impl.h"
  2. int pthread_rwlock_destroy(pthread_rwlock_t *rw)
  3. {
  4. return 0;
  5. }