Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/binutils/binutils/
H A Dresrc.c135 static char *cpp_temp_file; variable
324 cpp_temp_file = (char *) xmalloc (strlen (fileprefix) + 5); in open_input_stream()
325 sprintf (cpp_temp_file, "%s.irc", fileprefix); in open_input_stream()
328 if (run_cmd (cmd, cpp_temp_file)) in open_input_stream()
331 cpp_pipe = fopen (cpp_temp_file, FOPEN_RT);; in open_input_stream()
334 cpp_temp_file, strerror (errno)); in open_input_stream()
339 cpp_temp_file); in open_input_stream()
550 if (cpp_temp_file != NULL) in close_input_stream()
554 unlink (cpp_temp_file); in close_input_stream()
556 free (cpp_temp_file); in close_input_stream()
[all …]
H A DChangeLog-00012023 * resrc.c (cpp_temp_file): New static variable.