xref: /llvm-project/lldb/test/API/commands/watchpoints/watchpoint_count/main.c (revision 64799fbebddc9877f78c7501b0b986b7afe84d6b)
1 #include <stdint.h>
2 #include <stdio.h>
3 
main()4 int main() {
5   uint8_t x1 = 0;
6   uint16_t x2 = 0;
7 
8   printf("patatino\n");
9 
10   x1 += 1;
11   x2 += 2;
12   return 0;
13 }
14