ref: 5eaaeb08c5ea01c7c0d0473c2b95462536e6bc25 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; }