| 4 | #include <ccan/tap/tap.h> |
| 5 | |
| 6 | static struct timemono timemono_from_usec(unsigned long long usec) |
| 7 | { |
| 8 | struct timemono epoch = { { 0, 0 } }; |
| 9 | return timemono_add(epoch, time_from_usec(usec)); |
| 10 | } |
| 11 | |
| 12 | int main(void) |
| 13 | { |
no test coverage detected