]> pd.if.org Git - pdclib/blob - opt/nothread/tss_set.c
* Change the style of inclusion of the internal/ headers. Modern preprocessors
[pdclib] / opt / nothread / tss_set.c
1 #include <threads.h>\r
2 \r
3 int tss_set(tss_t key, void *val)\r
4 {\r
5         key.self->value = val;\r
6         return thrd_success;\r
7 }