shithub: drawcpu

ref: a25a94e8f04e1d852c4ac2e8924f243e2fb70cbb
dir: /libc/time.c/

View raw version
#include <u.h>
#include <libc.h>

long
time(long *tp)
{
	vlong t;

	t = nsec()/1000000000LL;
	if(tp != nil)
		*tp = t;
	return t;
}