1int foo();
2int main(int argc, char **argv) {
3 int retval = 0;
4 // Only call foo() if one argument is passed
5 if (argc == 2)
6 retval = foo();
7
8 return retval; // break here
9}
10

source code of lldb/test/API/macosx/delay-init-dependency/main.c