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