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