aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/load_unload/d.cpp
blob: 9e1408848377e89a9be08b275904dbf048db1107 (plain)
1
2
3
4
5
6
7
8
9
10
int d_init()
{
    return 123;
}

int d_global = d_init();

int LLDB_DYLIB_EXPORT d_function() {
  return 700; // Find this line number within d_dunction().
}