]> git.sesse.net Git - fjl/blob - benchmark.h
Remove unused variable.
[fjl] / benchmark.h
1 #ifndef _BENCHMARK_H
2 #define _BENChMARK_H 1
3
4 // Benchmark timing functions for reading out used CPU time. Not thread-safe
5 // as they store the information in a global variable.
6 void start_benchmark_timer();
7 double stop_benchmark_timer();
8
9 #endif /* !defined(_BENCHMARK_H) */
10
11