summaryrefslogtreecommitdiff
path: root/src/threads/mtx_unlock.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/mtx_unlock.c')
-rw-r--r--src/threads/mtx_unlock.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/threads/mtx_unlock.c b/src/threads/mtx_unlock.c
new file mode 100644
index 00000000..5998f8c9
--- /dev/null
+++ b/src/threads/mtx_unlock.c
@@ -0,0 +1,7 @@
+#include <threads.h>
+#include <pthread.h>
+
+int mtx_unlock(mtx_t *mtx)
+{
+ return mtx_unlock(mtx);
+}