[libc][NFC] Remove extra ; in exhaustive_test.h. (#124216)
[llvm-project.git] / lldb / test / API / lang / c / step-target / main.c
blob5e4a490aa90ba4bde4aebeaf87267f652e911fef
1 void
2 lotsOfArgs
4 int firstArg,
5 int secondArg,
6 int thirdArg,
7 int fourthArg
10 int x = firstArg + secondArg + thirdArg + fourthArg;
13 int
14 modifyInt(int incoming)
16 return incoming % 2;
19 int
20 main (int argc, char **argv)
22 if (argc > 0)
24 int var_makes_block = argc + 1;
25 int dummy = 0; // Break here to try targetted stepping.
26 lotsOfArgs(var_makes_block,
27 modifyInt(20),
28 30,
29 modifyInt(40));
30 int abc = 0; // Done calling lotsOfArgs.
32 return 0; // All done.