xref: /llvm-project/compiler-rt/test/shadowcallstack/init.c (revision ac9b6adf77d72b1b72e55f97893bdfc47c0f5851)
1 // RUN: %clang_scs %s -o %t
2 // RUN: %run %t
3 
4 // Basic smoke test for the runtime
5 
6 #include "libc_support.h"
7 #include "minimal_runtime.h"
8 
scs_main(void)9 int scs_main(void) {
10   scs_fputs_stdout("In main.\n");
11   return 0;
12 }
13