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

20 lines
191 B
C

#include <time.h>
#ifndef REGTEST
time_t time(time_t* t)
{
if(t) *t = -1;
return -1;
}
#endif
#ifdef TEST
#include "_PDCLIB_test.h"
int main( void )
{
return TEST_RESULTS;
}
#endif