Home | History | Annotate | Download | only in sh

Lines Matching defs:tracefile

85 	char *	tracefile;		/* name of the tracefile */
97 FILE *tracefile; /* just for histedit */
133 if (tracefile)
134 fflush(tracefile);
151 error("Can't open tracefile: %s (%s)\n", s, strerror(errno));
157 error("Attempt to use fd %d as tracefile thwarted\n", fd);
164 if (tracefile)
165 (void) fclose(tracefile); /* also closes tfd */
166 tracefile = fdopen(fd, "ae"); /* don't care if it is NULL */
167 if (tracefile) /* except here... */
168 setlinebuf(tracefile);
190 replace(tracefile, s);
1047 if (tracefile)
1048 fclose(tracefile);
1049 tracefile = fdopen(to, "a");
1050 if (tracefile)
1051 setlinebuf(tracefile);