xref: /netbsd-src/external/mit/libuv/dist/docs/code/proc-streams/test.c (revision 627f7eb200a4419d89b531d55fccd2ee3ffdcde0)
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