summaryrefslogtreecommitdiff
path: root/src/threads/tss_set.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/tss_set.c')
-rw-r--r--src/threads/tss_set.c2
1 files changed, 2 insertions, 0 deletions
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)
*/