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