]> pd.if.org Git - pdclib/blob - opt/nothread/cnd_wait.c
PDCLib includes with quotes, not <>.
[pdclib] / opt / nothread / cnd_wait.c
1 #ifndef REGTEST\r
2 #include <threads.h>\r
3 \r
4 int cnd_wait(cnd_t *cond, mtx_t *mtx)\r
5 {\r
6         return thrd_error;\r
7 }\r
8 #endif\r
9 \r
10 #ifdef TEST\r
11 #include "_PDCLIB_test.h"\r
12 \r
13 int main( void )\r
14 {\r
15     return TEST_RESULTS;\r
16 }\r
17 \r
18 #endif\r