bin/sh/bltin/bltin.h
57
#define fprintf outfmt
bin/sh/error.c
127
outfmt(out2, "%s: ", commandname);
bin/sh/error.c
129
outfmt(out2, "%s: ", arg0);
bin/sh/exec.c
292
outfmt(out2, "%s: not found\n", name);
bin/sh/exec.c
448
outfmt(out2, "%s: not found\n", name);
bin/sh/exec.c
450
outfmt(out2, "%s: %s\n", name, strerror(e));
bin/sh/exec.c
801
outfmt(out2, "%s: %s\n",
bin/sh/exec.c
827
outfmt(out2, "%s: not found\n", argv[i]);
bin/sh/expand.c
637
outfmt(out2, "%s\n", startp);
bin/sh/output.h
71
void outfmt(struct output *, const char *, ...) __printflike(2, 3);
bin/sh/parser.c
1926
outfmt(out2, "%s: %d: ", commandname, startlinno);
bin/sh/parser.c
1928
outfmt(out2, "%s: ", arg0);
bin/sh/parser.c
1929
outfmt(out2, "Syntax error: %s\n", msg);