Home
last modified time | relevance | path

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

/coreutils/src/
Dtemp-stream.c88 static FILE *tmp_fp; in temp_stream() local
134 tmp_fp = fdopen (fd, (O_BINARY ? "w+b" : "w+")); in temp_stream()
135 if (! tmp_fp) in temp_stream()
147 record_or_unlink_tempfile (tempfile, tmp_fp); in temp_stream()
151 clearerr (tmp_fp); in temp_stream()
152 if (fseeko (tmp_fp, 0, SEEK_SET) < 0 in temp_stream()
153 || ftruncate (fileno (tmp_fp), 0) < 0) in temp_stream()
161 *fp = tmp_fp; in temp_stream()