From 9222a64f2e86db0d94b977d79c274d1d07003b0a Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 30 Jan 2024 23:23:22 -0500 Subject: update to 1:1 checked functions --- src/threads/cnd_timedwait.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/threads/cnd_timedwait.c') diff --git a/src/threads/cnd_timedwait.c b/src/threads/cnd_timedwait.c index 5758183e..dfa13b93 100644 --- a/src/threads/cnd_timedwait.c +++ b/src/threads/cnd_timedwait.c @@ -21,6 +21,8 @@ int cnd_timedwait(cnd_t *restrict cond, mtx_t *restrict mtx, const struct timesp return thrd_error; } +__check_3(int, 0, cnd_timedwait, cnd_t * restrict, mtx_t * restrict, const struct timespec * restrict) + /* STDC(201112) */ -- cgit v1.2.1