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.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/threads/tss_set.c b/src/threads/tss_set.c
index 899bd071..2314d417 100644
--- a/src/threads/tss_set.c
+++ b/src/threads/tss_set.c
@@ -5,3 +5,7 @@ int tss_set(tss_t key, void *val)
{
return pthread_setspecific(key, val) == 0 ? thrd_success : thrd_error;
}
+
+/*
+STDC(201112)
+*/