nanosecond: fix up conversion of ticks to nsec by doing the conversion in 2 stages
[fio.git] / tickmarks.h
1 #ifndef TICKMARKS_H
2 #define TICKMARKS_H
3
4 struct tickmark {
5         double value;
6         char string[20];
7 };
8
9 int calc_tickmarks(double min, double max, int nticks, struct tickmark **tm,
10                         int *power_of_ten, int use_KMG_symbols, int base_off);
11
12 #endif