#ifndef WINGTOD_H
#define WINGTOD_H

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

void gettimeofday(struct timeval* p, void* tz /* IGNORED */);

#endif
