#include <sys/time.h>

int gettimeofday(struct timeval *restrict tp, void *restrict tzp);

struct timeval {
     time_t       tv_sec;   /* seconds since Jan. 1, 1970 */
     suseconds_t  tv_usec;  /* and microseconds */
};