]> pd.if.org Git - pdclib/blob - opt/nothread/thrd_yield.c
Cosmetic comment fixes.
[pdclib] / opt / nothread / thrd_yield.c
1 #ifndef REGTEST
2 #include <threads.h>
3
4 void thrd_yield(void)
5 {
6         /* does nothing */
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