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/tss_set.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/threads/tss_set.c') diff --git a/src/threads/tss_set.c b/src/threads/tss_set.c index 0e0a7b3c..c6a09f2b 100644 --- a/src/threads/tss_set.c +++ b/src/threads/tss_set.c @@ -9,6 +9,8 @@ int tss_set(tss_t key, void *val) return pthread_setspecific(key, val) == 0 ? thrd_success : thrd_error; } +__check_2(int, 0, tss_set, tss_t, void *) + /* STDC(201112) */ -- cgit v1.2.1