summaryrefslogtreecommitdiff
path: root/src/threads/thrd_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/thrd_create.c')
-rw-r--r--src/threads/thrd_create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/threads/thrd_create.c b/src/threads/thrd_create.c
index 2e6a875f..cad1b055 100644
--- a/src/threads/thrd_create.c
+++ b/src/threads/thrd_create.c
@@ -24,7 +24,7 @@ int thrd_create(thrd_t *thr, thrd_start_t func, void *arg)
return thrd_error;
}
-__check_3(int, 0, thrd_create, thrd_t *, thrd_start_t, void *)
+CHECK_3(int, 0, thrd_create, thrd_t *, thrd_start_t, void *)
/*
STDC(201112)