]> pd.if.org Git - pdclib/blob - opt/nothread/mtx_init.c
ff506e94e03e5ee67cde2b95fb831c990dea9eab
[pdclib] / opt / nothread / mtx_init.c
1 #include <threads.h>\r
2 \r
3 int mtx_init(mtx_t *mtx, int type)\r
4 {\r
5         *mtx = 0;\r
6         return thrd_success;\r
7 }\r