BizHawk/waterbox/libc/functions/time/timespec_get.c

19 lines
204 B
C

#include <time.h>
#ifndef REGTEST
int timespec_get( struct timespec *ts, int base )
{
return 0;
}
#endif
#ifdef TEST
#include "_PDCLIB_test.h"
int main( void )
{
return TEST_RESULTS;
}
#endif