1#include <stdio.h>
2
3void
4call_me() {
5 printf(format: "I was called");
6}
7
8int
9main()
10{
11 call_me();
12 return 0;
13}
14

source code of lldb/test/API/macosx/save_crashlog/main.c