BizHawk/waterbox/libc/functions/nothread/mtx_timedlock.c

19 lines
241 B
C

#ifndef REGTEST
#include <threads.h>
int mtx_timedlock(mtx_t *restrict mtx, const struct timespec *restrict ts)
{
return mtx_lock(mtx);
}
#endif
#ifdef TEST
#include "_PDCLIB_test.h"
int main( void )
{
return TEST_RESULTS;
}
#endif