cmake/Tests/TryCompile/exit_with_error.c

8 lines
74 B
C
Raw Normal View History

#include <stdio.h>
int main()
{
printf("hello world\n");
2022-11-16 20:14:03 +01:00
return 1;
}