shithub: drawterm

ref: 54f615f6c0090c7c0011f4121ecf54fcf1e07a6b
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;
}