| 10 | } timeval_t; |
| 11 | |
| 12 | static inline bool operator<(timeval_t l, timeval_t r){ |
| 13 | return (l.seconds < r.seconds) || (l.seconds == r.seconds && l.milliseconds < r.milliseconds); |
| 14 | } |
| 15 | |
| 16 | typedef struct timespec { |
| 17 | time_t tv_sec; |
nothing calls this directly
no outgoing calls
no test coverage detected