xref: /llvm-project/lldb/test/API/python_api/global_module_cache/one-print.c (revision d0f5039e5db5c2b9222f78e7242401061ab259dc)
1 #include <stdio.h>
2 
main()3 int main() {
4   int counter = 0;
5   printf("I only print one time: %d.\n", counter++);
6   return counter;
7 }
8