[mlir][PDLL] Allow (and ignore) `-D` tablegen macros. (#124166)
[llvm-project.git] / lldb / test / API / lang / c / shared_lib / main.c
blobb4377de18c165bbb06ae1fbef1d1fe3e8c6da152
1 #include <stdio.h>
2 #include "foo.h"
4 int
5 main ()
7 struct foo *my_foo_ptr;
8 my_foo_ptr = GetMeAFoo();
10 printf ("My sub foo has: %d.\n", GetMeASubFoo(my_foo_ptr)->sub_1); // Set breakpoint 0 here.
12 return 0;