#include <9pm/u.h>
#include <9pm/libc.h>

#define	HZ	1000

double
cputime(void)
{
	long t[4];
	int i;

	times(t);
	for(i=1; i<4; i++)
		t[0] += t[i];
	return t[0] / (double)HZ;
}


syntax highlighted by Code2HTML, v. 0.9.1