cmake/Tests/TryCompile/stdout_and_stderr.c
2024-04-14 22:45:38 +02:00

9 lines
104 B
C

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