xref: /openbsd-src/gnu/usr.bin/binutils/include/mpw/sys/time.h (revision 5a38ef86d0b61900239c7913d24a05e7b88a58f0)
1 /* Imitation sys/time.h. */
2 
3 #ifndef __SYS_TIME_H__
4 #define __SYS_TIME_H__
5 
6 #include <time.h>
7 
8 struct timeval {
9   long tv_sec;
10   long tv_usec;
11 };
12 
13 #endif /* __SYS_TIME_H__ */
14