xref: /netbsd-src/external/mit/libuv/dist/docs/code/proc-streams/test.c (revision 154bfe8e089c1a0a4e9ed8414f08d3da90949162)
1 #include <stdio.h>
2 
3 int main()
4 {
5     fprintf(stderr, "This is stderr\n");
6     printf("This is stdout\n");
7     return 0;
8 }
9