summaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/global_module_cache/two-print.c
blob: 96f68cbed83c60a0252fff555e307be5fdb6925f (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main() {
  int counter = 0;
  printf("I print one time: %d.\n", counter++);
  printf("I print two times: %d.\n", counter++);
  return counter;
}