| 124 | |
| 125 | static double web_now_sec(void) { |
| 126 | struct timespec ts; |
| 127 | clock_gettime(CLOCK_MONOTONIC, &ts); |
| 128 | return (double)ts.tv_sec + (double)ts.tv_nsec / 1000000000.0; |
| 129 | } |
nothing calls this directly
no outgoing calls
no test coverage detected