Home
last modified time | relevance | path

Searched refs:stdoutfd (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dpipe.c146 int stdoutfd; in create_pipe() local
177 stdoutfd = -1; in create_pipe()
193 || ((stdoutfd = open (prog_stdout, O_WRONLY, 0)) >= 0 in create_pipe()
194 && (stdoutfd == STDOUT_FILENO in create_pipe()
195 || (dup2 (stdoutfd, STDOUT_FILENO) >= 0 in create_pipe()
196 && close (stdoutfd) >= 0))))) in create_pipe()
205 if (stdoutfd >= 0) in create_pipe()
206 close (stdoutfd); in create_pipe()
369 int stdoutfd; in create_pipe()
390 || ((stdoutfd = open (prog_stdout, O_WRONLY, 0)) >= 0 in create_pipe()
[all …]
/netbsd-src/external/gpl2/groff/dist/src/preproc/html/
H A Dpre-html.cpp182 static int stdoutfd = 1; // output file descriptor - variable
485 r = write(stdoutfd, s, l - n); in writeNbytes()
786 if (close(stdoutfd) < 0) in emit_troff_output()
790 if (stdoutfd == 1) { in emit_troff_output()
791 if (dup(2) != stdoutfd) in emit_troff_output()