ref: e3506f4c4d64903e9394f3dc55d9fe74af2af46c
dir: /sys/include/ape/sys/time.h/
#ifndef __SYSTIME_H #define __SYSTIME_H #pragma lib "/$M/lib/ape/libap.a" #ifndef __TIMEVAL__ #define __TIMEVAL__ struct timeval { long tv_sec; long tv_usec; }; #ifdef _BSD_EXTENSION struct timezone { int tz_minuteswest; int tz_dsttime; }; #endif #endif /* __TIMEVAL__ */ extern int gettimeofday(struct timeval *, struct timezone *); #endif /* __SYSTIME_H */