16 lines
195 B
C
16 lines
195 B
C
|
/*
|
||
|
* 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;
|
||
|
}
|