ref: ebb16275cc0193d2caa3985f3914c08bc0e24e5f dir: /libc/time.c/
#include <u.h> #include <libc.h> long time(long *tp) { vlong t; t = nsec()/1000000000LL; if(tp != nil) *tp = t; return t; }