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