summaryrefslogtreecommitdiff
path: root/src/thread/thrd_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/thrd_create.c')
-rw-r--r--src/thread/thrd_create.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/thread/thrd_create.c b/src/thread/thrd_create.c
index e0336695..76a683db 100644
--- a/src/thread/thrd_create.c
+++ b/src/thread/thrd_create.c
@@ -1,8 +1,6 @@
#include "pthread_impl.h"
#include <threads.h>
-int __pthread_create(pthread_t *restrict, const pthread_attr_t *restrict, void *(*)(void *), void *restrict);
-
int thrd_create(thrd_t *thr, thrd_start_t func, void *arg)
{
int ret = __pthread_create(thr, __ATTRP_C11_THREAD, (void *(*)(void *))func, arg);