summaryrefslogtreecommitdiff
path: root/src/threads/cnd_destroy.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-30 23:23:22 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-30 23:23:22 -0500
commit9222a64f2e86db0d94b977d79c274d1d07003b0a (patch)
tree0d3952b0a30ab85c3fc112d1d10e2391c1be4256 /src/threads/cnd_destroy.c
parent2a381114dae8832b6ce9459e769533164bb6e4ec (diff)
update to 1:1 checked functions
Diffstat (limited to 'src/threads/cnd_destroy.c')
-rw-r--r--src/threads/cnd_destroy.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/threads/cnd_destroy.c b/src/threads/cnd_destroy.c
index 07cee092..32b0d2c6 100644
--- a/src/threads/cnd_destroy.c
+++ b/src/threads/cnd_destroy.c
@@ -9,6 +9,8 @@ void cnd_destroy(cnd_t *cond)
pthread_cond_destroy(cond);
}
+__vcheck_1(cnd_destroy, cnd_t *)
+
/*
STDC(201112)
*/