Home
last modified time | relevance | path

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

/openbsd/usr.bin/lex/
H A Dfilter.c237 FILE *to_c = NULL, *to_h = NULL; in filter_tee_header() local
257 to_h = stdout; in filter_tee_header()
265 fputs(check_4_gnu_m4, to_h); in filter_tee_header()
266 fputs("m4_changecom`'m4_dnl\n", to_h); in filter_tee_header()
271 to_h); in filter_tee_header()
275 fprintf(to_h, in filter_tee_header()
294 fputs(buf, to_h); in filter_tee_header()
298 fprintf(to_h, "\n"); in filter_tee_header()
310 fflush(to_h); in filter_tee_header()
311 if (ferror(to_h)) in filter_tee_header()
[all …]
/openbsd/gnu/usr.bin/perl/lib/File/
H A DCopy.pm161 my $to_h;
163 $to_h = $to;
165 $to_h = \do { local *FH }; # XXX is this line obsolete?
166 open $to_h, ">", $to or goto fail_open2;
167 binmode $to_h or die "($!,$^E)";
178 $t = syswrite($to_h, $buf, $r - $w, $w)
183 close($to_h) || goto fail_open2 if $closeto;
194 close $to_h;