DEBSOURCES
Skip Quicknav
sources / drawterm-9front / 0~git20220608.bee4db6-3 / libc / time.c
12345678910111213
#include <u.h> #include <libc.h> long time(long *tp) { vlong t; t = nsec()/1000000000LL; if(tp != nil) *tp = t; return t; }