shithub: npe

ref: 4c1fa073c7d7fff3c4e21717fcb0ad81a9ab3cf7
dir: /libnpe_pthread/pthread_mutex_unlock.c/

View raw version
#include "_pthread.h"

int
pthread_mutex_unlock(pthread_mutex_t *const mutex)
{
    qunlock(mutex);
    return 0;
}