git: 9front

ref: 7f3f8d9e7dab4f10d63c2666b1665cb55d6e7a68
dir: /sys/src/libc/9sys/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;
}