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