CMake/Tests/TryCompile/stdout_and_stderr.c
2023-10-26 09:20:45 -04:00

9 lines
104 B
C

#include <stdio.h>
int main(void)
{
fputs("error\n", stderr);
puts("hello world\n");
return 0;
}