time revision da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968
394N/Aset prototyped
394N/Alib nanosleep,usleep,_strftime
394N/Atyp clock_t = uint32_t
394N/Atyp time_t = uint32_t
394N/A
394N/Aif sys time {
394N/A #include <sys/time.h>
394N/A}
394N/Aendif
394N/A
394N/Aif ! mem tm.tm_sec sys/time.h
394N/A if hdr time {
394N/A #include <time.h>
394N/A }
394N/A endif
394N/Aendif
394N/A
394N/Aif sys times {
394N/A #include <sys/times.h>
394N/A}
1938N/Aelse {
394N/A struct tms
394N/A {
394N/A clock_t tms_utime;
394N/A clock_t tms_stime;
394N/A clock_t tms_cutime;
394N/A clock_t tms_cstime;
394N/A };
618N/A extern clock_t times(struct tms*);
394N/A}
394N/Aendif
844N/A
844N/Aif ! mem timeval.tv_sec sys/time.h {
618N/A struct timeval
1258N/A {
394N/A time_t tv_sec;
394N/A time_t tv_usec;
394N/A };
394N/A}
394N/Aendif
394N/A
394N/Acat{
394N/A#ifndef CLOCKS_PER_SEC
394N/A#define CLOCKS_PER_SEC CLK_TCK
727N/A#endif
727N/A}end
727N/A