• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

d_init()1 int d_init()
2 {
3     return 123;
4 }
5 
6 int d_global = d_init();
7 
d_function()8 int LLDB_DYLIB_EXPORT d_function() {
9   return 700; // Find this line number within d_dunction().
10 }
11