at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git] / lib / ansi / clock.c
blob049d512594675b79e062ce6a77dde2e698c8110a
1 /*
2 * clock - determine the processor time used
3 */
5 #define times _times
6 #include <time.h>
7 #include <sys/times.h>
9 clock_t clock(void)
11 struct tms tms;
13 times(&tms);
14 return tms.tms_utime;