| 997 | } |
| 998 | |
| 999 | void |
| 1000 | timevalsub(struct timeval *t1, const struct timeval *t2) |
| 1001 | { |
| 1002 | |
| 1003 | t1->tv_sec -= t2->tv_sec; |
| 1004 | t1->tv_usec -= t2->tv_usec; |
| 1005 | timevalfix(t1); |
| 1006 | } |
| 1007 | |
| 1008 | static void |
| 1009 | timevalfix(struct timeval *t1) |
no test coverage detected