]> pd.if.org Git - pdclib/blob - opt/nothread/mtx_destroy.c
dos2unix
[pdclib] / opt / nothread / mtx_destroy.c
1 #ifndef REGTEST
2 #include <threads.h>
3
4 void mtx_destroy(mtx_t *mtx)
5 {}
6 #endif
7
8 #ifdef TEST
9 #include "_PDCLIB_test.h"
10
11 int main( void )
12 {
13     return TEST_RESULTS;
14 }
15
16 #endif