shithub: drawterm-fdroid

ref: 207a95163f5a047e1f8ed8b77f1c4ab2b08edb64
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;
}