bin/sh/bltin/bltin.h
60
#define fprintf outfmt
bin/sh/error.c
133
outfmt(out2, "%s: ", commandname);
bin/sh/error.c
135
outfmt(out2, "%s: ", arg0);
bin/sh/exec.c
298
outfmt(out2, "%s: not found\n", name);
bin/sh/exec.c
454
outfmt(out2, "%s: not found\n", name);
bin/sh/exec.c
456
outfmt(out2, "%s: %s\n", name, strerror(e));
bin/sh/exec.c
775
outfmt(out2, "%s: %s\n",
bin/sh/exec.c
801
outfmt(out2, "%s: not found\n", argv[i]);
bin/sh/expand.c
643
outfmt(out2, "%s\n", startp);
bin/sh/output.h
75
void outfmt(struct output *, const char *, ...) __printflike(2, 3);
bin/sh/parser.c
1930
outfmt(out2, "%s: %d: ", commandname, startlinno);
bin/sh/parser.c
1932
outfmt(out2, "%s: ", arg0);
bin/sh/parser.c
1933
outfmt(out2, "Syntax error: %s\n", msg);