| 54 | |
| 55 | void |
| 56 | timespec_sub(const struct timespec *a, const struct timespec *b, struct timespec *result) |
| 57 | { |
| 58 | result->tv_sec = a->tv_sec - b->tv_sec; |
| 59 | result->tv_nsec = a->tv_nsec - b->tv_nsec; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…