summaryrefslogtreecommitdiffhomepage
path: root/src/thread/nt32/pthread_detach.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/nt32/pthread_detach.c')
-rw-r--r--src/thread/nt32/pthread_detach.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/thread/nt32/pthread_detach.c b/src/thread/nt32/pthread_detach.c
new file mode 100644
index 0000000..85db4cb
--- /dev/null
+++ b/src/thread/nt32/pthread_detach.c
@@ -0,0 +1,6 @@
+#include "../pthread_detach.c"
+
+int __pthread_detach_impl(pthread_t t)
+{
+ return thrd_detach(t);
+}