llvm/lldb/test/API/macosx/save_crashlog/main.c

#include <stdio.h>

void
call_me() {
  printf("I was called");
}

int
main()
{
  call_me();
  return 0;
}