dwarf-assembly/benching/benchlib/bench.h
2018-06-04 14:46:55 +02:00

17 lines
257 B
C

/** Benchmarking library: a collection of functions that can be called to
* benchmark dwarf-assembly
**/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
void bench_unwinding();
void bench_dump_data();
#ifdef __cplusplus
} // END extern "C"
#endif