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