cmake/Tests/TryCompile/stdout_and_stderr.c

9 lines
104 B
C
Raw Normal View History

2022-11-16 20:14:03 +01:00
#include <stdio.h>
2024-04-14 22:45:38 +02:00
int main(void)
2022-11-16 20:14:03 +01:00
{
fputs("error\n", stderr);
puts("hello world\n");
return 0;
}