unistd.h: use long in read() and write() prototypes
[neatlibc.git] / sys / time.h
blob5f8fddaace7e0c89f66b956222cec6dd0ed464b1
1 struct timeval {
2 long tv_sec;
3 long tv_usec;
4 };
6 struct timezone {
7 int tz_minuteswest;
8 int tz_dsttime;
9 };
11 int gettimeofday(struct timeval *tv, struct timezone *tz);