xref: /aosp_15_r20/external/compiler-rt/test/safestack/init.c (revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
1 // RUN: %clang_safestack %s -o %t
2 // RUN: %run %t
3 
4 // Basic smoke test for the runtime library.
5 
main(int argc,char ** argv)6 int main(int argc, char **argv)
7 {
8   return 0;
9 }
10