Files
CMake/Tests/RunCMake/try_run/ConfigureLog-test.c
Matthew Woehlke 048a02d5bb ConfigureLog: Log try_compile and try_run checks
Add configure log events for `try_compile` and `try_run` results.

Issue: #23200
2022-12-16 10:12:25 -05:00

10 lines
231 B
C

#include <stdio.h>
int main()
{
fprintf(stderr, "Output, with backslash '\\', on stderr!\n");
fflush(stderr); /* make output deterministic even if stderr is buffered */
fprintf(stdout, "Output on stdout!\n");
return 12;
}