brintos

brintos / linux-shallow public Read only

0
0
Text · 304 B · 78fb4a1 Raw
14 lines · c
1// SPDX-License-Identifier: GPL-2.02#include <stdlib.h>3#include <elfutils/libdw.h>4 5int main(void)6{7	Dwarf_Addr base, start, end;8	Dwarf_Attribute attr;9	Dwarf_Op *op;10        size_t nops;11	ptrdiff_t offset = 0;12        return (int)dwarf_getlocations(&attr, offset, &base, &start, &end, &op, &nops);13}14