xref: /llvm-project/compiler-rt/test/shadowcallstack/init.c (revision ac9b6adf77d72b1b72e55f97893bdfc47c0f5851)
11781d105SVlad Tsyrklevich // RUN: %clang_scs %s -o %t
2*ac9b6adfSEvgeniy Stepanov // RUN: %run %t
31781d105SVlad Tsyrklevich 
41781d105SVlad Tsyrklevich // Basic smoke test for the runtime
51781d105SVlad Tsyrklevich 
66662e989SPeter Collingbourne #include "libc_support.h"
71781d105SVlad Tsyrklevich #include "minimal_runtime.h"
81781d105SVlad Tsyrklevich 
scs_main(void)96662e989SPeter Collingbourne int scs_main(void) {
106662e989SPeter Collingbourne   scs_fputs_stdout("In main.\n");
111781d105SVlad Tsyrklevich   return 0;
121781d105SVlad Tsyrklevich }
13