summaryrefslogtreecommitdiff
path: root/src/threads/cnd_broadcast.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/cnd_broadcast.c')
-rw-r--r--src/threads/cnd_broadcast.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/threads/cnd_broadcast.c b/src/threads/cnd_broadcast.c
index 58a6a199..5253c1e8 100644
--- a/src/threads/cnd_broadcast.c
+++ b/src/threads/cnd_broadcast.c
@@ -9,6 +9,8 @@ int cnd_broadcast(cnd_t *cond)
return pthread_cond_broadcast(cond) == 0 ? thrd_success : thrd_error;
}
+__check_1(int, 0, cnd_broadcast, cnd_t *)
+
/*
STDC(201112)
*/