15 lines
195 B
C
Executable file
15 lines
195 B
C
Executable file
/*
|
|
* clock - determine the processor time used
|
|
*/
|
|
|
|
#define times _times
|
|
#include <time.h>
|
|
#include <sys/times.h>
|
|
|
|
clock_t clock(void)
|
|
{
|
|
struct tms tms;
|
|
|
|
times(&tms);
|
|
return tms.tms_utime;
|
|
}
|