]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/main.c
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / lang / c / shared_lib_stripped_symbols / main.c
1 #include <stdio.h>
2 #include "foo.h"
3
4 int 
5 main ()
6 {
7   struct foo *my_foo_ptr;
8   my_foo_ptr = GetMeAFoo();
9   
10   printf ("My sub foo has: %d.\n", GetMeASubFoo(my_foo_ptr)->sub_1); // Set breakpoint 0 here.
11
12   return 0;
13 }