view lldb/test/API/functionalities/load_unload/d.cpp @ 227:21e6aa2e49ef

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 19 Jul 2021 06:57:16 +0900
parents 0572611fdcc8
children
line wrap: on
line source

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().
}