shithub: drawterm

ref: 65e8a26e1dac4a0f589f615126ad87a92c9c11ab
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;
}