| 53 | static int current_file_index; |
| 54 | |
| 55 | static unsigned long msdiff(struct timeval *t1, struct timeval *t2) |
| 56 | { |
| 57 | return (t2->tv_sec - t1->tv_sec) * 1000L |
| 58 | + (t2->tv_usec - t1->tv_usec) / 1000; |
| 59 | } |
| 60 | |
| 61 | |
| 62 | /** |
no outgoing calls
no test coverage detected