]> pd.if.org Git - pdclib/blob - opt/nothread/tss_delete.c
dos2unix
[pdclib] / opt / nothread / tss_delete.c
1 #ifndef REGTEST
2 #include <threads.h>
3
4 void tss_delete(tss_t key)
5 {
6         key.self->self = NULL;
7 }
8 #endif
9
10 #ifdef TEST
11 #include "_PDCLIB_test.h"
12
13 /* Tested in tss_get.c */
14 int main( void )
15 {
16     return TEST_RESULTS;
17 }
18
19 #endif