diff options
Diffstat (limited to 'src/threads/thrd_equal.c')
-rw-r--r-- | src/threads/thrd_equal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/threads/thrd_equal.c b/src/threads/thrd_equal.c index 7d072c2c..dd61e6c1 100644 --- a/src/threads/thrd_equal.c +++ b/src/threads/thrd_equal.c @@ -9,7 +9,7 @@ int thrd_equal(thrd_t thr0, thrd_t thr1) return pthread_equal(thr0, thr1); } -__check_2(int, 0, thrd_equal, thrd_t, thrd_t) +CHECK_2(int, 0, thrd_equal, thrd_t, thrd_t) /* STDC(201112) |