c05564c4d8
Android 13
12 lines
197 B
C
Executable file
12 lines
197 B
C
Executable file
// SPDX-License-Identifier: GPL-2.0
|
|
#include <dwarf.h>
|
|
#include <elfutils/libdw.h>
|
|
#include <elfutils/version.h>
|
|
|
|
int main(void)
|
|
{
|
|
Dwarf *dbg = dwarf_begin(0, DWARF_C_READ);
|
|
|
|
return (long)dbg;
|
|
}
|