Nanoseconds per operation */
| 35 | |
| 36 | /* Nanoseconds per operation */ |
| 37 | static size_t normalize(const struct timeabs *start, |
| 38 | const struct timeabs *stop, |
| 39 | unsigned int num) |
| 40 | { |
| 41 | return time_to_nsec(time_divide(time_between(*stop, *start), num)); |
| 42 | } |
| 43 | |
| 44 | int main(int argc, char *argv[]) |
| 45 | { |
no test coverage detected