#include #ifndef __NR_time #include #include time_t time(time_t *foo) { struct timeval tv; gettimeofday(&tv,0); if (foo) *foo=tv.tv_sec; return tv.tv_sec; } #endif