bolt/deps/llvm-18.1.8/lldb/test/API/functionalities/load_unload/a.cpp
2025-02-14 19:21:04 +01:00

14 lines
163 B
C++

extern LLDB_DYLIB_IMPORT int b_function();
int a_init()
{
return 234;
}
int a_global = a_init();
extern "C" int
a_function ()
{
return b_function ();
}