]> pd.if.org Git - pdclib/blobdiff - opt/nothread/mtx_timedlock.c
PDCLib includes with quotes, not <>.
[pdclib] / opt / nothread / mtx_timedlock.c
index b8166b5b97cfee37b74271635a5114db62e19b11..047dce63beb5368baa485199f57b9af3da75a1e5 100644 (file)
@@ -1,6 +1,18 @@
+#ifndef REGTEST\r
 #include <threads.h>\r
 \r
 int mtx_timedlock(mtx_t *restrict mtx, const struct timespec *restrict ts)\r
 {\r
        return mtx_lock(mtx);\r
-}
\ No newline at end of file
+}\r
+#endif\r
+\r
+#ifdef TEST\r
+#include "_PDCLIB_test.h"\r
+\r
+int main( void )\r
+{\r
+    return TEST_RESULTS;\r
+}\r
+\r
+#endif\r