]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/perf/config/feature-checks/test-dwarf.c
3fc1801ce4a9760dce3a2db564747ace639e88aa
[karo-tx-linux.git] / tools / perf / config / feature-checks / test-dwarf.c
1 #include <dwarf.h>
2 #include <elfutils/libdw.h>
3 #include <elfutils/version.h>
4
5 int main(void)
6 {
7         Dwarf *dbg = dwarf_begin(0, DWARF_C_READ);
8
9         return (long)dbg;
10 }