Home | History | Annotate | Download | only in djgpp

Lines Matching full:bison

105    as a filter, the filter is reproduced using temporary files. First bison's
106 stdout is redirected to a temporary file. After bison has produced all of
109 bison's stdin. */
115 int from_in_fd; /* pipe from bison to m4. */
148 * All bison's output will be gathered in this temporary file
157 error(EXIT_FAILURE, 0, _("redirecting bison's stdout to the temporary file failed"));
181 int from_out_fd = open(tmp_file_name[0], O_RDONLY, S_IRUSR); /* pipe from bison to m4. */
182 int to_in_fd = open(tmp_file_name[1], O_WRONLY | O_CREAT | O_TRUNC, S_IWUSR); /* pipe from m4 to bison. */
194 * Redirect bison's output to m4's stdin.
207 * and will be redirected to bison's stdin.
249 * Redirect m4's output to bison's stdin.
252 error(EXIT_FAILURE, 0, "restore of bison's stdout failed");
254 to_in_fd = open(tmp_file_name[1], O_RDONLY, S_IRUSR); /* pipe from m4 to bison. */
265 error(EXIT_FAILURE, 0, _("redirecting bison's stdin from the temporary file failed"));
291 error(EXIT_FAILURE, 0, "restore of bison's stdin failed");