stouset (owner)

Revisions

gist: 227252 Download_button fork
public
Public Clone URL: git://gist.github.com/227252.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
#include <stdio.h>
 
int main(void) {
    int fd = dup2(1, 3);
    FILE *stdout2 = fdopen(fd, "w");
    fprintf(stdout, "stdout\n");
    fprintf(stdout2, "stdout2\n");
    return 0;
}