[libc++] Remove duplicated _LIBCPP_HIDE_FROM_ABI from a few declarations (#122323)
[llvm-project.git] / lldb / test / API / commands / watchpoints / watchpoint_disable / main.c
blobdcbc766c59497a3544fcde798124588b80c4a9dc
1 #include <stdio.h>
3 int global_var = 10;
5 int
6 main()
8 printf("Set a breakpoint here: %d.\n", global_var);
9 global_var = 20;
10 printf("We should have stopped on the previous line: %d.\n", global_var);
11 global_var = 30;
12 return 0;