blob: 6996fa038050788077b6ce16b3830ce7a614febd [file] [log] [blame]
#include <runtime/mutex.h>
#include <threads.h>
int mtx_unlock(mtx_t* m) {
mxr_mutex_unlock((mxr_mutex_t*)&m->__i);
return thrd_success;
}