blob: a8f7aeb5013e085188958e9a872208e543eaa999 [file] [log] [blame]
/*
* time.c
*/
#include <time.h>
#include <sys/time.h>
#include <sys/syscall.h>
#ifndef __NR_time
time_t time(time_t *t)
{
struct timeval tv;
gettimeofday(&tv, NULL);
if ( t )
*t = (time_t)tv.tv_sec;
return (time_t)tv.tv_sec;
}
#endif