]> pd.if.org Git - pdclib/blob - opt/nothread/thrd_yield.c
Unit tests
[pdclib] / opt / nothread / thrd_yield.c
1 #include <threads.h>\r
2 \r
3 void thrd_yield(void)\r
4 {\r
5         /* does nothing */\r
6 }\r
7 \r
8 #ifdef TEST\r
9 #include <_PDCLIB_test.h>\r
10 \r
11 int main( void )\r
12 {\r
13     return TEST_RESULTS;\r
14 }\r
15 \r
16 #endif