bin/dd/gen.c
16
fputs("ABCDEFGH", stdout);
bin/ed/io.c
100
fputs("newline inserted\n", stderr);
bin/ed/io.c
102
fputs("newline appended\n", stderr);
bin/ed/io.c
318
fputs("\\\n", stdout);
bin/ed/io.c
323
fputs("Press <RETURN> to continue... ", stdout);
bin/ed/main.c
144
fputs("\n?\n", stderr);
bin/ed/main.c
157
fputs("?\n", stderr);
bin/ed/main.c
176
fputs("?\n", stderr);
bin/ed/main.c
210
fputs("?\n", stderr); /* give warning */
bin/ed/main.c
228
fputs("?\n", stderr);
bin/ls/print.c
407
fputs(longstring, stdout);
bin/pax/ar_io.c
345
fputs("done.\n", listf);
bin/pax/ar_subs.c
263
fputs(arcn->name, listf);
bin/pax/ar_subs.c
460
fputs(arcn->name, listf);
bin/pax/ar_subs.c
673
fputs("done.\n", listf);
bin/pax/ar_subs.c
861
fputs(arcn->name, listf);
bin/pax/options.c
1191
fputs("cpio: Known -H formats are:", stderr);
bin/pax/options.c
1194
fputs("\n\n", stderr);
bin/pax/options.c
1523
fputs("usage: pax [-cdnvz] [-E limit] [-f archive] ", stderr);
bin/pax/options.c
1524
fputs("[-s replstr] ... [-U user] ...", stderr);
bin/pax/options.c
1525
fputs("\n [-G group] ... ", stderr);
bin/pax/options.c
1526
fputs("[-T [from_date][,to_date]] ... ", stderr);
bin/pax/options.c
1527
fputs("[pattern ...]\n", stderr);
bin/pax/options.c
1528
fputs(" pax -r [-cdiknuvzDYZ] [-E limit] ", stderr);
bin/pax/options.c
1529
fputs("[-f archive] [-o options] ... \n", stderr);
bin/pax/options.c
1530
fputs(" [-p string] ... [-s replstr] ... ", stderr);
bin/pax/options.c
1531
fputs("[-U user] ... [-G group] ...\n ", stderr);
bin/pax/options.c
1532
fputs("[-T [from_date][,to_date]] ... ", stderr);
bin/pax/options.c
1533
fputs(" [pattern ...]\n", stderr);
bin/pax/options.c
1534
fputs(" pax -w [-dituvzHLPX] [-b blocksize] ", stderr);
bin/pax/options.c
1535
fputs("[ [-a] [-f archive] ] [-x format] \n", stderr);
bin/pax/options.c
1536
fputs(" [-B bytes] [-s replstr] ... ", stderr);
bin/pax/options.c
1537
fputs("[-o options] ... [-U user] ...", stderr);
bin/pax/options.c
1538
fputs("\n [-G group] ... ", stderr);
bin/pax/options.c
1539
fputs("[-T [from_date][,to_date][/[c][m]]] ... ", stderr);
bin/pax/options.c
1540
fputs("[file ...]\n", stderr);
bin/pax/options.c
1541
fputs(" pax -r -w [-diklntuvDHLPXYZ] ", stderr);
bin/pax/options.c
1542
fputs("[-p string] ... [-s replstr] ...", stderr);
bin/pax/options.c
1543
fputs("\n [-U user] ... [-G group] ... ", stderr);
bin/pax/options.c
1544
fputs("[-T [from_date][,to_date][/[c][m]]] ... ", stderr);
bin/pax/options.c
1545
fputs("\n [file ...] directory\n", stderr);
bin/pax/options.c
1557
fputs("usage: tar [-]{crtux}[-befhjmopqsvwyzHLOPXZ014578] [blocksize] ",
bin/pax/options.c
1559
fputs("[archive] [replstr] [-C directory] [-I file] [file ...]\n",
bin/pax/options.c
1572
fputs("usage: cpio -o [-aABcLvVzZ] [-C bytes] [-H format] [-O archive]\n", stderr);
bin/pax/options.c
1573
fputs(" [-F archive] < name-list [> archive]\n", stderr);
bin/pax/options.c
1574
fputs(" cpio -i [-bBcdfmnrsStuvVzZ6] [-C bytes] [-E file] [-H format]\n", stderr);
bin/pax/options.c
1575
fputs(" [-I archive] [-F archive] [pattern...] [< archive]\n", stderr);
bin/pax/options.c
1576
fputs(" cpio -p [-adlLmuvV] destination-directory < name-list\n", stderr);
bin/pax/options.c
370
fputs("pax: Known -x formats are:", stderr);
bin/pax/options.c
373
fputs("\n\n", stderr);
bin/sh/bltin/bltin.h
73
#define INITARGS(argv) if ((commandname = argv[0]) == NULL) {fputs("Argc is zero\n", stderr); exit(2);} else
bin/sh/histedit.c
364
fputs(s, efp);
bin/sh/mknodes.c
233
fputs(writer, hfile);
bin/sh/mknodes.c
236
fputs("\n\n\n", hfile);
bin/sh/mknodes.c
242
fputs("};\n\n\n", hfile);
bin/sh/mknodes.c
244
fputs("union node {\n", hfile);
bin/sh/mknodes.c
249
fputs("};\n\n\n", hfile);
bin/sh/mknodes.c
250
fputs("struct nodelist {\n", hfile);
bin/sh/mknodes.c
251
fputs("\tstruct nodelist *next;\n", hfile);
bin/sh/mknodes.c
252
fputs("\tunion node *n;\n", hfile);
bin/sh/mknodes.c
253
fputs("};\n\n\n", hfile);
bin/sh/mknodes.c
254
fputs("struct funcdef;\n", hfile);
bin/sh/mknodes.c
255
fputs("struct funcdef *copyfunc(union node *);\n", hfile);
bin/sh/mknodes.c
256
fputs("union node *getfuncnode(struct funcdef *);\n", hfile);
bin/sh/mknodes.c
257
fputs("void reffunc(struct funcdef *);\n", hfile);
bin/sh/mknodes.c
258
fputs("void unreffunc(struct funcdef *);\n", hfile);
bin/sh/mknodes.c
264
fputs(writer, cfile);
bin/sh/mknodes.c
274
fputs(line, cfile);
bin/sh/mknodes.c
305
fputs(" if (n == NULL)\n", cfile);
bin/sh/mknodes.c
307
fputs(" return;\n", cfile);
bin/sh/mknodes.c
309
fputs(" return NULL;\n", cfile);
bin/sh/mknodes.c
311
fputs(" result->blocksize += nodesize[n->type];\n", cfile);
bin/sh/mknodes.c
313
fputs(" new = state->block;\n", cfile);
bin/sh/mknodes.c
314
fputs(" state->block = (char *)state->block + nodesize[n->type];\n", cfile);
bin/sh/mknodes.c
316
fputs(" switch (n->type) {\n", cfile);
bin/sh/mknodes.c
369
fputs("break;\n", cfile);
bin/sh/mknodes.c
371
fputs(" };\n", cfile);
bin/sh/mknodes.c
373
fputs(" new->type = n->type;\n", cfile);
bin/sh/mksyntax.c
132
fputs(writer, hfile);
bin/sh/mksyntax.c
133
fputs(writer, cfile);
bin/sh/mksyntax.c
135
fputs("#include <sys/cdefs.h>\n", hfile);
bin/sh/mksyntax.c
136
fputs("#include <limits.h>\n\n", hfile);
bin/sh/mksyntax.c
139
fputs("/* Syntax classes */\n", hfile);
bin/sh/mksyntax.c
142
fputs(buf, hfile);
bin/sh/mksyntax.c
148
fputs("/* Syntax classes for is_ functions */\n", hfile);
bin/sh/mksyntax.c
151
fputs(buf, hfile);
bin/sh/mksyntax.c
157
fputs("#define SYNBASE (1 - CHAR_MIN)\n", hfile);
bin/sh/mksyntax.c
158
fputs("#define PEOF -SYNBASE\n\n", hfile);
bin/sh/mksyntax.c
160
fputs("#define BASESYNTAX (basesyntax + SYNBASE)\n", hfile);
bin/sh/mksyntax.c
161
fputs("#define DQSYNTAX (dqsyntax + SYNBASE)\n", hfile);
bin/sh/mksyntax.c
162
fputs("#define SQSYNTAX (sqsyntax + SYNBASE)\n", hfile);
bin/sh/mksyntax.c
163
fputs("#define ARISYNTAX (arisyntax + SYNBASE)\n", hfile);
bin/sh/mksyntax.c
169
fputs("#include \"parser.h\"\n", cfile);
bin/sh/mksyntax.c
170
fputs("#include \"shell.h\"\n", cfile);
bin/sh/mksyntax.c
171
fputs("#include \"syntax.h\"\n\n", cfile);
bin/sh/mksyntax.c
173
fputs("/* syntax table used when not in quotes */\n", cfile);
bin/sh/mksyntax.c
186
fputs("\n/* syntax table used when in double quotes */\n", cfile);
bin/sh/mksyntax.c
199
fputs("\n/* syntax table used when in single quotes */\n", cfile);
bin/sh/mksyntax.c
209
fputs("\n/* syntax table used when in arithmetic */\n", cfile);
bin/sh/mksyntax.c
222
fputs("\n/* character classification table */\n", cfile);
bin/sh/mksyntax.c
281
fputs("};\n", cfile);
bin/sh/show.c
106
fputs(" | ", fp);
bin/sh/show.c
109
fputs(" &", fp);
bin/sh/show.c
155
fputs(s, fp);
bin/sh/show.c
266
fputs(pfx, fp);
bin/sh/show.c
316
fputs(s, tracefile);
bin/sh/show.c
407
fputs("\nTracing started.\n", tracefile);
bin/sh/show.c
94
fputs(s, fp);
crypto/libressl/apps/openssl/openssl.c
497
fputs(prompt, stdout);
crypto/libressl/apps/openssl/passwd.c
523
fputs("Program not available.\n", stderr)
crypto/libressl/crypto/bio/bio_cb.c
153
fputs(buf, stderr);
crypto/libressl/crypto/ui/ui_openssl.c
179
fputs(UI_get0_output_string(uis), tty_out);
crypto/libressl/crypto/ui/ui_openssl.c
195
fputs(UI_get0_output_string(uis), tty_out);
crypto/libressl/crypto/ui/ui_openssl.c
196
fputs(UI_get0_action_string(uis), tty_out);
crypto/libressl/crypto/ui/ui_openssl.c
201
fputs(UI_get0_output_string(uis), tty_out);
crypto/openssh/kexecdh.c
115
fputs("server private key:\n", stderr);
crypto/openssh/kexecdh.c
166
fputs("public key:\n", stderr);
crypto/openssh/kexecdh.c
77
fputs("client private key:\n", stderr);
crypto/openssh/session.c
1286
fputs(buf, stderr);
crypto/openssh/session.c
793
fputs(buf, stdout);
crypto/openssh/ssh-keygen.c
2630
fputs(asig, stdout);
crypto/openssh/ssh-keygen.c
3102
fputs(retry_prompt, stdout);
crypto/openssh/ssh-keyscan.c
336
(void)fputs("\n", stdout);
crypto/openssh/sshkey.c
2703
fputs("point=(NULL)\n", stderr);
crypto/openssh/sshkey.c
2721
fputs("x=", stderr);
crypto/openssh/sshkey.c
2723
fputs("\ny=", stderr);
crypto/openssh/sshkey.c
2725
fputs("\n", stderr);
crypto/openssh/sshkey.c
2738
fputs("exponent=", stderr);
crypto/openssh/sshkey.c
2740
fputs("(NULL)", stderr);
crypto/openssh/sshkey.c
2743
fputs("\n", stderr);
crypto/openssh/utf8.c
286
if (fputs(str, stream) == EOF)
games/backgammon/backgammon/extra.c
125
fputs("\nDoubles:\nBoard: ", trace);
games/backgammon/backgammon/move.c
440
fputs("Board: ", trace);
games/backgammon/backgammon/move.c
449
fputs("\tMove: ", trace);
games/backgammon/backgammon/move.c
452
fputs("\n", trace);
games/battlestar/getcom.c
39
fputs(prompt, stdout);
games/ching/printching/printching.c
239
fputs(textln, stdout);
games/ching/printching/printching.c
251
fputs(textln, stdout);
games/ching/printching/printching.c
281
fputs(textln, stdout);
games/ching/printching/printching.c
293
fputs(textln, stdout);
games/ching/printching/printching.c
303
fputs(textln, stdout);
games/ching/printching/printching.c
310
fputs(textln, stdout);
games/factor/factor.c
177
fputs("0x", stdout);
games/factor/factor.c
223
fputs(" 0x", stdout);
games/fortune/fortune/fortune.c
232
fputs(line, stdout);
games/gomoku/main.c
566
fputs("I resign\n", stdout);
games/hack/hack.end.c
608
fputs(linebuf, stdout);
games/hack/hack.pri.c
107
fputs(" ERROR: ", stdout);
games/hack/hack.pri.c
80
fputs("/-\\", stdout);
games/hack/hack.pri.c
83
fputs(ulook, stdout);
games/hack/hack.pri.c
86
fputs("\\-/", stdout);
games/hunt/hunt/hunt.c
153
fputs("usage: hunt [-bcfmqSs] [-n name] [-p port] "
games/hunt/huntd/driver.c
1049
fputs("Name\t\tScore\tDucked\tAbsorb\tFaced\tShot\tRobbed\tMissed\tSlimeK\n", fp);
games/hunt/huntd/driver.c
1063
fputs("\n\nName\t\tEnemy\tFriend\tDeaths\tStill\tSaved\tConnect\n", fp);
games/morse/morse.c
354
fputs(USAGE, stderr);
games/morse/morse.c
358
fputs("morse: only one of -l and -s allowed\n", stderr);
games/morse/morse.c
362
fputs("morse: only one of -o, -p, -d and -l, -s allowed\n", stderr);
games/morse/morse.c
366
fputs("morse: insane speed\n", stderr);
games/ppt/ppt.c
105
fputs(vbuf, stdout);
games/rogue/message.c
334
fputs(buf, fp);
games/snake/snake/snake.c
169
fputs("usage: snake [-d seed] [-w width] [-l length] [-t]\n", stderr);
games/snake/snake/snake.c
171
fputs("usage: snake [-w width] [-l length] [-t]\n", stderr);
games/tetris/screen.c
133
#define putstr(s) fputs(s, stdout)
include/stdio.h
226
int fputs(const char * __restrict, FILE * __restrict);
lib/libc/gen/syslog.c
206
fputs(errstr, fmt_fp);
lib/libc/resolv/res_debug.c
203
fputs("; NSID: ", file);
lib/libc/resolv/res_debug.c
205
fputs("; NSID\n", file);
lib/libc/resolv/res_debug.c
207
fputs("; NSID: ", file);
lib/libc/resolv/res_debug.c
211
fputs(" (",file);
lib/libc/resolv/res_debug.c
216
fputs(")\n", file);
lib/libc/resolv/res_debug.c
228
fputs(" (",file);
lib/libc/resolv/res_debug.c
233
fputs(")\n", file);
lib/libc/resolv/res_debug.c
258
fputs(buf, file);
lib/libc/resolv/res_debug.c
354
fputs(name, file);
lib/libc/resolv/res_debug.c
395
fputs(name, file);
lib/libc/resolv/res_findzonecut.c
715
fputs(";; res_findzonecut: ", stderr);
lib/libc/resolv/res_update.c
215
fputs(";; res_nupdate: ", stderr);
libexec/bootpd/tools/bootptest/print-bootp.c
149
fputs(tstr + 1, stdout);
libexec/bootpd/tools/bootptest/print-bootp.c
157
fputs(tstr + 1, stdout);
libexec/bootpd/tools/bootptest/print-bootp.c
181
fputs(tstr, stdout);
libexec/comsat/comsat.c
262
fputs("M-", tp);
libexec/comsat/comsat.c
271
fputs(cr, tp);
libexec/rbootd/utils.c
125
fputs(" (Send Server ID)", DbgFp);
libexec/rbootd/utils.c
247
(void) fputs(">\n", DbgFp);
libexec/rbootd/utils.c
95
fputs((direct==DIR_RCVD)?"<<< ":(direct==DIR_SENT)?">>> ":"", DbgFp);
sbin/dump/optr.c
164
fputs("\a\a\aMessage from the dump program to all operators\n\nDUMP: NEEDS ATTENTION: ", fp);
sbin/dump/optr.c
166
fputs(lastmsg, fp);
sbin/dump/optr.c
168
fputs(message, fp);
sbin/fsdb/fsdbutil.c
109
fputs("symlink",stdout);
sbin/fsdb/fsdbutil.c
213
fputs(tempbuf, stdout);
sbin/ldconfig/elfhints.c
291
if (fputs(dirs[0], fp) == EOF)
sbin/routed/main.c
835
fputs("routed: ", ftrace);
sbin/routed/main.c
914
fputs("routed: ", stderr);
sbin/routed/main.c
916
fputs("; giving up\n",stderr);
sbin/routed/trace.c
556
fputs("> ", ftrace);
sbin/routed/trace.c
837
fputs("current daemon state:\n", ftrace);
sbin/routed/trace.c
891
fputs("\tQUERY ", ftrace);
sbin/sysctl/sysctl.c
393
fputs(p1, stdout);
sbin/sysctl/sysctl.c
413
fputs(p1, stdout);
sbin/vinum/commands.c
2491
fputs(reply.msg, stderr); /* show it */
sbin/vinum/commands.c
2498
fputs(reply.msg, stderr);
sbin/vinum/v.c
320
fputs("\n", hist);
test/debug/crc32hw.c
356
fputs("out of memory", stderr);
test/debug/crc32hw.c
372
fputs("read error\n", stderr);
tools/multimedia/cxm/extract_fw/cxm_extract_fw.c
92
fputs("\n\t", ofp);
tools/regression/p1003_1b/sched.c
89
fputs(s, stderr);
usr.bin/at/at.c
392
fputs("; export ", fp);
usr.bin/bc/bc.y
815
fputs(instructions[i].u.cstr, stdout);
usr.bin/bc/bc.y
963
fputs("c[", stdout);
usr.bin/bc/bc.y
969
fputs("]pc\n", stdout);
usr.bin/csplit/csplit.c
197
while ((p = get_line()) != NULL && fputs(p, ofp) == 0)
usr.bin/csplit/csplit.c
394
if (fputs(p, ofp) != 0)
usr.bin/csplit/csplit.c
420
fputs(p, ofp);
usr.bin/csplit/csplit.c
455
if (fputs(p, ofp) != 0)
usr.bin/ctags/ctags.c
180
fputs(lbuf, outf);
usr.bin/dc/bcode.c
315
fputs(str, stderr);
usr.bin/dc/bcode.c
326
fputs(str, stderr);
usr.bin/dc/bcode.c
518
fputs(value->u.string, stdout);
usr.bin/dc/inout.c
161
fputs("\\\n", f);
usr.bin/dc/inout.c
372
fputs(prefix, f);
usr.bin/dc/inout.c
376
fputs("<array>", f);
usr.bin/dc/inout.c
382
fputs(value->u.string, f);
usr.bin/find/function.c
1301
fputs(entry->fts_path, stdout);
usr.bin/find/ls.c
102
fputs(longstring, stdout);
usr.bin/jot/jot.c
310
fputs(sepstring, stdout);
usr.bin/lam/lam.c
82
fputs(line, stdout);
usr.bin/lam/lam.c
83
fputs(ip->sepstring, stdout);
usr.bin/localedef/localedef.c
192
if (s && fputs(s, f) == EOF) {
usr.bin/lsvfs/lsvfs.c
46
fputs(DASHES, stdout);
usr.bin/m4/main.c
519
fputs(s, active);
usr.bin/mail/send.c
167
fputs(prefix, obuf);
usr.bin/mail/send.c
194
fputs(prefix, obuf);
usr.bin/mail/send.c
531
fputs(str, fo);
usr.bin/mail/send.c
542
fputs(np->n_name, fo);
usr.bin/mail/tty.c
124
fputs(pr, stdout);
usr.bin/msgs/msgs.c
367
fputs(inbuf, newmsg);
usr.bin/msgs/msgs.c
496
fputs(inbuf, stdout);
usr.bin/msgs/msgs.c
634
fputs(inbuf, outf);
usr.bin/ncal/ncal.c
514
fputs(
usr.bin/newkey/update.c
295
fputs(line, wf);
usr.bin/nl/nl.c
335
(void)fputs(sep, stdout);
usr.bin/patch/patch.c
908
fputs(not_defined, ofp);
usr.bin/patch/patch.c
911
fputs(else_defined, ofp);
usr.bin/patch/patch.c
914
fputs(pfetch(old), ofp);
usr.bin/patch/patch.c
924
fputs(else_defined, ofp);
usr.bin/patch/patch.c
927
fputs(if_defined, ofp);
usr.bin/patch/patch.c
931
fputs(pfetch(new), ofp);
usr.bin/patch/patch.c
945
fputs(not_defined, ofp);
usr.bin/patch/patch.c
950
fputs(pfetch(old), ofp);
usr.bin/patch/patch.c
956
fputs(else_defined, ofp);
usr.bin/patch/patch.c
960
fputs(pfetch(new), ofp);
usr.bin/patch/patch.c
969
fputs(end_defined, ofp);
usr.bin/patch/patch.c
978
fputs(if_defined, ofp);
usr.bin/patch/patch.c
981
fputs(else_defined, ofp);
usr.bin/patch/patch.c
986
fputs(pfetch(new), ofp);
usr.bin/patch/patch.c
991
fputs(end_defined, ofp);
usr.bin/patch/pch.c
1483
fputs(buf, pipefp);
usr.bin/patch/pch.c
1494
fputs(buf, pipefp);
usr.bin/patch/pch.c
1500
fputs(buf, pipefp);
usr.bin/pr/pr.c
1365
(void)fputs("pr: time conversion failed\n", err);
usr.bin/pr/pr.c
1529
(void)fputs(buf, stderr);
usr.bin/pr/pr.c
1535
(void)fputs("pr: memory allocation failed\n", err);
usr.bin/pr/pr.c
1547
(void)fputs(
usr.bin/pr/pr.c
1550
(void)fputs(
usr.bin/pr/pr.c
1552
(void)fputs(
usr.bin/pr/pr.c
1577
(void)fputs("Cannot defer diagnostic messages\n",stderr);
usr.bin/pr/pr.c
1586
(void)fputs("pr: +page number must be 1 or more\n",
usr.bin/pr/pr.c
1593
(void)fputs("pr: -columns must be 1 or more\n", err);
usr.bin/pr/pr.c
1613
(void)fputs(
usr.bin/pr/pr.c
1643
(void)fputs(
usr.bin/pr/pr.c
1661
(void)fputs(
usr.bin/pr/pr.c
1676
(void)fputs(
usr.bin/pr/pr.c
1689
(void)fputs("pr: -o offset must be 1 or more\n",
usr.bin/pr/pr.c
1720
(void)fputs(
usr.bin/pr/pr.c
1745
(void)fputs("pr: -a flag requires multiple columns\n",
usr.bin/pr/pr.c
1750
(void)fputs("pr: -m cannot be used with -a\n", err);
usr.bin/pr/pr.c
1772
(void)fputs(
usr.bin/rwall/rwall.c
170
fputs(lbuf, fp);
usr.bin/seq/seq.c
172
fputs(sep, stdout);
usr.bin/seq/seq.c
177
fputs(sep, stdout);
usr.bin/seq/seq.c
181
fputs(term, stdout);
usr.bin/top/color.c
302
fputs("These color tags are available:", f);
usr.bin/top/color.c
309
fputs("\n ", f);
usr.bin/top/color.c
316
fputs("\n\nTop color settings:\n", f);
usr.bin/top/display.c
1625
fputs("\n\n", stdout);
usr.bin/top/display.c
1646
fputs("\n\n", stdout);
usr.bin/top/display.c
1832
fputs(msg, stdout);
usr.bin/top/display.c
1925
fputs("\b \b", stdout);
usr.bin/top/display.c
1931
fputs("\b \b", stdout);
usr.bin/top/display.c
1947
fputs("\b \b", stdout);
usr.bin/top/display.c
298
fputs(buff, stdout);
usr.bin/top/display.c
360
fputs(new, stdout);
usr.bin/top/display.c
401
fputs(color_setstr(newcolor), stdout);
usr.bin/top/display.c
426
fputs(color_setstr(0), stdout);
usr.bin/top/screen.c
516
fputs(msg, stdout);
usr.bin/top/screen.c
521
fputs(msg, stdout);
usr.bin/unifdef/unifdef.c
700
if (fputs(tline, output) == EOF)
usr.bin/unifdef/unifdef.c
706
if (lnblank && fputs(newline, output) == EOF)
usr.bin/unstr/unstr.c
124
fputs(sp, stdout);
usr.bin/whereis/whereis.c
649
fputs(bin, stdout);
usr.bin/whereis/whereis.c
654
fputs(man, stdout);
usr.bin/whereis/whereis.c
659
fputs(src, stdout);
usr.sbin/authpf/authpf.c
423
} while (fputs(buf, stdout) != EOF && !feof(f));
usr.sbin/authpf/authpf.c
497
fputs("\n\nSorry, you are not allowed to use this facility!\n",
usr.sbin/authpf/authpf.c
555
while (fputs(tmp, stdout) != EOF && !feof(f)) {
usr.sbin/config/mkmakefile.c
539
fputs("BEFORE_DEPEND=", fp);
usr.sbin/config/mkmakefile.c
546
fputs("\\\n\t", fp);
usr.sbin/config/mkmakefile.c
592
fputs("CFILES=", fp);
usr.sbin/config/mkmakefile.c
601
fputs("\\\n\t", fp);
usr.sbin/config/mkmakefile.c
620
fputs("MFILES=", fp);
usr.sbin/config/mkmakefile.c
629
fputs("\\\n\t", fp);
usr.sbin/config/mkmakefile.c
644
fputs("SFILES=", fp);
usr.sbin/config/mkmakefile.c
653
fputs("\\\n\t", fp);
usr.sbin/config/mkmakefile.c
747
fputs("CLEAN=", fp);
usr.sbin/config/mkmakefile.c
754
fputs("\\\n\t", fp);
usr.sbin/fdformat/fdformat.c
223
fputs(msgbuf, stderr);
usr.sbin/lpr/filters.ru/koi2alt/koi2alt.c
92
fputs(koi2alt[c & 0x7F], stdout);
usr.sbin/lpr/lpd/printjob.c
1243
fputs(buf, stderr);
usr.sbin/lpr/lpd/printjob.c
834
fputs(buf, stderr);
usr.sbin/ppp/ipcp.c
296
fputs(ipcp->ns.resolv_nons, fp);
usr.sbin/pw/edgroup.c
192
fputs(outl, outfp);
usr.sbin/pw/edgroup.c
203
fputs(outl, infp);
usr.sbin/pw/fileupd.c
114
fputs(line, outfp);
usr.sbin/pw/fileupd.c
139
fputs(line, outfp);
usr.sbin/pw/fileupd.c
160
fputs(newline, outfp);
usr.sbin/pw/fileupd.c
175
fputs(line, infp);
usr.sbin/pw/pw_conf.c
496
fputs(comments[i], fp);
usr.sbin/pw/pw_group.c
419
fputs(buf, stdout);
usr.sbin/pw/pw_group.c
429
fputs("\n\n", stdout);
usr.sbin/pw/pw_user.c
1085
fputs(buf, stdout);
usr.sbin/pw/pw_user.c
776
fputs(line, pfp);
usr.sbin/rarpd/rarpd.c
907
fputs("\n", fp);
usr.sbin/rpc.ypupdated/update.c
285
fputs(line, wf);
usr.sbin/traceroute6/traceroute6.c
759
fputs("\n ", stdout);
usr.sbin/trpt/trpt.c
189
fputs(", ", stdout);