aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/target/create-deps/main.cpp
blob: d3c554fa390d291a6e6ccf84cb9611c90f1b7110 (plain)
1
2
3
4
5
6
7
8
extern int a_function ();
extern int b_function ();

int
main (int argc, char const *argv[])
{
    return a_function();
}