Files
CMake/Tests/TryCompile/exit_with_error.c
Matthew Woehlke a04eaf6742 Tests: Clean up and simplify TryCompile tests
Add and use some additional helper macros to simplify repetitive checks.
Use existing macros in more places. Tweak macros to improve output in
case of failure.
2022-09-22 14:56:50 -04:00

8 lines
74 B
C

#include <stdio.h>
int main()
{
printf("hello world\n");
return 1;
}