Rev 2 | Blame | Compare with Previous | Last modification | View Log | RSS feed
#include <u.h>
#include <libc.h>
long
time(long *tp)
{
vlong t;
t = nsec()/1000000000LL;
if(tp != nil)
*tp = t;
return t;
}