Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/thorpej_scsipi]: src Completely rewritten scsipi_xfer execution engine:



details:   https://anonhg.NetBSD.org/src/rev/54ab02680b64
branches:  thorpej_scsipi
changeset: 477268:54ab02680b64
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Tue Oct 19 17:39:25 1999 +0000

description:
Completely rewritten scsipi_xfer execution engine:
- All xfers are queued in the mid-layer, rather than doing so in an
  ad-hoc fashion in individual adapter drivers.
- Adapter/channel resource management in the mid-layer, avoids even trying
  to start running an xfer if the adapter/channel doesn't have the resources.
- Better communication between the mid-layer and the adapters.
- Asynchronous event notification mechanism from adapter to mid-layer and
  peripherals.
- Better peripheral queue management: freeze/thaw, sorted requeueing during
  recovery, etc.
- Clean separation of peripherals, adapters, and adapter channels (no more
  scsipi_link).
- Kernel thread for each scsipi_channel makes error recovery much easier
  (no more dealing with interrupt context when recovering from an error).
- Mid-layer support for tagged queueing: commands can have the tag type
  set explicitly, tag IDs are allocated in the mid-layer (thus eliminating
  the need to use buggy tag ID allocation schemes in many adapter drivers).

There is a lot more work to do, but this correctly functions for the most
part on several file servers I run.

diffstat:

 Makefile                                                       |     136 -
 bin/Makefile                                                   |       8 -
 bin/Makefile.inc                                               |       8 -
 bin/cat/Makefile                                               |       7 -
 bin/cat/cat.1                                                  |     135 -
 bin/cat/cat.c                                                  |     284 -
 bin/chio/Makefile                                              |       5 -
 bin/chio/chio.1                                                |     259 -
 bin/chio/chio.c                                                |     865 -
 bin/chio/defs.h                                                |      64 -
 bin/chio/pathnames.h                                           |      40 -
 bin/chmod/Makefile                                             |       6 -
 bin/chmod/chmod.1                                              |     305 -
 bin/chmod/chmod.c                                              |     227 -
 bin/cp/Makefile                                                |       7 -
 bin/cp/cp.1                                                    |     215 -
 bin/cp/cp.c                                                    |     490 -
 bin/cp/extern.h                                                |      59 -
 bin/cp/utils.c                                                 |     348 -
 bin/csh/Makefile                                               |      50 -
 bin/csh/USD.doc/Makefile                                       |      10 -
 bin/csh/USD.doc/csh.1                                          |    1014 -
 bin/csh/USD.doc/csh.2                                          |    1307 -
 bin/csh/USD.doc/csh.3                                          |     652 -
 bin/csh/USD.doc/csh.4                                          |     180 -
 bin/csh/USD.doc/csh.a                                          |      97 -
 bin/csh/USD.doc/csh.g                                          |    1723 -
 bin/csh/USD.doc/tabs                                           |      36 -
 bin/csh/alloc.c                                                |     132 -
 bin/csh/char.c                                                 |     318 -
 bin/csh/char.h                                                 |      98 -
 bin/csh/const.c                                                |     167 -
 bin/csh/csh.1                                                  |    2195 -
 bin/csh/csh.c                                                  |    1391 -
 bin/csh/csh.h                                                  |     552 -
 bin/csh/dir.c                                                  |     932 -
 bin/csh/dir.h                                                  |      47 -
 bin/csh/dol.c                                                  |     986 -
 bin/csh/err.c                                                  |     414 -
 bin/csh/exec.c                                                 |     773 -
 bin/csh/exp.c                                                  |     715 -
 bin/csh/extern.h                                               |     338 -
 bin/csh/file.c                                                 |     766 -
 bin/csh/func.c                                                 |    1528 -
 bin/csh/glob.c                                                 |     949 -
 bin/csh/hist.c                                                 |     195 -
 bin/csh/init.c                                                 |     141 -
 bin/csh/lex.c                                                  |    1646 -
 bin/csh/misc.c                                                 |     430 -
 bin/csh/parse.c                                                |     707 -
 bin/csh/pathnames.h                                            |      43 -
 bin/csh/proc.c                                                 |    1410 -
 bin/csh/proc.h                                                 |     103 -
 bin/csh/sem.c                                                  |     670 -
 bin/csh/set.c                                                  |     849 -
 bin/csh/str.c                                                  |     473 -
 bin/csh/strpct.c                                               |      99 -
 bin/csh/time.c                                                 |     305 -
 bin/date/Makefile                                              |       9 -
 bin/date/date.1                                                |     212 -
 bin/date/date.c                                                |     244 -
 bin/date/extern.h                                              |      38 -
 bin/date/netdate.c                                             |     199 -
 bin/dd/Makefile                                                |       7 -
 bin/dd/args.c                                                  |     413 -
 bin/dd/conv.c                                                  |     283 -
 bin/dd/conv_tab.c                                              |     291 -
 bin/dd/dd.1                                                    |     360 -
 bin/dd/dd.c                                                    |     416 -
 bin/dd/dd.h                                                    |      98 -
 bin/dd/extern.h                                                |      70 -
 bin/dd/misc.c                                                  |     111 -
 bin/dd/position.c                                              |     174 -
 bin/df/Makefile                                                |      10 -
 bin/df/df.1                                                    |     130 -
 bin/df/df.c                                                    |     457 -
 bin/domainname/Makefile                                        |       6 -
 bin/domainname/domainname.1                                    |      69 -
 bin/domainname/domainname.c                                    |     100 -
 bin/echo/Makefile                                              |       6 -
 bin/echo/echo.1                                                |      72 -
 bin/echo/echo.c                                                |      82 -
 bin/ed/Makefile                                                |      20 -
 bin/ed/POSIX                                                   |     103 -
 bin/ed/README                                                  |      24 -
 bin/ed/buf.c                                                   |     301 -
 bin/ed/cbc.c                                                   |     439 -
 bin/ed/ed.1                                                    |    1002 -
 bin/ed/ed.h                                                    |     297 -
 bin/ed/glbl.c                                                  |     231 -
 bin/ed/io.c                                                    |     381 -
 bin/ed/main.c                                                  |    1449 -
 bin/ed/re.c                                                    |     139 -
 bin/ed/sub.c                                                   |     273 -
 bin/ed/test/=.err                                              |       1 -
 bin/ed/test/Makefile                                           |      25 -
 bin/ed/test/README                                             |      32 -
 bin/ed/test/TODO                                               |      17 -
 bin/ed/test/a.d                                                |       5 -
 bin/ed/test/a.r                                                |       8 -
 bin/ed/test/a.t                                                |       9 -
 bin/ed/test/a1.err                                             |       3 -
 bin/ed/test/a2.err                                             |       3 -
 bin/ed/test/addr.d                                             |       9 -
 bin/ed/test/addr.r                                             |       2 -
 bin/ed/test/addr.t                                             |       5 -
 bin/ed/test/addr1.err                                          |       1 -
 bin/ed/test/addr2.err                                          |       1 -
 bin/ed/test/ascii.d                                            |     Bin 
 bin/ed/test/ascii.r                                            |     Bin 
 bin/ed/test/bang1.err                                          |       1 -
 bin/ed/test/bang1.r                                            |       1 -
 bin/ed/test/bang1.t                                            |       5 -
 bin/ed/test/bang2.err                                          |       1 -
 bin/ed/test/c.d                                                |       5 -
 bin/ed/test/c.r                                                |       4 -
 bin/ed/test/c.t                                                |      12 -
 bin/ed/test/c1.err                                             |       3 -
 bin/ed/test/c2.err                                             |       3 -
 bin/ed/test/ckscripts.sh                                       |      37 -
 bin/ed/test/d.d                                                |       5 -
 bin/ed/test/d.err                                              |       1 -
 bin/ed/test/d.r                                                |       1 -
 bin/ed/test/d.t                                                |       3 -
 bin/ed/test/e1.d                                               |       1 -
 bin/ed/test/e1.err                                             |       1 -
 bin/ed/test/e1.r                                               |       1 -
 bin/ed/test/e1.t                                               |       1 -
 bin/ed/test/e2.d                                               |       1 -
 bin/ed/test/e2.err                                             |       1 -
 bin/ed/test/e2.r                                               |       1 -
 bin/ed/test/e2.t                                               |       1 -
 bin/ed/test/e3.d                                               |       1 -
 bin/ed/test/e3.err                                             |       1 -
 bin/ed/test/e3.r                                               |       1 -
 bin/ed/test/e3.t                                               |       1 -
 bin/ed/test/e4.d                                               |       1 -
 bin/ed/test/e4.r                                               |       1 -
 bin/ed/test/e4.t                                               |       1 -
 bin/ed/test/f1.err                                             |       1 -
 bin/ed/test/f2.err                                             |       1 -
 bin/ed/test/g1.d                                               |       5 -
 bin/ed/test/g1.err                                             |       1 -
 bin/ed/test/g1.r                                               |      15 -
 bin/ed/test/g1.t                                               |       6 -
 bin/ed/test/g2.d                                               |       5 -
 bin/ed/test/g2.err                                             |       1 -
 bin/ed/test/g2.r                                               |       1 -
 bin/ed/test/g2.t                                               |       2 -
 bin/ed/test/g3.d                                               |       5 -
 bin/ed/test/g3.err                                             |       1 -
 bin/ed/test/g3.r                                               |       5 -
 bin/ed/test/g3.t                                               |       4 -
 bin/ed/test/g4.d                                               |       5 -
 bin/ed/test/g4.r                                               |       7 -
 bin/ed/test/g4.t                                               |      13 -
 bin/ed/test/g5.d                                               |       3 -
 bin/ed/test/g5.r                                               |       9 -
 bin/ed/test/g5.t                                               |       2 -
 bin/ed/test/h.err                                              |       1 -
 bin/ed/test/i.d                                                |       5 -
 bin/ed/test/i.r                                                |       8 -
 bin/ed/test/i.t                                                |       9 -
 bin/ed/test/i1.err                                             |       3 -
 bin/ed/test/i2.err                                             |       3 -
 bin/ed/test/i3.err                                             |       3 -
 bin/ed/test/j.d                                                |       5 -
 bin/ed/test/j.r                                                |       4 -
 bin/ed/test/j.t                                                |       2 -
 bin/ed/test/k.d                                                |       5 -
 bin/ed/test/k.r                                                |       5 -
 bin/ed/test/k.t                                                |      10 -
 bin/ed/test/k1.err                                             |       1 -
 bin/ed/test/k2.err                                             |       1 -
 bin/ed/test/k3.err                                             |       1 -
 bin/ed/test/k4.err                                             |       6 -
 bin/ed/test/m.d                                                |       5 -
 bin/ed/test/m.err                                              |       4 -
 bin/ed/test/m.r                                                |       5 -
 bin/ed/test/m.t                                                |       7 -
 bin/ed/test/mkscripts.sh                                       |      75 -
 bin/ed/test/nl.err                                             |       1 -
 bin/ed/test/nl1.d                                              |       5 -
 bin/ed/test/nl1.r                                              |       8 -
 bin/ed/test/nl1.t                                              |       8 -
 bin/ed/test/nl2.d                                              |       5 -
 bin/ed/test/nl2.r                                              |       6 -
 bin/ed/test/nl2.t                                              |       4 -
 bin/ed/test/q.t                                                |       5 -
 bin/ed/test/q1.err                                             |       1 -
 bin/ed/test/r1.d                                               |       5 -
 bin/ed/test/r1.err                                             |       1 -
 bin/ed/test/r1.r                                               |       7 -
 bin/ed/test/r1.t                                               |       3 -
 bin/ed/test/r2.d                                               |       5 -
 bin/ed/test/r2.err                                             |       1 -
 bin/ed/test/r2.r                                               |      10 -
 bin/ed/test/r2.t                                               |       1 -
 bin/ed/test/r3.d                                               |       1 -
 bin/ed/test/r3.r                                               |       2 -
 bin/ed/test/r3.t                                               |       1 -
 bin/ed/test/s1.d                                               |       5 -
 bin/ed/test/s1.err                                             |       1 -
 bin/ed/test/s1.r                                               |       5 -
 bin/ed/test/s1.t                                               |       6 -
 bin/ed/test/s10.err                                            |       4 -
 bin/ed/test/s2.d                                               |       5 -
 bin/ed/test/s2.err                                             |       4 -
 bin/ed/test/s2.r                                               |       5 -
 bin/ed/test/s2.t                                               |       4 -
 bin/ed/test/s3.err                                             |       1 -
 bin/ed/test/s3.r                                               |       1 -
 bin/ed/test/s3.t                                               |       6 -
 bin/ed/test/s4.err                                             |       1 -
 bin/ed/test/s5.err                                             |       1 -
 bin/ed/test/s6.err                                             |       1 -
 bin/ed/test/s7.err                                             |       5 -
 bin/ed/test/s8.err                                             |       4 -
 bin/ed/test/s9.err                                             |       4 -
 bin/ed/test/t.d                                                |       5 -
 bin/ed/test/t.r                                                |      16 -
 bin/ed/test/t1.d                                               |       5 -
 bin/ed/test/t1.err                                             |       1 -
 bin/ed/test/t1.r                                               |      16 -
 bin/ed/test/t1.t                                               |       3 -
 bin/ed/test/t2.d                                               |       5 -
 bin/ed/test/t2.err                                             |       1 -
 bin/ed/test/t2.r                                               |       6 -
 bin/ed/test/t2.t                                               |       1 -
 bin/ed/test/u.d                                                |       5 -
 bin/ed/test/u.err                                              |       1 -
 bin/ed/test/u.r                                                |       9 -
 bin/ed/test/u.t                                                |      31 -
 bin/ed/test/v.d                                                |       5 -
 bin/ed/test/v.r                                                |      11 -
 bin/ed/test/v.t                                                |       6 -
 bin/ed/test/w.d                                                |       5 -
 bin/ed/test/w.r                                                |      10 -
 bin/ed/test/w.t                                                |       2 -
 bin/ed/test/w1.err                                             |       1 -
 bin/ed/test/w2.err                                             |       1 -
 bin/ed/test/w3.err                                             |       1 -
 bin/ed/test/x.err                                              |       1 -
 bin/ed/test/z.err                                              |       2 -
 bin/ed/undo.c                                                  |     161 -
 bin/expr/Makefile                                              |       6 -
 bin/expr/expr.1                                                |     105 -
 bin/expr/expr.c                                                |     548 -
 bin/hostname/Makefile                                          |       6 -
 bin/hostname/hostname.1                                        |      69 -
 bin/hostname/hostname.c                                        |     107 -
 bin/kill/Makefile                                              |       6 -
 bin/kill/kill.1                                                |     147 -
 bin/kill/kill.c                                                |     196 -
 bin/ksh/Makefile                                               |      28 -
 bin/ksh/alloc.c                                                |     288 -
 bin/ksh/c_ksh.c                                                |    1405 -
 bin/ksh/c_sh.c                                                 |     787 -
 bin/ksh/c_test.c                                               |     616 -
 bin/ksh/c_test.h                                               |      55 -
 bin/ksh/c_ulimit.c                                             |     262 -
 bin/ksh/conf-end.h                                             |      57 -
 bin/ksh/config.h                                               |     353 -
 bin/ksh/edit.c                                                 |    1014 -
 bin/ksh/edit.h                                                 |      86 -
 bin/ksh/emacs-gen.sh                                           |      44 -
 bin/ksh/emacs.c                                                |    2184 -
 bin/ksh/eval.c                                                 |    1361 -
 bin/ksh/exec.c                                                 |    1670 -
 bin/ksh/expand.h                                               |     107 -
 bin/ksh/expr.c                                                 |     596 -
 bin/ksh/history.c                                              |    1192 -
 bin/ksh/io.c                                                   |     474 -
 bin/ksh/jobs.c                                                 |    1845 -
 bin/ksh/ksh.1                                                  |    3299 -
 bin/ksh/ksh_dir.h                                              |      27 -
 bin/ksh/ksh_limval.h                                           |      25 -
 bin/ksh/ksh_stat.h                                             |      60 -
 bin/ksh/ksh_time.h                                             |      27 -
 bin/ksh/ksh_times.h                                            |      20 -
 bin/ksh/ksh_wait.h                                             |      52 -
 bin/ksh/lex.c                                                  |    1281 -
 bin/ksh/lex.h                                                  |     133 -
 bin/ksh/mail.c                                                 |     189 -
 bin/ksh/main.c                                                 |     822 -
 bin/ksh/misc.c                                                 |    1315 -
 bin/ksh/path.c                                                 |     306 -
 bin/ksh/proto.h                                                |     291 -
 bin/ksh/sh.h                                                   |     706 -
 bin/ksh/shf.c                                                  |    1271 -
 bin/ksh/shf.h                                                  |      82 -
 bin/ksh/sigact.c                                               |     484 -
 bin/ksh/sigact.h                                               |     131 -
 bin/ksh/siglist.in                                             |      56 -
 bin/ksh/siglist.sh                                             |      41 -
 bin/ksh/syn.c                                                  |     948 -
 bin/ksh/table.c                                                |     241 -
 bin/ksh/table.h                                                |     174 -
 bin/ksh/trap.c                                                 |     430 -
 bin/ksh/tree.c                                                 |     656 -
 bin/ksh/tree.h                                                 |     137 -
 bin/ksh/tty.c                                                  |     180 -
 bin/ksh/tty.h                                                  |     110 -
 bin/ksh/var.c                                                  |    1141 -
 bin/ksh/version.c                                              |      10 -
 bin/ksh/vi.c                                                   |    2174 -
 bin/ln/Makefile                                                |       7 -
 bin/ln/ln.1                                                    |     147 -
 bin/ln/ln.c                                                    |     182 -
 bin/ls/Makefile                                                |       7 -
 bin/ls/cmp.c                                                   |     203 -
 bin/ls/extern.h                                                |      59 -
 bin/ls/ls.1                                                    |     397 -
 bin/ls/ls.c                                                    |     622 -
 bin/ls/ls.h                                                    |      76 -
 bin/ls/main.c                                                  |      61 -
 bin/ls/print.c                                                 |     383 -
 bin/ls/stat_flags.c                                            |     170 -
 bin/ls/stat_flags.h                                            |      39 -
 bin/ls/util.c                                                  |      80 -
 bin/mkdir/Makefile                                             |       6 -
 bin/mkdir/mkdir.1                                              |      97 -
 bin/mkdir/mkdir.c                                              |     200 -
 bin/mt/Makefile                                                |       9 -
 bin/mt/mt.1                                                    |     248 -
 bin/mt/mt.c                                                    |     321 -
 bin/mv/Makefile                                                |       9 -
 bin/mv/mv.1                                                    |     141 -
 bin/mv/mv.c                                                    |     375 -
 bin/mv/pathnames.h                                             |      39 -
 bin/pax/Makefile                                               |      37 -
 bin/pax/ar_io.c                                                |    1479 -
 bin/pax/ar_subs.c                                              |    1254 -
 bin/pax/buf_subs.c                                             |    1108 -
 bin/pax/cpio.c                                                 |    1292 -
 bin/pax/cpio.h                                                 |     153 -
 bin/pax/extern.h                                               |     295 -
 bin/pax/file_subs.c                                            |    1068 -
 bin/pax/ftree.c                                                |     561 -
 bin/pax/ftree.h                                                |      52 -
 bin/pax/gen_subs.c                                             |     517 -
 bin/pax/getoldopt.c                                            |      76 -
 bin/pax/options.c                                              |    1465 -
 bin/pax/options.h                                              |     116 -
 bin/pax/pat_rep.c                                              |    1198 -
 bin/pax/pat_rep.h                                              |      56 -
 bin/pax/pax.1                                                  |    1207 -
 bin/pax/pax.c                                                  |     418 -
 bin/pax/pax.h                                                  |     252 -
 bin/pax/sel_subs.c                                             |     673 -
 bin/pax/sel_subs.h                                             |      73 -
 bin/pax/tables.c                                               |    1443 -
 bin/pax/tables.h                                               |     174 -
 bin/pax/tar.c                                                  |    1268 -
 bin/pax/tar.h                                                  |     150 -
 bin/pax/tty_subs.c                                             |     252 -
 bin/ps/Makefile                                                |      13 -
 bin/ps/extern.h                                                |      88 -
 bin/ps/fmt.c                                                   |      58 -
 bin/ps/keyword.c                                               |     282 -
 bin/ps/nlist.c                                                 |     118 -
 bin/ps/print.c                                                 |     816 -
 bin/ps/procfs_ops.c                                            |     417 -
 bin/ps/ps.1                                                    |     545 -
 bin/ps/ps.c                                                    |     565 -
 bin/ps/ps.h                                                    |      91 -
 bin/pwd/Makefile                                               |       6 -
 bin/pwd/pwd.1                                                  |      84 -
 bin/pwd/pwd.c                                                  |     152 -
 bin/rcmd/Makefile                                              |      10 -
 bin/rcmd/rcmd.1                                                |     191 -
 bin/rcp/Makefile                                               |      14 -
 bin/rcp/extern.h                                               |      52 -
 bin/rcp/pathnames.h                                            |      41 -
 bin/rcp/rcp.1                                                  |     163 -
 bin/rcp/rcp.c                                                  |     954 -
 bin/rcp/util.c                                                 |     175 -
 bin/rm/Makefile                                                |       6 -
 bin/rm/rm.1                                                    |     157 -
 bin/rm/rm.c                                                    |     445 -
 bin/rmdir/Makefile                                             |       6 -
 bin/rmdir/rmdir.1                                              |      94 -
 bin/rmdir/rmdir.c                                              |     136 -
 bin/sh/Makefile                                                |      60 -
 bin/sh/TOUR                                                    |     357 -
 bin/sh/alias.c                                                 |     268 -
 bin/sh/alias.h                                                 |      53 -
 bin/sh/arith.y                                                 |     203 -
 bin/sh/arith_lex.l                                             |      95 -
 bin/sh/bltin/bltin.h                                           |      78 -
 bin/sh/bltin/echo.1                                            |     113 -
 bin/sh/bltin/echo.c                                            |     107 -
 bin/sh/builtins.def                                            |      92 -
 bin/sh/cd.c                                                    |     380 -
 bin/sh/cd.h                                                    |      39 -
 bin/sh/error.c                                                 |     299 -
 bin/sh/error.h                                                 |     108 -
 bin/sh/eval.c                                                  |    1021 -
 bin/sh/eval.h                                                  |      74 -
 bin/sh/exec.c                                                  |     944 -
 bin/sh/exec.h                                                  |      76 -
 bin/sh/expand.c                                                |    1548 -
 bin/sh/expand.h                                                |      75 -
 bin/sh/funcs/cmv                                               |      50 -
 bin/sh/funcs/dirs                                              |      74 -
 bin/sh/funcs/kill                                              |      50 -
 bin/sh/funcs/login                                             |      39 -
 bin/sh/funcs/newgrp                                            |      38 -
 bin/sh/funcs/popd                                              |      74 -
 bin/sh/funcs/pushd                                             |      74 -
 bin/sh/funcs/suspend                                           |      42 -
 bin/sh/histedit.c                                              |     510 -
 bin/sh/init.h                                                  |      43 -
 bin/sh/input.c                                                 |     518 -
 bin/sh/input.h                                                 |      66 -
 bin/sh/jobs.c                                                  |    1142 -
 bin/sh/jobs.h                                                  |      97 -
 bin/sh/machdep.h                                               |      53 -
 bin/sh/mail.c                                                  |     124 -
 bin/sh/mail.h                                                  |      41 -
 bin/sh/main.c                                                  |     414 -
 bin/sh/main.h                                                  |      47 -
 bin/sh/memalloc.c                                              |     307 -
 bin/sh/memalloc.h                                              |      80 -
 bin/sh/miscbltin.c                                             |     412 -
 bin/sh/miscbltin.h                                             |      34 -
 bin/sh/mkbuiltins                                              |     100 -
 bin/sh/mkinit.c                                                |     525 -
 bin/sh/mknodes.c                                               |     484 -
 bin/sh/mksyntax.c                                              |     426 -
 bin/sh/mktokens                                                |      96 -
 bin/sh/myhistedit.h                                            |      50 -
 bin/sh/mystring.c                                              |     144 -
 bin/sh/mystring.h                                              |      49 -
 bin/sh/nodes.c.pat                                             |     169 -
 bin/sh/nodetypes                                               |     146 -
 bin/sh/options.c                                               |     543 -
 bin/sh/options.h                                               |     116 -
 bin/sh/output.c                                                |     572 -
 bin/sh/output.h                                                |      89 -
 bin/sh/parser.c                                                |    1562 -
 bin/sh/parser.h                                                |      83 -
 bin/sh/redir.c                                                 |     391 -
 bin/sh/redir.h                                                 |      51 -
 bin/sh/sh.1                                                    |    1529 -
 bin/sh/shell.h                                                 |      83 -
 bin/sh/show.c                                                  |     446 -
 bin/sh/show.h                                                  |      46 -
 bin/sh/trap.c                                                  |     385 -
 bin/sh/trap.h                                                  |      50 -
 bin/sh/var.c                                                   |     765 -
 bin/sh/var.h                                                   |     131 -
 bin/sleep/Makefile                                             |       8 -
 bin/sleep/sleep.1                                              |     124 -
 bin/sleep/sleep.c                                              |     145 -
 bin/stty/Makefile                                              |       7 -
 bin/stty/cchar.c                                               |     155 -
 bin/stty/extern.h                                              |      50 -
 bin/stty/gfmt.c                                                |     140 -
 bin/stty/key.c                                                 |     334 -
 bin/stty/modes.c                                               |     246 -
 bin/stty/print.c                                               |     285 -
 bin/stty/stty.1                                                |     611 -
 bin/stty/stty.c                                                |     170 -
 bin/stty/stty.h                                                |      60 -
 bin/sync/Makefile                                              |       7 -
 bin/sync/sync.8                                                |      77 -
 bin/sync/sync.c                                                |      63 -
 bin/test/Makefile                                              |       9 -
 bin/test/TEST.csh                                              |     138 -
 bin/test/test.1                                                |     317 -
 bin/test/test.c                                                |     464 -
 distrib/Makefile                                               |      13 -
 distrib/alpha/Makefile                                         |      25 -
 distrib/alpha/README.files                                     |      54 -
 distrib/alpha/floppy-GENERIC/Makefile                          |      61 -
 distrib/alpha/instkernel/Makefile                              |       5 -
 distrib/alpha/instkernel/Makefile.inc                          |       4 -
 distrib/alpha/instkernel/Note.Results                          |       4 -
 distrib/alpha/instkernel/cd-hd-tape/Makefile                   |      67 -
 distrib/alpha/instkernel/fdset/Makefile                        |      68 -
 distrib/alpha/instkernel/instkernel/Makefile                   |      23 -
 distrib/alpha/instkernel/list2sh.awk                           |      55 -
 distrib/alpha/instkernel/ramdisk/Makefile                      |      59 -
 distrib/alpha/instkernel/ramdisk/disktab.preinstall            |      31 -
 distrib/alpha/instkernel/ramdisk/dot.hdprofile                 |      59 -
 distrib/alpha/instkernel/ramdisk/dot.profile                   |      67 -
 distrib/alpha/instkernel/ramdisk/list                          |     107 -
 distrib/alpha/instkernel/ramdisk/mtree.conf                    |      82 -
 distrib/alpha/instkernel/ramdisk/ramdiskbin.conf               |      34 -
 distrib/alpha/instkernel/runlist.sh                            |      13 -
 distrib/alpha/instkernel/src/install.sh                        |     527 -
 distrib/alpha/instkernel/src/list2sh.awk                       |      55 -
 distrib/alpha/instkernel/src/runlist.sh                        |      13 -
 distrib/alpha/instkernel/src/upgrade.sh                        |     262 -
 distrib/alpha/rz25dist/Makefile                                |     101 -
 distrib/alpha/rz25dist/build_dist                              |      62 -
 distrib/alpha/rz25dist/rc.hack                                 |     108 -
 distrib/alpha/toolchain-install/Makefile                       |      26 -
 distrib/alpha/toolchain-install/mk-toolchain-install-cmds      |     110 -
 distrib/amiga/floppies/Makefile                                |       6 -
 distrib/amiga/floppies/Makefile.inc                            |       3 -
 distrib/amiga/floppies/inst-common/Makefile.inc                |      51 -
 distrib/amiga/floppies/inst-common/dot.commonutils             |     123 -
 distrib/amiga/floppies/inst-common/instbin.conf                |      27 -
 distrib/amiga/floppies/inst-common/list                        |      79 -
 distrib/amiga/floppies/inst-common/mtree.conf                  |      72 -
 distrib/amiga/floppies/inst-common/termcap.vt                  |      66 -
 distrib/amiga/floppies/inst/Makefile                           |       8 -
 distrib/amiga/floppies/inst/disktab.preinstall                 |      31 -
 distrib/amiga/floppies/inst/dot.instutils                      |     160 -
 distrib/amiga/floppies/inst/dot.profile                        |      59 -
 distrib/amiga/floppies/inst/install.sh                         |     290 -
 distrib/amiga/floppies/inst/list                               |      14 -
 distrib/amiga/floppies/list2sh.awk                             |      39 -
 distrib/amiga/floppies/runlist.sh                              |      13 -
 distrib/amiga/floppies/upgr/Makefile                           |       8 -
 distrib/amiga/floppies/upgr/dot.hdprofile                      |      65 -
 distrib/amiga/floppies/upgr/dot.profile                        |      59 -
 distrib/amiga/floppies/upgr/dot.upgrutils                      |      63 -
 distrib/amiga/floppies/upgr/list                               |      11 -
 distrib/amiga/floppies/upgr/upgrade.sh                         |     287 -
 distrib/amiga/miniroot/Makefile.inc                            |      11 -
 distrib/amiga/miniroot/disktab.shadow                          |      32 -
 distrib/amiga/miniroot/dot.profile                             |     106 -
 distrib/amiga/miniroot/install.md                              |     314 -
 distrib/amiga/miniroot/list                                    |      55 -
 distrib/amiga/miniroot/termcap.vt                              |      67 -
 distrib/arm32/Makefile                                         |       5 -
 distrib/arm32/Makefile.inc                                     |       3 -
 distrib/arm32/floppies/Makefile                                |       5 -
 distrib/arm32/floppies/Makefile.inc                            |       3 -
 distrib/arm32/floppies/inst-common/Makefile.inc                |      50 -
 distrib/arm32/floppies/inst-common/dot.commonutils             |     133 -
 distrib/arm32/floppies/inst-common/inst.sh                     |     953 -
 distrib/arm32/floppies/inst-common/instbin.conf                |      29 -
 distrib/arm32/floppies/inst-common/list                        |      90 -
 distrib/arm32/floppies/inst-common/mtree.conf                  |      95 -
 distrib/arm32/floppies/inst-common/termcap.vt100               |      49 -
 distrib/arm32/floppies/inst/Makefile                           |       8 -
 distrib/arm32/floppies/inst/disktab.preinstall                 |      31 -
 distrib/arm32/floppies/inst/dot.hdprofile                      |      66 -
 distrib/arm32/floppies/inst/dot.instutils                      |     157 -
 distrib/arm32/floppies/inst/dot.profile                        |      62 -
 distrib/arm32/floppies/inst/install.sh                         |     497 -
 distrib/arm32/floppies/inst/list                               |      11 -
 distrib/arm32/floppies/list2sh.awk                             |      55 -
 distrib/arm32/floppies/runlist.sh                              |      13 -
 distrib/arm32/floppies/upgr/Makefile                           |       8 -
 distrib/arm32/floppies/upgr/dot.hdprofile                      |      65 -
 distrib/arm32/floppies/upgr/dot.profile                        |      59 -
 distrib/arm32/floppies/upgr/dot.upgrutils                      |      58 -
 distrib/arm32/floppies/upgr/list                               |       8 -
 distrib/arm32/floppies/upgr/upgrade.sh                         |     255 -
 distrib/arm32/ramdisk/Makefile                                 |      68 -
 distrib/arm32/ramdisk/disktab.preinstall                       |      31 -
 distrib/arm32/ramdisk/dot.commonutils                          |     132 -
 distrib/arm32/ramdisk/dot.hdprofile                            |      59 -
 distrib/arm32/ramdisk/dot.instutils                            |     185 -
 distrib/arm32/ramdisk/dot.profile                              |      64 -
 distrib/arm32/ramdisk/inst.sh                                  |    1041 -
 distrib/arm32/ramdisk/install.tmpl                             |     519 -
 distrib/arm32/ramdisk/list                                     |      99 -
 distrib/arm32/ramdisk/list2sh.awk                              |      70 -
 distrib/arm32/ramdisk/mtree.conf                               |      82 -
 distrib/arm32/ramdisk/ramdiskbin.conf                          |      33 -
 distrib/arm32/ramdisk/runlist.sh                               |      13 -
 distrib/arm32/ramdisk/start.tmpl                               |      45 -
 distrib/arm32/ramdisk/termcap.pc3                              |      44 -
 distrib/arm32/ramdisk/termcap.xterm                            |      23 -
 distrib/arm32/ramdisk/upgrade.tmpl                             |     240 -
 distrib/atari/miniroot/Makefile.inc                            |      17 -
 distrib/atari/miniroot/disktab.shadow                          |      32 -
 distrib/atari/miniroot/dot.profile                             |     105 -
 distrib/atari/miniroot/install.md                              |     364 -
 distrib/atari/miniroot/list                                    |      49 -
 distrib/atari/miniroot/termcap.vt                              |      67 -
 distrib/bebox/floppies/Makefile                                |       5 -
 distrib/bebox/floppies/Makefile.inc                            |       6 -
 distrib/bebox/floppies/bootfloppy-common/Makefile.inc          |      63 -
 distrib/bebox/floppies/bootfloppy-common/list                  |       4 -
 distrib/bebox/floppies/bootfloppy/Makefile                     |      10 -
 distrib/bebox/floppies/list2sh.awk                             |      55 -
 distrib/bebox/floppies/ramdisk/Makefile                        |      69 -
 distrib/bebox/floppies/ramdisk/Makefile.inc                    |      53 -
 distrib/bebox/floppies/ramdisk/disktab.preinstall              |       3 -
 distrib/bebox/floppies/ramdisk/dot.hdprofile                   |      59 -
 distrib/bebox/floppies/ramdisk/dot.profile                     |      68 -
 distrib/bebox/floppies/ramdisk/install.tmpl                    |     505 -
 distrib/bebox/floppies/ramdisk/list                            |      88 -
 distrib/bebox/floppies/ramdisk/mtree.conf                      |      82 -
 distrib/bebox/floppies/ramdisk/ramdiskbin.conf                 |      35 -
 distrib/bebox/floppies/ramdisk/start.tmpl                      |      49 -
 distrib/bebox/floppies/ramdisk/termcap.pc3                     |      44 -
 distrib/bebox/floppies/ramdisk/upgrade.tmpl                    |     244 -
 distrib/bebox/floppies/runlist.sh                              |      13 -
 distrib/hp300/HP-IB.geometry                                   |      23 -
 distrib/hp300/miniroot/dot.profile                             |      81 -
 distrib/hp300/miniroot/install.md                              |     516 -
 distrib/hp300/miniroot/list                                    |      52 -
 distrib/hpcmips/Makefile                                       |       5 -
 distrib/hpcmips/Makefile.inc                                   |       4 -
 distrib/hpcmips/miniroot/dot.profile                           |      20 -
 distrib/hpcmips/miniroot/list                                  |      94 -
 distrib/i386/floppies/Makefile                                 |       5 -
 distrib/i386/floppies/Makefile.inc                             |       6 -
 distrib/i386/floppies/bootfloppy-big/Makefile                  |      27 -
 distrib/i386/floppies/bootfloppy-common/Makefile.inc           |      72 -
 distrib/i386/floppies/bootfloppy-common/list                   |       9 -
 distrib/i386/floppies/bootfloppy-small/Makefile                |      12 -
 distrib/i386/floppies/bootfloppy-tiny/Makefile                 |      12 -
 distrib/i386/floppies/bootfloppy/Makefile                      |      10 -
 distrib/i386/floppies/fdset-common/Makefile.inc                |     113 -
 distrib/i386/floppies/fdset/Makefile                           |       9 -
 distrib/i386/floppies/list2sh.awk                              |      55 -
 distrib/i386/floppies/ramdisk/Makefile                         |      84 -
 distrib/i386/floppies/ramdisk/Makefile.inc                     |      53 -
 distrib/i386/floppies/ramdisk/disktab.preinstall               |      31 -
 distrib/i386/floppies/ramdisk/dot.hdprofile                    |      59 -
 distrib/i386/floppies/ramdisk/dot.profile                      |      74 -
 distrib/i386/floppies/ramdisk/install.tmpl                     |     513 -
 distrib/i386/floppies/ramdisk/list                             |     116 -
 distrib/i386/floppies/ramdisk/mtree.conf                       |      82 -
 distrib/i386/floppies/ramdisk/ramdiskbin.conf                  |      46 -
 distrib/i386/floppies/ramdisk/start.tmpl                       |      49 -
 distrib/i386/floppies/ramdisk/termcap.mini                     |      61 -
 distrib/i386/floppies/ramdisk/termcap.pc3                      |      44 -
 distrib/i386/floppies/ramdisk/upgrade.tmpl                     |     257 -
 distrib/i386/floppies/runlist.sh                               |      13 -
 distrib/mac68k/Makefile                                        |       5 -
 distrib/mac68k/instkernel/Makefile                             |       5 -
 distrib/mac68k/instkernel/Makefile.inc                         |       4 -
 distrib/mac68k/instkernel/instkernel/Makefile                  |      19 -
 distrib/mac68k/instkernel/ramdisk/Makefile                     |      54 -
 distrib/mac68k/instkernel/ramdisk/disktab.preinstall           |      31 -
 distrib/mac68k/instkernel/ramdisk/dot.hdprofile                |      59 -
 distrib/mac68k/instkernel/ramdisk/dot.profile                  |      67 -
 distrib/mac68k/instkernel/ramdisk/list                         |      94 -
 distrib/mac68k/instkernel/ramdisk/mtree.conf                   |      77 -
 distrib/mac68k/instkernel/ramdisk/ramdiskbin.conf              |      34 -
 distrib/mac68k/instkernel/src/list2sh.awk                      |      55 -
 distrib/mac68k/instkernel/src/runlist.sh                       |      13 -
 distrib/mac68k/miniroot/Makefile.inc                           |       5 -
 distrib/mac68k/miniroot/dot.profile                            |      81 -
 distrib/mac68k/miniroot/install.md                             |     189 -
 distrib/mac68k/miniroot/list                                   |      46 -
 distrib/mac68k/miniroot/termcap                                |     111 -
 distrib/macppc/floppies/Makefile                               |       5 -
 distrib/macppc/floppies/Makefile.inc                           |       6 -
 distrib/macppc/floppies/bootfloppy/Makefile                    |      75 -
 distrib/macppc/floppies/bootfloppy/list                        |       4 -
 distrib/macppc/floppies/list2sh.awk                            |      55 -
 distrib/macppc/floppies/ramdisk/Makefile                       |      57 -
 distrib/macppc/floppies/ramdisk/disktab.preinstall             |      29 -
 distrib/macppc/floppies/ramdisk/dot.profile                    |      94 -
 distrib/macppc/floppies/ramdisk/list                           |      95 -
 distrib/macppc/floppies/ramdisk/mtree.conf                     |      87 -
 distrib/macppc/floppies/ramdisk/ramdiskbin.conf                |      38 -
 distrib/macppc/floppies/ramdisk/termcap.src                    |     146 -
 distrib/macppc/floppies/runlist.sh                             |      13 -
 distrib/miniroot/Makefile                                      |      88 -
 distrib/miniroot/install.sh                                    |     445 -
 distrib/miniroot/install.sub                                   |    1541 -
 distrib/miniroot/list                                          |      72 -
 distrib/miniroot/list2sh.awk                                   |      74 -
 distrib/miniroot/makeconf.awk                                  |      69 -
 distrib/miniroot/mtree.conf                                    |     100 -
 distrib/miniroot/runlist.sh                                    |      13 -
 distrib/miniroot/upgrade.sh                                    |     354 -
 distrib/mvme68k/Makefile.inc                                   |       9 -
 distrib/mvme68k/miniroot/dot.profile                           |     102 -
 distrib/mvme68k/miniroot/install.md                            |     245 -
 distrib/mvme68k/miniroot/list                                  |      59 -
 distrib/mvme68k/ramdisk/Makefile                               |      79 -
 distrib/mvme68k/ramdisk/list                                   |      71 -
 distrib/mvme68k/ramdisk/mtree.conf                             |      39 -
 distrib/mvme68k/ramdisk/rd.disktab                             |       2 -
 distrib/mvme68k/ramdisk/rd.fstab                               |       2 -
 distrib/mvme68k/ramdisk/rd.passwd                              |       1 -
 distrib/mvme68k/ramdisk/rd.protocols                           |       6 -
 distrib/mvme68k/ramdisk/rd.services                            |      56 -
 distrib/mvme68k/ramdisk/rd.sshrc                               |       4 -
 distrib/mvme68k/ramdisk/rd.welcome                             |      23 -
 distrib/mvme68k/ramdisk/rd_bin.conf                            |      90 -
 distrib/mvme68k/ramdisk/runlist.awk                            |      44 -
 distrib/mvme68k/ramdisk/runlist.sh                             |      14 -
 distrib/notes/Makefile                                         |      12 -
 distrib/notes/Makefile.inc                                     |      73 -
 distrib/notes/alpha/Makefile                                   |       3 -
 distrib/notes/alpha/contents                                   |     456 -
 distrib/notes/alpha/hardware                                   |     248 -
 distrib/notes/alpha/install                                    |     692 -
 distrib/notes/alpha/legal                                      |      22 -
 distrib/notes/alpha/prep                                       |       8 -
 distrib/notes/alpha/upgrade                                    |       3 -
 distrib/notes/alpha/whatis                                     |      53 -
 distrib/notes/alpha/xfer                                       |      91 -
 distrib/notes/amiga/Makefile                                   |       3 -
 distrib/notes/amiga/contents                                   |     428 -
 distrib/notes/amiga/hardware                                   |     136 -
 distrib/notes/amiga/install                                    |     294 -
 distrib/notes/amiga/legal                                      |      36 -
 distrib/notes/amiga/prep                                       |     174 -
 distrib/notes/amiga/upgrade                                    |     205 -
 distrib/notes/amiga/whatis                                     |      10 -
 distrib/notes/amiga/xfer                                       |     153 -
 distrib/notes/arm32/Makefile                                   |       3 -
 distrib/notes/arm32/contents                                   |     436 -
 distrib/notes/arm32/hardware                                   |     169 -
 distrib/notes/arm32/install                                    |     480 -
 distrib/notes/arm32/legal                                      |       7 -
 distrib/notes/arm32/prep                                       |      24 -
 distrib/notes/arm32/prep.RISCOS                                |     560 -
 distrib/notes/arm32/upgrade                                    |       3 -
 distrib/notes/arm32/whatis                                     |      35 -
 distrib/notes/arm32/xfer                                       |       3 -
 distrib/notes/atari/Makefile                                   |       3 -
 distrib/notes/atari/contents                                   |     535 -
 distrib/notes/atari/hardware                                   |      89 -
 distrib/notes/atari/install                                    |     245 -
 distrib/notes/atari/legal                                      |      12 -
 distrib/notes/atari/prep                                       |      93 -
 distrib/notes/atari/upgrade                                    |      88 -
 distrib/notes/atari/whatis                                     |      39 -
 distrib/notes/atari/xfer                                       |      73 -
 distrib/notes/common/donations                                 |      94 -
 distrib/notes/common/legal.common                              |     225 -
 distrib/notes/common/macros                                    |     144 -
 distrib/notes/common/main                                      |     919 -
 distrib/notes/common/mirrors                                   |     282 -
 distrib/notes/common/postinstall                               |     227 -
 distrib/notes/common/sysinst                                   |     805 -
 distrib/notes/common/upgrade                                   |     138 -
 distrib/notes/common/xfer                                      |     219 -
 distrib/notes/hp300/Makefile                                   |       3 -
 distrib/notes/hp300/contents                                   |     467 -
 distrib/notes/hp300/hardware                                   |      92 -
 distrib/notes/hp300/install                                    |     116 -
 distrib/notes/hp300/legal                                      |       9 -
 distrib/notes/hp300/prep                                       |     184 -
 distrib/notes/hp300/upgrade                                    |     118 -
 distrib/notes/hp300/whatis                                     |       3 -
 distrib/notes/hp300/xfer                                       |      89 -
 distrib/notes/i386/Makefile                                    |       3 -
 distrib/notes/i386/contents                                    |     418 -
 distrib/notes/i386/hardware                                    |     414 -
 distrib/notes/i386/install                                     |       2 -
 distrib/notes/i386/legal                                       |      50 -
 distrib/notes/i386/prep                                        |     113 -
 distrib/notes/i386/upgrade                                     |       3 -
 distrib/notes/i386/whatis                                      |      32 -
 distrib/notes/i386/xfer                                        |     236 -
 distrib/notes/mac68k/Makefile                                  |       5 -
 distrib/notes/mac68k/contents                                  |     480 -
 distrib/notes/mac68k/contrib                                   |      84 -
 distrib/notes/mac68k/hardware                                  |     124 -
 distrib/notes/mac68k/install                                   |     260 -
 distrib/notes/mac68k/legal                                     |      19 -
 distrib/notes/mac68k/prep                                      |      89 -
 distrib/notes/mac68k/upgrade                                   |     231 -
 distrib/notes/mac68k/whatis                                    |      34 -
 distrib/notes/mac68k/xfer                                      |      43 -
 distrib/notes/macppc/Makefile                                  |       3 -
 distrib/notes/macppc/contents                                  |     411 -
 distrib/notes/macppc/hardware                                  |      91 -
 distrib/notes/macppc/install                                   |       3 -
 distrib/notes/macppc/legal                                     |      43 -
 distrib/notes/macppc/prep                                      |      42 -
 distrib/notes/macppc/upgrade                                   |       3 -
 distrib/notes/macppc/whatis                                    |       6 -
 distrib/notes/macppc/xfer                                      |      50 -
 distrib/notes/mvme68k/Makefile                                 |       3 -
 distrib/notes/mvme68k/contents                                 |    1067 -
 distrib/notes/mvme68k/hardware                                 |      60 -
 distrib/notes/mvme68k/install                                  |     613 -
 distrib/notes/mvme68k/legal                                    |      18 -
 distrib/notes/mvme68k/prep                                     |      86 -
 distrib/notes/mvme68k/upgrade                                  |     144 -
 distrib/notes/mvme68k/whatis                                   |       5 -
 distrib/notes/mvme68k/xfer                                     |     158 -
 distrib/notes/next68k/Makefile                                 |       3 -
 distrib/notes/next68k/contents                                 |    1067 -
 distrib/notes/next68k/hardware                                 |      42 -
 distrib/notes/next68k/install                                  |      73 -
 distrib/notes/next68k/legal                                    |       7 -
 distrib/notes/next68k/prep                                     |       3 -
 distrib/notes/next68k/upgrade                                  |      34 -
 distrib/notes/next68k/whatis                                   |       3 -
 distrib/notes/next68k/xfer                                     |      44 -
 distrib/notes/pc532/Makefile                                   |       3 -
 distrib/notes/pc532/contents                                   |    1067 -
 distrib/notes/pc532/hardware                                   |      36 -
 distrib/notes/pc532/install                                    |     280 -
 distrib/notes/pc532/legal                                      |     109 -
 distrib/notes/pc532/prep                                       |       5 -
 distrib/notes/pc532/upgrade                                    |      80 -
 distrib/notes/pc532/whatis                                     |      12 -
 distrib/notes/pc532/xfer                                       |      23 -
 distrib/notes/pmax/Makefile                                    |       3 -
 distrib/notes/pmax/QUICK.INSTALL                               |     191 -
 distrib/notes/pmax/contents                                    |     399 -
 distrib/notes/pmax/hardware                                    |     141 -
 distrib/notes/pmax/install                                     |     361 -
 distrib/notes/pmax/legal                                       |     146 -
 distrib/notes/pmax/prep                                        |       6 -
 distrib/notes/pmax/upgrade                                     |       3 -
 distrib/notes/pmax/whatis                                      |      40 -
 distrib/notes/pmax/xfer                                        |     112 -
 distrib/notes/sparc/Makefile                                   |       3 -
 distrib/notes/sparc/contents                                   |    1067 -
 distrib/notes/sparc/hardware                                   |      83 -
 distrib/notes/sparc/install                                    |     362 -
 distrib/notes/sparc/legal                                      |      19 -
 distrib/notes/sparc/prep                                       |      71 -
 distrib/notes/sparc/upgrade                                    |      45 -
 distrib/notes/sparc/whatis                                     |       5 -
 distrib/notes/sparc/xfer                                       |       3 -
 distrib/notes/sun3/Makefile                                    |       3 -
 distrib/notes/sun3/contents                                    |    1067 -
 distrib/notes/sun3/hardware                                    |      71 -
 distrib/notes/sun3/install                                     |     216 -
 distrib/notes/sun3/legal                                       |       4 -
 distrib/notes/sun3/prep                                        |      39 -
 distrib/notes/sun3/upgrade                                     |     132 -
 distrib/notes/sun3/whatis                                      |       7 -
 distrib/notes/sun3/xfer                                        |     153 -
 distrib/notes/vax/Makefile                                     |       3 -
 distrib/notes/vax/contents                                     |    1067 -
 distrib/notes/vax/hardware                                     |      43 -
 distrib/notes/vax/install                                      |      81 -
 distrib/notes/vax/legal                                        |      11 -
 distrib/notes/vax/prep                                         |      17 -
 distrib/notes/vax/upgrade                                      |      60 -
 distrib/notes/vax/whatis                                       |       6 -
 distrib/notes/vax/xfer                                         |     116 -
 distrib/notes/x68k/Makefile                                    |       3 -
 distrib/notes/x68k/contents                                    |    1067 -
 distrib/notes/x68k/hardware                                    |      75 -
 distrib/notes/x68k/install                                     |     477 -
 distrib/notes/x68k/legal                                       |      17 -
 distrib/notes/x68k/prep                                        |      15 -
 distrib/notes/x68k/upgrade                                     |     228 -
 distrib/notes/x68k/whatis                                      |      11 -
 distrib/notes/x68k/xfer                                        |     186 -
 distrib/pc532/Makefile                                         |       5 -
 distrib/pc532/floppies/Makefile                                |       5 -
 distrib/pc532/floppies/Makefile.inc                            |       3 -
 distrib/pc532/floppies/inst-common/Makefile.inc                |      91 -
 distrib/pc532/floppies/inst-common/dot.commonutils             |     137 -
 distrib/pc532/floppies/inst-common/download.c                  |     532 -
 distrib/pc532/floppies/inst-common/inject.c                    |     124 -
 distrib/pc532/floppies/inst-common/instbin.conf                |      46 -
 distrib/pc532/floppies/inst-common/list                        |     110 -
 distrib/pc532/floppies/inst-common/memory_map                  |       5 -
 distrib/pc532/floppies/inst-common/mtree.conf                  |     128 -
 distrib/pc532/floppies/inst-common/termcap.vt100               |      18 -
 distrib/pc532/floppies/inst/Makefile                           |       8 -
 distrib/pc532/floppies/inst/disktab.preinstall                 |      31 -
 distrib/pc532/floppies/inst/dot.hdprofile                      |      65 -
 distrib/pc532/floppies/inst/dot.instutils                      |     157 -
 distrib/pc532/floppies/inst/dot.profile                        |      59 -
 distrib/pc532/floppies/inst/install.sh                         |     476 -
 distrib/pc532/floppies/inst/list                               |      11 -
 distrib/pc532/floppies/list2sh.awk                             |      44 -
 distrib/pc532/floppies/runlist.sh                              |      13 -
 distrib/pc532/floppies/upgr/Makefile                           |       8 -
 distrib/pc532/floppies/upgr/dot.hdprofile                      |      65 -
 distrib/pc532/floppies/upgr/dot.profile                        |      59 -
 distrib/pc532/floppies/upgr/dot.upgrutils                      |      58 -
 distrib/pc532/floppies/upgr/list                               |       8 -
 distrib/pc532/floppies/upgr/upgrade.sh                         |     253 -
 distrib/pmax/Makefile                                          |       5 -
 distrib/pmax/Makefile.inc                                      |      10 -
 distrib/pmax/instkernel/Makefile                               |      66 -
 distrib/pmax/instkernel/diskimage.label.proto                  |      24 -
 distrib/pmax/miniroot/Makefile.inc                             |      26 -
 distrib/pmax/miniroot/diskimage.label.proto                    |      24 -
 distrib/pmax/miniroot/dot.profile                              |      20 -
 distrib/pmax/miniroot/list                                     |     101 -
 distrib/pmax/miniroot/termcap.rcons                            |      88 -
 distrib/pmax/ramdisk/Makefile                                  |      74 -
 distrib/pmax/ramdisk/disktab.preinstall                        |      31 -
 distrib/pmax/ramdisk/dot.hdprofile                             |      59 -
 distrib/pmax/ramdisk/dot.profile                               |      67 -
 distrib/pmax/ramdisk/list                                      |      98 -
 distrib/pmax/ramdisk/mtree.conf                                |      82 -
 distrib/pmax/ramdisk/ramdiskbin.conf                           |      34 -
 distrib/pmax/src/list2sh.awk                                   |      55 -
 distrib/pmax/src/runlist.sh                                    |      13 -
 distrib/sets/README                                            |     131 -
 distrib/sets/checkflist                                        |      51 -
 distrib/sets/lists/base/ad.m68k                                |      18 -
 distrib/sets/lists/base/md.alpha                               |      28 -
 distrib/sets/lists/base/md.amiga                               |      15 -
 distrib/sets/lists/base/md.arm32                               |      21 -
 distrib/sets/lists/base/md.atari                               |      22 -
 distrib/sets/lists/base/md.bebox                               |      17 -
 distrib/sets/lists/base/md.hp300                               |      16 -
 distrib/sets/lists/base/md.hpcmips                             |       2 -
 distrib/sets/lists/base/md.i386                                |      44 -
 distrib/sets/lists/base/md.mac68k                              |       2 -
 distrib/sets/lists/base/md.macppc                              |      19 -
 distrib/sets/lists/base/md.mvme68k                             |       9 -
 distrib/sets/lists/base/md.newsmips                            |       4 -
 distrib/sets/lists/base/md.next68k                             |       2 -
 distrib/sets/lists/base/md.ofppc                               |       1 -
 distrib/sets/lists/base/md.pc532                               |      19 -
 distrib/sets/lists/base/md.pmax                                |       5 -
 distrib/sets/lists/base/md.sparc                               |      24 -
 distrib/sets/lists/base/md.sun3                                |       8 -
 distrib/sets/lists/base/md.vax                                 |      25 -
 distrib/sets/lists/base/md.x68k                                |      19 -
 distrib/sets/lists/base/mi                                     |    1638 -
 distrib/sets/lists/base/obsolete.alpha                         |      80 -
 distrib/sets/lists/base/obsolete.amiga                         |      43 -
 distrib/sets/lists/base/obsolete.arm32                         |      57 -
 distrib/sets/lists/base/obsolete.atari                         |      47 -
 distrib/sets/lists/base/obsolete.hp300                         |      42 -
 distrib/sets/lists/base/obsolete.i386                          |      66 -
 distrib/sets/lists/base/obsolete.mac68k                        |      49 -
 distrib/sets/lists/base/obsolete.mi                            |      72 -
 distrib/sets/lists/base/obsolete.mvme68k                       |      40 -
 distrib/sets/lists/base/obsolete.pc532                         |      42 -
 distrib/sets/lists/base/obsolete.pmax                          |      53 -
 distrib/sets/lists/base/obsolete.sparc                         |      54 -
 distrib/sets/lists/base/obsolete.sun3                          |      60 -
 distrib/sets/lists/base/obsolete.vax                           |      54 -
 distrib/sets/lists/base/shl.elf                                |      29 -
 distrib/sets/lists/base/shl.mi                                 |      28 -
 distrib/sets/lists/comp/ad.m68k                                |      44 -
 distrib/sets/lists/comp/ad.mips                                |      48 -
 distrib/sets/lists/comp/ad.powerpc                             |      39 -
 distrib/sets/lists/comp/md.alpha                               |      52 -
 distrib/sets/lists/comp/md.amiga                               |      43 -
 distrib/sets/lists/comp/md.arm32                               |      62 -
 distrib/sets/lists/comp/md.atari                               |      47 -
 distrib/sets/lists/comp/md.bebox                               |      53 -
 distrib/sets/lists/comp/md.hp300                               |      42 -
 distrib/sets/lists/comp/md.hpcmips                             |      49 -
 distrib/sets/lists/comp/md.i386                                |      66 -
 distrib/sets/lists/comp/md.mac68k                              |      48 -
 distrib/sets/lists/comp/md.macppc                              |      49 -
 distrib/sets/lists/comp/md.mvme68k                             |      39 -
 distrib/sets/lists/comp/md.newsmips                            |      51 -
 distrib/sets/lists/comp/md.next68k                             |      42 -
 distrib/sets/lists/comp/md.pc532                               |      44 -
 distrib/sets/lists/comp/md.pmax                                |      52 -
 distrib/sets/lists/comp/md.sparc                               |      54 -
 distrib/sets/lists/comp/md.sun3                                |      61 -
 distrib/sets/lists/comp/md.vax                                 |      52 -
 distrib/sets/lists/comp/md.x68k                                |      52 -
 distrib/sets/lists/comp/mi                                     |    4100 -
 distrib/sets/lists/comp/obsolete.mi                            |     324 -
 distrib/sets/lists/comp/shl.elf                                |      30 -
 distrib/sets/lists/comp/shl.mi                                 |      26 -
 distrib/sets/lists/etc/md.alpha                                |       2 -
 distrib/sets/lists/etc/md.amiga                                |       3 -
 distrib/sets/lists/etc/md.arm32                                |       3 -
 distrib/sets/lists/etc/md.atari                                |       3 -
 distrib/sets/lists/etc/md.bebox                                |       3 -
 distrib/sets/lists/etc/md.hp300                                |       4 -
 distrib/sets/lists/etc/md.hpcmips                              |       2 -
 distrib/sets/lists/etc/md.i386                                 |       3 -
 distrib/sets/lists/etc/md.mac68k                               |       3 -
 distrib/sets/lists/etc/md.macppc                               |       2 -
 distrib/sets/lists/etc/md.mvme68k                              |       4 -
 distrib/sets/lists/etc/md.newsmips                             |       2 -
 distrib/sets/lists/etc/md.next68k                              |       3 -
 distrib/sets/lists/etc/md.pc532                                |       3 -
 distrib/sets/lists/etc/md.pmax                                 |       2 -
 distrib/sets/lists/etc/md.sparc                                |       3 -
 distrib/sets/lists/etc/md.sun3                                 |       5 -
 distrib/sets/lists/etc/md.vax                                  |       3 -
 distrib/sets/lists/etc/md.x68k                                 |      10 -
 distrib/sets/lists/etc/mi                                      |     115 -
 distrib/sets/lists/games/mi                                    |     259 -
 distrib/sets/lists/games/obsolete.mi                           |      10 -
 distrib/sets/lists/man/md_share                                |     645 -
 distrib/sets/lists/man/mi                                      |    1793 -
 distrib/sets/lists/man/obsolete.mi                             |      48 -
 distrib/sets/lists/misc/mi                                     |     351 -
 distrib/sets/lists/misc/obsolete.mi                            |      16 -
 distrib/sets/lists/secr/mi                                     |     232 -
 distrib/sets/lists/secr/obsolete.mi                            |      23 -
 distrib/sets/lists/secr/shl.elf                                |      25 -
 distrib/sets/lists/secr/shl.mi                                 |      25 -
 distrib/sets/lists/text/mi                                     |     356 -
 distrib/sets/lists/xbase/ad.m68k                               |       2 -
 distrib/sets/lists/xbase/md.alpha                              |       2 -
 distrib/sets/lists/xbase/md.amiga                              |       3 -
 distrib/sets/lists/xbase/md.arm32                              |      28 -
 distrib/sets/lists/xbase/md.atari                              |      20 -
 distrib/sets/lists/xbase/md.i386                               |      30 -
 distrib/sets/lists/xbase/md.macppc                             |       2 -
 distrib/sets/lists/xbase/md.pc532                              |       2 -
 distrib/sets/lists/xbase/md.pmax                               |       2 -
 distrib/sets/lists/xbase/md.sparc                              |       6 -
 distrib/sets/lists/xbase/md.vax                                |      15 -
 distrib/sets/lists/xbase/mi                                    |     571 -
 distrib/sets/lists/xbase/obsolete.mi                           |       2 -
 distrib/sets/lists/xbase/shl.elf                               |      14 -
 distrib/sets/lists/xbase/shl.mi                                |      14 -
 distrib/sets/lists/xcomp/md.arm32                              |      41 -
 distrib/sets/lists/xcomp/md.i386                               |      42 -
 distrib/sets/lists/xcomp/mi                                    |    1282 -
 distrib/sets/lists/xcomp/shl.elf                               |      14 -
 distrib/sets/lists/xcontrib/mi                                 |      45 -
 distrib/sets/lists/xfont/md.arm32                              |      75 -
 distrib/sets/lists/xfont/md.i386                               |      76 -
 distrib/sets/lists/xfont/mi                                    |     505 -
 distrib/sets/lists/xserver/md.alpha                            |       3 -
 distrib/sets/lists/xserver/md.amiga                            |       6 -
 distrib/sets/lists/xserver/md.arm32                            |      84 -
 distrib/sets/lists/xserver/md.atari                            |     103 -
 distrib/sets/lists/xserver/md.i386                             |      97 -
 distrib/sets/lists/xserver/md.mac68k                           |       4 -
 distrib/sets/lists/xserver/md.macppc                           |       3 -
 distrib/sets/lists/xserver/md.pmax                             |       3 -
 distrib/sets/lists/xserver/md.sparc                            |       8 -
 distrib/sets/lists/xserver/md.sun3                             |      10 -
 distrib/sets/lists/xserver/md.vax                              |       3 -
 distrib/sets/lists/xserver/md.x68k                             |       6 -
 distrib/sets/lists/xserver/mi                                  |       3 -
 distrib/sets/lists/xserver/obsolete.mi                         |       2 -
 distrib/sets/makeflist                                         |      97 -
 distrib/sets/makeobsolete                                      |      88 -
 distrib/sets/makesrctars                                       |      84 -
 distrib/sets/makesums                                          |      49 -
 distrib/sets/maketars                                          |      86 -
 distrib/sparc/Makefile                                         |       5 -
 distrib/sparc/Makefile.inc                                     |       6 -
 distrib/sparc/bootfs.sysinst/Makefile                          |      73 -
 distrib/sparc/bootfs.sysinst/list                              |       4 -
 distrib/sparc/bootfs/Makefile                                  |      83 -
 distrib/sparc/bootfs/list                                      |       4 -
 distrib/sparc/install.md                                       |     269 -
 distrib/sparc/list2sh.awk                                      |      55 -
 distrib/sparc/miniroot/dot.profile                             |      81 -
 distrib/sparc/miniroot/list                                    |      60 -
 distrib/sparc/ramdisk.sysinst/Makefile                         |     100 -
 distrib/sparc/ramdisk.sysinst/disktab.preinstall               |      31 -
 distrib/sparc/ramdisk.sysinst/dist/base_obsolete               |     137 -
 distrib/sparc/ramdisk.sysinst/dist/comp_obsolete               |     319 -
 distrib/sparc/ramdisk.sysinst/dist/games_obsolete              |       8 -
 distrib/sparc/ramdisk.sysinst/dist/man_obsolete                |      46 -
 distrib/sparc/ramdisk.sysinst/dist/misc_obsolete               |      16 -
 distrib/sparc/ramdisk.sysinst/dist/secr_obsolete               |      23 -
 distrib/sparc/ramdisk.sysinst/dist/xbase_obsolete              |       2 -
 distrib/sparc/ramdisk.sysinst/dist/xserver_obsolete            |       2 -
 distrib/sparc/ramdisk.sysinst/dot.profile.m4                   |      76 -
 distrib/sparc/ramdisk.sysinst/list.m4                          |     118 -
 distrib/sparc/ramdisk.sysinst/mtree.conf                       |      82 -
 distrib/sparc/ramdisk.sysinst/ramdiskbin.m4                    |      47 -
 distrib/sparc/ramdisk.sysinst/termcap.mini                     |     202 -
 distrib/sparc/ramdisk/Makefile                                 |      80 -
 distrib/sparc/ramdisk/disktab.preinstall                       |      31 -
 distrib/sparc/ramdisk/dot.profile                              |      86 -
 distrib/sparc/ramdisk/list                                     |     129 -
 distrib/sparc/ramdisk/mtree.conf                               |      87 -
 distrib/sparc/ramdisk/termcap.src                              |     146 -
 distrib/sparc/runlist.sh                                       |      13 -
 distrib/sparc64/install.md                                     |     252 -
 distrib/sparc64/miniroot/dot.profile                           |      81 -
 distrib/sparc64/miniroot/list                                  |      57 -
 distrib/sun3/MakeBootTape                                      |      38 -
 distrib/sun3/MakeInstTape                                      |      26 -
 distrib/sun3/Makefile                                          |      16 -
 distrib/sun3/Makefile.inc                                      |      10 -
 distrib/sun3/common/Make.crunch                                |      21 -
 distrib/sun3/common/Make.fsimage                               |      42 -
 distrib/sun3/common/Make.static                                |      11 -
 distrib/sun3/common/RunList.awk                                |      44 -
 distrib/sun3/common/RunList.sh                                 |      14 -
 distrib/sun3/common/install.md                                 |     229 -
 distrib/sun3/common/mini_bin.list                              |      38 -
 distrib/sun3/common/mini_sbin.list                             |      37 -
 distrib/sun3/common/mini_usr.list                              |      51 -
 distrib/sun3/common/miniroot.list                              |      50 -
 distrib/sun3/common/miniroot.tree                              |     106 -
 distrib/sun3/common/mr.disktab                                 |       5 -
 distrib/sun3/common/mr.etc.rc                                  |       9 -
 distrib/sun3/common/mr.fstab                                   |       5 -
 distrib/sun3/common/mr.profile                                 |      55 -
 distrib/sun3/common/mr.termcap                                 |      91 -
 distrib/sun3/common/ramdisk.list                               |      24 -
 distrib/sun3/common/ramdisk.tree                               |      39 -
 distrib/sun3/common/rd.MAKEDEV                                 |     258 -
 distrib/sun3/common/rd.disktab                                 |       2 -
 distrib/sun3/common/rd.fstab                                   |       2 -
 distrib/sun3/common/rd.passwd                                  |       1 -
 distrib/sun3/common/rd.protocols                               |       6 -
 distrib/sun3/common/rd.services                                |      56 -
 distrib/sun3/common/rd.sshrc                                   |       4 -
 distrib/sun3/common/rd.welcome                                 |      23 -
 distrib/sun3/common/rd_bin.conf                                |      85 -
 distrib/sun3/common/rd_bin.list                                |      46 -
 distrib/sun3/common/rdsetroot.c                                |     226 -
 distrib/sun3/miniroot/.cvsignore                               |      10 -
 distrib/sun3/miniroot/Makefile                                 |      76 -
 distrib/sun3/ramdisk/.cvsignore                                |       6 -
 distrib/sun3/ramdisk/Findrefs                                  |      12 -
 distrib/sun3/ramdisk/Makefile                                  |      92 -
 distrib/sun3/ramdisk/Showsyms                                  |      16 -
 distrib/utils/Makefile                                         |       9 -
 distrib/utils/Makefile.inc                                     |      12 -
 distrib/utils/README                                           |      45 -
 distrib/utils/init_s/Makefile                                  |      18 -
 distrib/utils/libhack/Makefile                                 |      39 -
 distrib/utils/libhack/Makefile.inc                             |      31 -
 distrib/utils/libhack/getcap.c                                 |    1033 -
 distrib/utils/libhack/getgrent.c                               |     188 -
 distrib/utils/libhack/gethost.c                                |     269 -
 distrib/utils/libhack/getnet.c                                 |      74 -
 distrib/utils/libhack/getnetgr.c                               |      35 -
 distrib/utils/libhack/getpwent.c                               |     173 -
 distrib/utils/libhack/localeconv.c                             |      46 -
 distrib/utils/libhack/opendir.c                                |      96 -
 distrib/utils/libhack/perror.c                                 |      60 -
 distrib/utils/libhack/setlocale.c                              |      33 -
 distrib/utils/libhack/strerror.c                               |      55 -
 distrib/utils/libhack/strsignal.c                              |      55 -
 distrib/utils/libhack/utmp.c                                   |      31 -
 distrib/utils/libhack/yplib.c                                  |     285 -
 distrib/utils/mksunbootcd/Makefile                             |      13 -
 distrib/utils/mksunbootcd/mksunbootcd.1                        |     131 -
 distrib/utils/mksunbootcd/mksunbootcd.c                        |     249 -
 distrib/utils/more/Makefile                                    |      19 -
 distrib/utils/more/ch.c                                        |     467 -
 distrib/utils/more/command.c                                   |     643 -
 distrib/utils/more/decode.c                                    |     213 -
 distrib/utils/more/extern.h                                    |     202 -
 distrib/utils/more/help.c                                      |      60 -
 distrib/utils/more/input.c                                     |     244 -
 distrib/utils/more/less.h                                      |      87 -
 distrib/utils/more/line.c                                      |     512 -
 distrib/utils/more/linenum.c                                   |     396 -
 distrib/utils/more/main.c                                      |     364 -
 distrib/utils/more/more.1                                      |     304 -
 distrib/utils/more/more.help                                   |      39 -
 distrib/utils/more/option.c                                    |     132 -
 distrib/utils/more/os.c                                        |     292 -
 distrib/utils/more/output.c                                    |     262 -
 distrib/utils/more/pathnames.h                                 |      40 -
 distrib/utils/more/position.c                                  |     175 -
 distrib/utils/more/prim.c                                      |     865 -
 distrib/utils/more/screen.c                                    |     612 -
 distrib/utils/more/signal.c                                    |     232 -
 distrib/utils/more/ttyin.c                                     |      91 -
 distrib/utils/script-installer/dot.commonutils                 |     132 -
 distrib/utils/script-installer/dot.instutils                   |     209 -
 distrib/utils/ssh/Makefile                                     |       9 -
 distrib/utils/ssh/ssh.c                                        |     608 -
 distrib/utils/sysinst/Makefile                                 |       8 -
 distrib/utils/sysinst/Makefile.inc                             |      49 -
 distrib/utils/sysinst/SPELLING.en                              |      14 -
 distrib/utils/sysinst/TODO                                     |     133 -
 distrib/utils/sysinst/arch/alpha/Makefile                      |      14 -
 distrib/utils/sysinst/arch/alpha/md.c                          |     351 -
 distrib/utils/sysinst/arch/alpha/md.h                          |     100 -
 distrib/utils/sysinst/arch/alpha/menus.md.en                   |      69 -
 distrib/utils/sysinst/arch/alpha/menus.md.fr                   |      70 -
 distrib/utils/sysinst/arch/alpha/msg.md.en                     |      77 -
 distrib/utils/sysinst/arch/alpha/msg.md.fr                     |      80 -
 distrib/utils/sysinst/arch/arm32/Makefile                      |      14 -
 distrib/utils/sysinst/arch/arm32/md.c                          |     517 -
 distrib/utils/sysinst/arch/arm32/md.h                          |     120 -
 distrib/utils/sysinst/arch/arm32/menus.md.en                   |      69 -
 distrib/utils/sysinst/arch/arm32/menus.md.fr                   |      70 -
 distrib/utils/sysinst/arch/arm32/msg.md.en                     |      97 -
 distrib/utils/sysinst/arch/arm32/msg.md.fr                     |     103 -
 distrib/utils/sysinst/arch/bebox/Makefile                      |      14 -
 distrib/utils/sysinst/arch/bebox/md.c                          |     362 -
 distrib/utils/sysinst/arch/bebox/md.h                          |     134 -
 distrib/utils/sysinst/arch/bebox/menus.md.en                   |     192 -
 distrib/utils/sysinst/arch/bebox/menus.md.fr                   |     194 -
 distrib/utils/sysinst/arch/bebox/msg.md.en                     |     227 -
 distrib/utils/sysinst/arch/bebox/msg.md.fr                     |     227 -
 distrib/utils/sysinst/arch/i386/Makefile                       |      14 -
 distrib/utils/sysinst/arch/i386/md.c                           |     615 -
 distrib/utils/sysinst/arch/i386/md.h                           |     167 -
 distrib/utils/sysinst/arch/i386/menus.md.en                    |     326 -
 distrib/utils/sysinst/arch/i386/menus.md.fr                    |     327 -
 distrib/utils/sysinst/arch/i386/msg.md.en                      |     287 -
 distrib/utils/sysinst/arch/i386/msg.md.fr                      |     290 -
 distrib/utils/sysinst/arch/mac68k/Makefile                     |      14 -
 distrib/utils/sysinst/arch/mac68k/md.c                         |     889 -
 distrib/utils/sysinst/arch/mac68k/md.h                         |     227 -
 distrib/utils/sysinst/arch/mac68k/menus.md.en                  |     345 -
 distrib/utils/sysinst/arch/mac68k/msg.md.en                    |     217 -
 distrib/utils/sysinst/arch/macppc/Makefile                     |      14 -
 distrib/utils/sysinst/arch/macppc/md.c                         |     363 -
 distrib/utils/sysinst/arch/macppc/md.h                         |      98 -
 distrib/utils/sysinst/arch/macppc/menus.md.en                  |      69 -
 distrib/utils/sysinst/arch/macppc/menus.md.fr                  |      70 -
 distrib/utils/sysinst/arch/macppc/msg.md.en                    |      77 -
 distrib/utils/sysinst/arch/macppc/msg.md.fr                    |      80 -
 distrib/utils/sysinst/arch/pc532/Makefile                      |      14 -
 distrib/utils/sysinst/arch/pc532/md.c                          |     326 -
 distrib/utils/sysinst/arch/pc532/md.h                          |      89 -
 distrib/utils/sysinst/arch/pc532/menus.md.en                   |      63 -
 distrib/utils/sysinst/arch/pc532/menus.md.fr                   |      64 -
 distrib/utils/sysinst/arch/pc532/msg.md.en                     |      72 -
 distrib/utils/sysinst/arch/pc532/msg.md.fr                     |      39 -
 distrib/utils/sysinst/arch/pmax/Makefile                       |      14 -
 distrib/utils/sysinst/arch/pmax/md.c                           |     223 -
 distrib/utils/sysinst/arch/pmax/md.h                           |     126 -
 distrib/utils/sysinst/arch/pmax/menus.md.en                    |      68 -
 distrib/utils/sysinst/arch/pmax/menus.md.fr                    |      69 -
 distrib/utils/sysinst/arch/pmax/msg.md.en                      |      76 -
 distrib/utils/sysinst/arch/pmax/msg.md.fr                      |      80 -
 distrib/utils/sysinst/arch/sparc/Makefile                      |      14 -
 distrib/utils/sysinst/arch/sparc/md.c                          |     217 -
 distrib/utils/sysinst/arch/sparc/md.h                          |     109 -
 distrib/utils/sysinst/arch/sparc/menus.md.en                   |      69 -
 distrib/utils/sysinst/arch/sparc/menus.md.fr                   |      70 -
 distrib/utils/sysinst/arch/sparc/msg.md.en                     |      77 -
 distrib/utils/sysinst/arch/sparc/msg.md.fr                     |      80 -
 distrib/utils/sysinst/arch/vax/Makefile                        |      14 -
 distrib/utils/sysinst/arch/vax/md.c                            |     209 -
 distrib/utils/sysinst/arch/vax/md.h                            |     109 -
 distrib/utils/sysinst/arch/vax/menus.md.en                     |      69 -
 distrib/utils/sysinst/arch/vax/menus.md.fr                     |      70 -
 distrib/utils/sysinst/arch/vax/msg.md.en                       |      77 -
 distrib/utils/sysinst/arch/vax/msg.md.fr                       |      80 -
 distrib/utils/sysinst/arch/x68k/Makefile                       |      17 -
 distrib/utils/sysinst/arch/x68k/md.c                           |     430 -
 distrib/utils/sysinst/arch/x68k/md.h                           |     139 -
 distrib/utils/sysinst/arch/x68k/menus.md.en                    |      69 -
 distrib/utils/sysinst/arch/x68k/msg.md.en                      |     100 -
 distrib/utils/sysinst/bsddisklabel.c                           |     255 -
 distrib/utils/sysinst/defs.h                                   |     331 -
 distrib/utils/sysinst/disks.c                                  |     591 -
 distrib/utils/sysinst/endian.h                                 |      26 -
 distrib/utils/sysinst/factor.c                                 |     154 -
 distrib/utils/sysinst/geom.c                                   |      66 -
 distrib/utils/sysinst/install.c                                |     131 -
 distrib/utils/sysinst/label.c                                  |     477 -
 distrib/utils/sysinst/main.c                                   |     346 -
 distrib/utils/sysinst/mbr.c                                    |     632 -
 distrib/utils/sysinst/mbr.h                                    |      88 -
 distrib/utils/sysinst/menus.mi.en                              |     326 -
 distrib/utils/sysinst/menus.mi.fr                              |     324 -
 distrib/utils/sysinst/msg.mi.en                                |     738 -
 distrib/utils/sysinst/msg.mi.fr                                |     764 -
 distrib/utils/sysinst/net.c                                    |     694 -
 distrib/utils/sysinst/run.c                                    |     537 -
 distrib/utils/sysinst/target.c                                 |     739 -
 distrib/utils/sysinst/txtwalk.c                                |     295 -
 distrib/utils/sysinst/txtwalk.h                                |      87 -
 distrib/utils/sysinst/upgrade.c                                |     222 -
 distrib/utils/sysinst/util.c                                   |     895 -
 distrib/utils/tls/Makefile                                     |       9 -
 distrib/utils/tls/tls.c                                        |     154 -
 distrib/utils/x_dd/Makefile                                    |      18 -
 distrib/utils/x_ftp/Makefile                                   |      22 -
 distrib/utils/x_gzip/Makefile                                  |       7 -
 distrib/utils/x_gzip/gzip.1                                    |     153 -
 distrib/utils/x_gzip/gzip.c                                    |     641 -
 distrib/utils/x_ifconfig/Makefile                              |      14 -
 distrib/utils/x_netstat/Makefile                               |      18 -
 distrib/utils/x_ping/Makefile                                  |      14 -
 distrib/utils/x_route/Makefile                                 |      18 -
 distrib/utils/x_sh/Makefile                                    |      14 -
 distrib/utils/zcat/Makefile                                    |      25 -
 distrib/utils/zcat/zcat.c                                      |     129 -
 distrib/vax/Makefile                                           |       5 -
 distrib/vax/Makefile.inc                                       |       3 -
 distrib/vax/inst-common/Makefile.inc                           |      69 -
 distrib/vax/inst-common/dot.commonutils                        |     113 -
 distrib/vax/inst-common/instbin.conf                           |      23 -
 distrib/vax/inst-common/list                                   |      74 -
 distrib/vax/inst-common/mtree.conf                             |      72 -
 distrib/vax/inst-common/termcap.vt                             |      66 -
 distrib/vax/inst/Makefile                                      |       8 -
 distrib/vax/inst/disktab.preinstall                            |      31 -
 distrib/vax/inst/dot.profile                                   |      19 -
 distrib/vax/inst/list                                          |       7 -
 distrib/vax/list2sh.awk                                        |      55 -
 distrib/vax/miniroot/Makefile                                  |      70 -
 distrib/vax/miniroot/list                                      |       5 -
 distrib/vax/ramdisk/Makefile                                   |      69 -
 distrib/vax/ramdisk/Makefile.inc                               |      53 -
 distrib/vax/ramdisk/disktab.preinstall                         |      31 -
 distrib/vax/ramdisk/dot.commonutils                            |     132 -
 distrib/vax/ramdisk/dot.hdprofile                              |      59 -
 distrib/vax/ramdisk/dot.instutils                              |     209 -
 distrib/vax/ramdisk/dot.profile                                |      68 -
 distrib/vax/ramdisk/install.tmpl                               |     513 -
 distrib/vax/ramdisk/list                                       |     102 -
 distrib/vax/ramdisk/mtree.conf                                 |      82 -
 distrib/vax/ramdisk/ramdiskbin.conf                            |      31 -
 distrib/vax/ramdisk/start.tmpl                                 |      49 -
 distrib/vax/ramdisk/termcap.vt100                              |      13 -
 distrib/vax/ramdisk/upgrade.tmpl                               |     257 -
 distrib/vax/runlist.sh                                         |      13 -
 distrib/vax/rx33/Makefile                                      |      14 -
 distrib/vax/rx50/Makefile                                      |      22 -
 distrib/vax/tk50/Makefile                                      |      40 -
 distrib/x68k/floppies/Makefile                                 |       5 -
 distrib/x68k/floppies/Makefile.inc                             |       6 -
 distrib/x68k/floppies/bootfloppy-common/Makefile.inc           |      73 -
 distrib/x68k/floppies/bootfloppy-common/list                   |       4 -
 distrib/x68k/floppies/bootfloppy/Makefile                      |      13 -
 distrib/x68k/floppies/list2sh.awk                              |      55 -
 distrib/x68k/floppies/ramdisk/Makefile                         |      71 -
 distrib/x68k/floppies/ramdisk/Makefile.inc                     |      53 -
 distrib/x68k/floppies/ramdisk/disktab.preinstall               |      31 -
 distrib/x68k/floppies/ramdisk/dot.hdprofile                    |      66 -
 distrib/x68k/floppies/ramdisk/dot.profile                      |      68 -
 distrib/x68k/floppies/ramdisk/install.tmpl                     |     521 -
 distrib/x68k/floppies/ramdisk/list                             |      95 -
 distrib/x68k/floppies/ramdisk/mtree.conf                       |      77 -
 distrib/x68k/floppies/ramdisk/ramdiskbin.conf                  |      33 -
 distrib/x68k/floppies/ramdisk/start.tmpl                       |      45 -
 distrib/x68k/floppies/ramdisk/termcap.vt                       |      67 -
 distrib/x68k/floppies/ramdisk/upgrade.tmpl                     |     289 -
 distrib/x68k/floppies/runlist.sh                               |      13 -
 etc/COPYRIGHT                                                  |      65 -
 etc/MAKEDEV.local                                              |      54 -
 etc/Makefile                                                   |     324 -
 etc/aliases                                                    |      54 -
 etc/bootptab                                                   |      82 -
 etc/changelist                                                 |      73 -
 etc/crontab                                                    |      19 -
 etc/csh.cshrc                                                  |       3 -
 etc/csh.login                                                  |       3 -
 etc/csh.logout                                                 |       3 -
 etc/daily                                                      |     224 -
 etc/daily.conf                                                 |      16 -
 etc/dm.conf                                                    |      20 -
 etc/etc.alpha/MAKEDEV                                          |     519 -
 etc/etc.alpha/Makefile.inc                                     |      17 -
 etc/etc.alpha/disktab                                          |      46 -
 etc/etc.alpha/fstab.sd                                         |       5 -
 etc/etc.alpha/ttys                                             |      56 -
 etc/etc.amiga/MAKEDEV                                          |     549 -
 etc/etc.amiga/Makefile.inc                                     |       8 -
 etc/etc.amiga/disktab                                          |      51 -
 etc/etc.amiga/fstab.tmp                                        |      24 -
 etc/etc.amiga/ttys                                             |      91 -
 etc/etc.arm32/MAKEDEV                                          |     577 -
 etc/etc.arm32/Makefile.inc                                     |       8 -
 etc/etc.arm32/disktab                                          |      97 -
 etc/etc.arm32/fstab.wd                                         |      14 -
 etc/etc.arm32/ttys                                             |      59 -
 etc/etc.atari/MAKEDEV                                          |     528 -
 etc/etc.atari/Makefile.inc                                     |       8 -
 etc/etc.atari/disktab                                          |      51 -
 etc/etc.atari/fstab.tmp                                        |      17 -
 etc/etc.atari/ttys                                             |      44 -
 etc/etc.bebox/MAKEDEV                                          |     518 -
 etc/etc.bebox/Makefile.inc                                     |       8 -
 etc/etc.bebox/disktab                                          |     121 -
 etc/etc.bebox/fstab.wd                                         |      19 -
 etc/etc.bebox/ttys                                             |      48 -
 etc/etc.hp300/MAKEDEV                                          |     409 -
 etc/etc.hp300/Makefile.inc                                     |       8 -
 etc/etc.hp300/disktab                                          |     290 -
 etc/etc.hp300/fstab.rd                                         |       8 -
 etc/etc.hp300/fstab.sd                                         |       8 -
 etc/etc.hp300/ttys                                             |      52 -
 etc/etc.hpcmips/MAKEDEV                                        |     455 -
 etc/etc.hpcmips/disktab                                        |      39 -
 etc/etc.hpcmips/fstab.wd                                       |       5 -
 etc/etc.hpcmips/ttys                                           |      41 -
 etc/etc.i386/MAKEDEV                                           |     632 -
 etc/etc.i386/Makefile.inc                                      |       8 -
 etc/etc.i386/disktab                                           |     127 -
 etc/etc.i386/fstab.sd                                          |      18 -
 etc/etc.i386/fstab.wd                                          |      20 -
 etc/etc.i386/ttys                                              |      51 -
 etc/etc.mac68k/MAKEDEV                                         |     363 -
 etc/etc.mac68k/disktab                                         |     116 -
 etc/etc.mac68k/fstab.sd                                        |       7 -
 etc/etc.mac68k/ttys                                            |      56 -
 etc/etc.macppc/MAKEDEV                                         |     502 -
 etc/etc.macppc/disktab                                         |      46 -
 etc/etc.macppc/fstab.sd                                        |       7 -
 etc/etc.macppc/ttys                                            |      48 -
 etc/etc.mvme68k/MAKEDEV                                        |     338 -
 etc/etc.mvme68k/disktab                                        |      37 -
 etc/etc.mvme68k/fstab.nfs                                      |       4 -
 etc/etc.mvme68k/fstab.sd                                       |       7 -
 etc/etc.mvme68k/ttys                                           |      62 -
 etc/etc.newsmips/MAKEDEV                                       |     329 -
 etc/etc.newsmips/disktab                                       |      29 -
 etc/etc.newsmips/fstab.sd                                      |       5 -
 etc/etc.newsmips/ttys                                          |      47 -
 etc/etc.next68k/MAKEDEV                                        |     420 -
 etc/etc.next68k/disktab                                        |      24 -
 etc/etc.next68k/fstab.nfs                                      |      13 -
 etc/etc.next68k/ttys                                           |      51 -
 etc/etc.pc532/MAKEDEV                                          |     342 -
 etc/etc.pc532/disktab                                          |      70 -
 etc/etc.pc532/fstab.sd                                         |       5 -
 etc/etc.pc532/ttys                                             |      46 -
 etc/etc.pmax/MAKEDEV                                           |     358 -
 etc/etc.pmax/Makefile.inc                                      |      30 -
 etc/etc.pmax/disktab                                           |     242 -
 etc/etc.pmax/fstab.rz                                          |       5 -
 etc/etc.pmax/ttys                                              |      67 -
 etc/etc.sparc/MAKEDEV                                          |     470 -
 etc/etc.sparc/Makefile.inc                                     |      45 -
 etc/etc.sparc/disktab                                          |     867 -
 etc/etc.sparc/fstab.sd                                         |       5 -
 etc/etc.sparc/ttys                                             |      41 -
 etc/etc.sparc64/MAKEDEV                                        |     451 -
 etc/etc.sparc64/Makefile.inc                                   |       8 -
 etc/etc.sparc64/disktab                                        |     867 -
 etc/etc.sparc64/fstab.sd                                       |       5 -
 etc/etc.sparc64/ttys                                           |      41 -
 etc/etc.sun3/MAKEDEV                                           |     273 -
 etc/etc.sun3/Makefile.inc                                      |      45 -
 etc/etc.sun3/disktab                                           |      40 -
 etc/etc.sun3/fstab.nfs                                         |       4 -
 etc/etc.sun3/fstab.sd0                                         |       5 -
 etc/etc.sun3/ttyaction                                         |       5 -
 etc/etc.sun3/ttys                                              |      43 -
 etc/etc.vax/MAKEDEV                                            |     544 -
 etc/etc.vax/Makefile.inc                                       |      16 -
 etc/etc.vax/disktab                                            |     527 -
 etc/etc.vax/fstab.ra                                           |       5 -
 etc/etc.vax/pcs750.bin.uu                                      |     254 -
 etc/etc.vax/ttys                                               |      72 -
 etc/etc.x68k/MAKEDEV                                           |     524 -
 etc/etc.x68k/Makefile.inc                                      |      10 -
 etc/etc.x68k/disktab                                           |      65 -
 etc/etc.x68k/fstab.sd0                                         |      11 -
 etc/etc.x68k/fstab.sd1                                         |      11 -
 etc/etc.x68k/fstab.sd2                                         |      11 -
 etc/etc.x68k/fstab.sd3                                         |      11 -
 etc/etc.x68k/fstab.sd4                                         |      11 -
 etc/etc.x68k/fstab.sd5                                         |      11 -
 etc/etc.x68k/fstab.sd6                                         |      11 -
 etc/etc.x68k/fstab.sd7                                         |      11 -
 etc/etc.x68k/ttys                                              |      49 -
 etc/floppytab                                                  |      76 -
 etc/ftpchroot                                                  |       5 -
 etc/ftpusers                                                   |       8 -
 etc/gettytab                                                   |     154 -
 etc/group                                                      |      20 -
 etc/hosts                                                      |      15 -
 etc/hosts.equiv                                                |       1 -
 etc/hosts.lpd                                                  |       1 -
 etc/inetd.conf                                                 |      66 -
 etc/kerberosIV/README                                          |      36 -
 etc/kerberosIV/krb.conf                                        |       2 -
 etc/kerberosIV/krb.realms                                      |       1 -
 etc/ld.so.conf                                                 |       1 -
 etc/lkm.conf                                                   |       6 -
 etc/mailer.conf                                                |       8 -
 etc/man.conf                                                   |      60 -
 etc/master.passwd                                              |      12 -
 etc/minfree                                                    |       1 -
 etc/monthly                                                    |      26 -
 etc/monthly.conf                                               |       4 -
 etc/motd                                                       |       4 -
 etc/mrouted.conf                                               |      43 -
 etc/mtree/Makefile                                             |       6 -
 etc/mtree/NetBSD.dist                                          |    2152 -
 etc/mtree/special                                              |     160 -
 etc/namedb/127                                                 |      10 -
 etc/namedb/named.boot                                          |      20 -
 etc/namedb/named.conf                                          |      50 -
 etc/namedb/root.cache                                          |      85 -
 etc/netstart                                                   |     216 -
 etc/networks                                                   |      16 -
 etc/newsyslog.conf                                             |      15 -
 etc/nsswitch.conf                                              |      29 -
 etc/phones                                                     |       8 -
 etc/printcap                                                   |      33 -
 etc/profile                                                    |       3 -
 etc/protocols                                                  |      38 -
 etc/rbootd.conf                                                |      12 -
 etc/rc                                                         |     603 -
 etc/rc.conf                                                    |     128 -
 etc/rc.lkm                                                     |      83 -
 etc/rc.local                                                   |      18 -
 etc/rc.shutdown                                                |      51 -
 etc/rc.subr                                                    |      79 -
 etc/rc.wscons                                                  |     116 -
 etc/remote                                                     |      40 -
 etc/root/dot.cshrc                                             |      35 -
 etc/root/dot.klogin                                            |       2 -
 etc/root/dot.login                                             |       4 -
 etc/root/dot.profile                                           |      25 -
 etc/rpc                                                        |      36 -
 etc/rtadvd.conf                                                |      18 -
 etc/security                                                   |     691 -
 etc/security.conf                                              |      19 -
 etc/services                                                   |     219 -
 etc/shells                                                     |       9 -
 etc/syslog.conf                                                |      19 -
 etc/weekly                                                     |      73 -
 etc/weekly.conf                                                |       6 -
 etc/wscons.conf                                                |      26 -
 games/Makefile                                                 |      14 -
 games/Makefile.inc                                             |      16 -
 games/adventure/Makefile                                       |      16 -
 games/adventure/adventure.6                                    |      59 -
 games/adventure/crc.c                                          |     140 -
 games/adventure/done.c                                         |     174 -
 games/adventure/extern.h                                       |     130 -
 games/adventure/glorkz                                         |    1815 -
 games/adventure/hdr.h                                          |     163 -
 games/adventure/init.c                                         |     305 -
 games/adventure/io.c                                           |     594 -
 games/adventure/main.c                                         |     768 -
 games/adventure/save.c                                         |     196 -
 games/adventure/setup.c                                        |     128 -
 games/adventure/subr.c                                         |    1058 -
 games/adventure/vocab.c                                        |     229 -
 games/adventure/wizard.c                                       |     164 -
 games/arithmetic/Makefile                                      |       8 -
 games/arithmetic/arithmetic.6                                  |     107 -
 games/arithmetic/arithmetic.c                                  |     396 -
 games/atc/BUGS                                                 |       4 -
 games/atc/Makefile                                             |      27 -
 games/atc/atc.6                                                |     489 -
 games/atc/def.h                                                |      89 -
 games/atc/extern.c                                             |      82 -
 games/atc/extern.h                                             |     140 -
 games/atc/games/Atlantis                                       |      31 -
 games/atc/games/Game_List                                      |      15 -
 games/atc/games/Killer                                         |      21 -
 games/atc/games/OHare                                          |      23 -
 games/atc/games/Tic-Tac-Toe                                    |      25 -
 games/atc/games/airports                                       |      30 -
 games/atc/games/box                                            |      45 -
 games/atc/games/crosshatch                                     |      39 -
 games/atc/games/crossover                                      |      14 -
 games/atc/games/default                                        |      21 -
 games/atc/games/easy                                           |      15 -
 games/atc/games/game_2                                         |      22 -
 games/atc/games/game_3                                         |      17 -
 games/atc/games/game_4                                         |      37 -
 games/atc/games/novice                                         |      15 -
 games/atc/games/two-corners                                    |      21 -
 games/atc/grammar.y                                            |     404 -
 games/atc/graphics.c                                           |     445 -
 games/atc/include.h                                            |      74 -
 games/atc/input.c                                              |     679 -
 games/atc/lex.l                                                |      79 -
 games/atc/list.c                                               |     124 -
 games/atc/log.c                                                |     299 -
 games/atc/main.c                                               |     321 -
 games/atc/pathnames.h                                          |      41 -
 games/atc/struct.h                                             |     115 -
 games/atc/tunable.c                                            |      63 -
 games/atc/tunable.h                                            |      50 -
 games/atc/update.c                                             |     423 -
 games/backgammon/Makefile                                      |       8 -
 games/backgammon/Makefile.inc                                  |      12 -
 games/backgammon/backgammon/Makefile                           |       8 -
 games/backgammon/backgammon/backgammon.6                       |     182 -
 games/backgammon/backgammon/backlocal.h                        |      48 -
 games/backgammon/backgammon/extra.c                            |     258 -
 games/backgammon/backgammon/main.c                             |     534 -
 games/backgammon/backgammon/move.c                             |     571 -
 games/backgammon/backgammon/text.c                             |     139 -
 games/backgammon/backgammon/version.c                          |      48 -
 games/backgammon/common_source/Makefile                        |      14 -
 games/backgammon/common_source/allow.c                         |     117 -
 games/backgammon/common_source/back.h                          |     189 -
 games/backgammon/common_source/board.c                         |     186 -
 games/backgammon/common_source/check.c                         |     162 -
 games/backgammon/common_source/fancy.c                         |     741 -
 games/backgammon/common_source/init.c                          |     103 -
 games/backgammon/common_source/odds.c                          |     122 -
 games/backgammon/common_source/one.c                           |     179 -
 games/backgammon/common_source/save.c                          |     186 -
 games/backgammon/common_source/subs.c                          |     511 -
 games/backgammon/common_source/table.c                         |     310 -
 games/backgammon/teachgammon/Makefile                          |       8 -
 games/backgammon/teachgammon/data.c                            |     346 -
 games/backgammon/teachgammon/teach.c                           |     164 -
 games/backgammon/teachgammon/ttext1.c                          |     192 -
 games/backgammon/teachgammon/ttext2.c                          |     200 -
 games/backgammon/teachgammon/tutor.c                           |     160 -
 games/backgammon/teachgammon/tutor.h                           |      72 -
 games/banner/Makefile                                          |       7 -
 games/banner/banner.6                                          |      70 -
 games/banner/banner.c                                          |    1170 -
 games/battlestar/Makefile                                      |      14 -
 games/battlestar/battlestar.6                                  |     163 -
 games/battlestar/battlestar.c                                  |     106 -
 games/battlestar/com1.c                                        |     266 -
 games/battlestar/com2.c                                        |     323 -
 games/battlestar/com3.c                                        |     321 -
 games/battlestar/com4.c                                        |     395 -
 games/battlestar/com5.c                                        |     351 -
 games/battlestar/com6.c                                        |     250 -
 games/battlestar/com7.c                                        |     276 -
 games/battlestar/cypher.c                                      |     476 -
 games/battlestar/dayfile.c                                     |    1212 -
 games/battlestar/dayobjs.c                                     |     145 -
 games/battlestar/extern.h                                      |     375 -
 games/battlestar/fly.c                                         |     295 -
 games/battlestar/getcom.c                                      |     106 -
 games/battlestar/globals.c                                     |     262 -
 games/battlestar/init.c                                        |     142 -
 games/battlestar/misc.c                                        |      71 -
 games/battlestar/nightfile.c                                   |    1184 -
 games/battlestar/nightobjs.c                                   |     107 -
 games/battlestar/parse.c                                       |     112 -
 games/battlestar/pathnames.h                                   |      38 -
 games/battlestar/room.c                                        |     241 -
 games/battlestar/save.c                                        |     203 -
 games/battlestar/words.c                                       |     213 -
 games/bcd/Makefile                                             |      10 -
 games/bcd/bcd.6                                                |      86 -
 games/bcd/bcd.c                                                |     227 -
 games/boggle/Makefile                                          |      38 -
 games/boggle/README                                            |      66 -
 games/boggle/boggle/Makefile                                   |      18 -
 games/boggle/boggle/bog.c                                      |     719 -
 games/boggle/boggle/bog.h                                      |      87 -
 games/boggle/boggle/boggle.6                                   |     116 -
 games/boggle/boggle/extern.h                                   |      75 -
 games/boggle/boggle/help.c                                     |     108 -
 games/boggle/boggle/helpfile                                   |      92 -
 games/boggle/boggle/mach.c                                     |     687 -
 games/boggle/boggle/prtable.c                                  |     134 -
 games/boggle/boggle/timer.c                                    |     126 -
 games/boggle/boggle/word.c                                     |     223 -
 games/boggle/mkdict/Makefile                                   |      21 -
 games/boggle/mkdict/mkdict.c                                   |     133 -
 games/boggle/mkindex/Makefile                                  |      21 -
 games/boggle/mkindex/mkindex.c                                 |     130 -
 games/caesar/Makefile                                          |      11 -
 games/caesar/caesar.6                                          |      77 -
 games/caesar/caesar.c                                          |     164 -
 games/caesar/rot13.sh                                          |      38 -
 games/canfield/Makefile                                        |       6 -
 games/canfield/canfield/Makefile                               |      13 -
 games/canfield/canfield/canfield.6                             |     132 -
 games/canfield/canfield/canfield.c                             |    1825 -
 games/canfield/canfield/pathnames.h                            |      39 -
 games/canfield/cfscores/Makefile                               |      10 -
 games/canfield/cfscores/cfscores.c                             |     160 -
 games/countmail/Makefile                                       |       7 -
 games/countmail/countmail                                      |     185 -
 games/countmail/countmail.6                                    |      58 -
 games/cribbage/Makefile                                        |      19 -
 games/cribbage/cards.c                                         |     157 -
 games/cribbage/crib.c                                          |     664 -
 games/cribbage/cribbage.6                                      |     187 -
 games/cribbage/cribbage.h                                      |     114 -
 games/cribbage/cribbage.n                                      |     226 -
 games/cribbage/cribcur.h                                       |      59 -
 games/cribbage/deck.h                                          |      87 -
 games/cribbage/extern.c                                        |      75 -
 games/cribbage/instr.c                                         |     102 -
 games/cribbage/io.c                                            |     633 -
 games/cribbage/pathnames.h                                     |      40 -
 games/cribbage/score.c                                         |     378 -
 games/cribbage/support.c                                       |     365 -
 games/dm/Makefile                                              |      11 -
 games/dm/dm.8                                                  |     111 -
 games/dm/dm.c                                                  |     341 -
 games/dm/dm.conf.5                                             |     122 -
 games/dm/pathnames.h                                           |      41 -
 games/factor/Makefile                                          |      11 -
 games/factor/factor.6                                          |     126 -
 games/factor/factor.c                                          |     209 -
 games/fish/Makefile                                            |      14 -
 games/fish/fish.6                                              |      91 -
 games/fish/fish.c                                              |     496 -
 games/fish/fish.instr                                          |      29 -
 games/fish/pathnames.h                                         |      39 -
 games/fortune/Makefile                                         |       8 -
 games/fortune/Notes                                            |     178 -
 games/fortune/README                                           |      41 -
 games/fortune/datfiles/Makefile                                |      67 -
 games/fortune/datfiles/fortunes                                |   16287 -
 games/fortune/datfiles/fortunes-o.fake                         |       2 -
 games/fortune/datfiles/fortunes-o.real                         |    2029 -
 games/fortune/datfiles/fortunes-o.sp.ok                        |     299 -
 games/fortune/datfiles/fortunes.sp.ok                          |    1978 -
 games/fortune/datfiles/fortunes2                               |   55888 --
 games/fortune/datfiles/fortunes2-o.fake                        |       2 -
 games/fortune/datfiles/fortunes2-o.real                        |   15338 -
 games/fortune/datfiles/limerick                                |      44 -
 games/fortune/datfiles/limerick-o.fake                         |       2 -
 games/fortune/datfiles/limerick-o.real                         |    5325 -
 games/fortune/datfiles/startrek                                |     756 -
 games/fortune/datfiles/startrek.sp.ok                          |      86 -
 games/fortune/datfiles/unamerican-o.fake                       |       2 -
 games/fortune/datfiles/unamerican-o.real                       |     385 -
 games/fortune/datfiles/zippy                                   |    1333 -
 games/fortune/datfiles/zippy.sp.ok                             |     210 -
 games/fortune/fortune/Makefile                                 |       9 -
 games/fortune/fortune/fortune.6                                |     173 -
 games/fortune/fortune/fortune.c                                |    1374 -
 games/fortune/fortune/pathnames.h                              |      38 -
 games/fortune/strfile/Makefile                                 |      17 -
 games/fortune/strfile/strfile.8                                |     148 -
 games/fortune/strfile/strfile.c                                |     477 -
 games/fortune/strfile/strfile.h                                |      59 -
 games/fortune/tools/Do_spell                                   |      11 -
 games/fortune/tools/Do_troff                                   |      11 -
 games/fortune/tools/Troff.mac                                  |      28 -
 games/fortune/tools/Troff.sed                                  |      13 -
 games/fortune/tools/do_sort                                    |      12 -
 games/fortune/unstr/Makefile                                   |       8 -
 games/fortune/unstr/unstr.c                                    |     154 -
 games/gomoku/Makefile                                          |      11 -
 games/gomoku/bdinit.c                                          |     255 -
 games/gomoku/bdisp.c                                           |     291 -
 games/gomoku/gomoku.6                                          |      95 -
 games/gomoku/gomoku.h                                          |     305 -
 games/gomoku/main.c                                            |     554 -
 games/gomoku/makemove.c                                        |     311 -
 games/gomoku/pickmove.c                                        |    1512 -
 games/gomoku/stoc.c                                            |     116 -
 games/hack/COPYRIGHT                                           |       8 -
 games/hack/Makefile                                            |      60 -
 games/hack/Makequest                                           |     198 -
 games/hack/OWNER                                               |       2 -
 games/hack/Original_READ_ME                                    |      63 -
 games/hack/READ_ME                                             |      94 -
 games/hack/alloc.c                                             |      55 -
 games/hack/config.h                                            |     148 -
 games/hack/data                                                |     232 -
 games/hack/date.h                                              |       3 -
 games/hack/def.edog.h                                          |      19 -
 games/hack/def.eshk.h                                          |      30 -
 games/hack/def.flag.h                                          |      47 -
 games/hack/def.func_tab.h                                      |      21 -
 games/hack/def.gen.h                                           |      19 -
 games/hack/def.gold.h                                          |      16 -
 games/hack/def.mkroom.h                                        |      31 -
 games/hack/def.monst.h                                         |      64 -
 games/hack/def.obj.h                                           |      53 -
 games/hack/def.objclass.h                                      |      65 -
 games/hack/def.objects.h                                       |     293 -
 games/hack/def.permonst.h                                      |      32 -
 games/hack/def.rm.h                                            |      57 -
 games/hack/def.trap.h                                          |      31 -
 games/hack/def.wseg.h                                          |      18 -
 games/hack/extern.h                                            |     676 -
 games/hack/hack.6                                              |     147 -
 games/hack/hack.Decl.c                                         |      52 -
 games/hack/hack.apply.c                                        |     480 -
 games/hack/hack.bones.c                                        |     119 -
 games/hack/hack.c                                              |     918 -
 games/hack/hack.cmd.c                                          |     325 -
 games/hack/hack.do.c                                           |     529 -
 games/hack/hack.do_name.c                                      |     328 -
 games/hack/hack.do_wear.c                                      |     395 -
 games/hack/hack.dog.c                                          |     469 -
 games/hack/hack.eat.c                                          |     502 -
 games/hack/hack.end.c                                          |     734 -
 games/hack/hack.engrave.c                                      |     346 -
 games/hack/hack.fight.c                                        |     411 -
 games/hack/hack.fix                                            |     115 -
 games/hack/hack.h                                              |     192 -
 games/hack/hack.invent.c                                       |     984 -
 games/hack/hack.ioctl.c                                        |      55 -
 games/hack/hack.lev.c                                          |     293 -
 games/hack/hack.main.c                                         |     533 -
 games/hack/hack.makemon.c                                      |     224 -
 games/hack/hack.mfndpos.h                                      |      17 -
 games/hack/hack.mhitu.c                                        |     398 -
 games/hack/hack.mklev.c                                        |     797 -
 games/hack/hack.mkmaze.c                                       |     160 -
 games/hack/hack.mkobj.c                                        |     171 -
 games/hack/hack.mkshop.c                                       |     311 -
 games/hack/hack.mon.c                                          |     984 -
 games/hack/hack.monst.c                                        |      87 -
 games/hack/hack.o_init.c                                       |     189 -
 games/hack/hack.objnam.c                                       |     587 -
 games/hack/hack.options.c                                      |     219 -
 games/hack/hack.pager.c                                        |     437 -
 games/hack/hack.potion.c                                       |     409 -
 games/hack/hack.pri.c                                          |     758 -
 games/hack/hack.read.c                                         |     592 -
 games/hack/hack.rip.c                                          |      77 -
 games/hack/hack.rumors.c                                       |      93 -
 games/hack/hack.save.c                                         |     257 -
 games/hack/hack.search.c                                       |     159 -
 games/hack/hack.sh                                             |      15 -
 games/hack/hack.shk.c                                          |    1111 -
 games/hack/hack.shknam.c                                       |     173 -
 games/hack/hack.steal.c                                        |     227 -
 games/hack/hack.termcap.c                                      |     317 -
 games/hack/hack.timeout.c                                      |      77 -
 games/hack/hack.topl.c                                         |     259 -
 games/hack/hack.track.c                                        |      56 -
 games/hack/hack.trap.c                                         |     496 -
 games/hack/hack.tty.c                                          |     342 -
 games/hack/hack.u_init.c                                       |     390 -
 games/hack/hack.unix.c                                         |     475 -
 games/hack/hack.vault.c                                        |     320 -
 games/hack/hack.version.c                                      |      27 -
 games/hack/hack.wield.c                                        |     116 -
 games/hack/hack.wizard.c                                       |     222 -
 games/hack/hack.worm.c                                         |     235 -
 games/hack/hack.worn.c                                         |     103 -
 games/hack/hack.zap.c                                          |     704 -
 games/hack/help                                                |     132 -
 games/hack/hh                                                  |      55 -
 games/hack/makedefs.c                                          |     274 -
 games/hack/pathnames.h                                         |      41 -
 games/hack/rnd.c                                               |      44 -
 games/hack/rumors                                              |     505 -
 games/hangman/Makefile                                         |      14 -
 games/hangman/endgame.c                                        |      84 -
 games/hangman/extern.c                                         |      81 -
 games/hangman/getguess.c                                       |     114 -
 games/hangman/getword.c                                        |      82 -
 games/hangman/hangman.6                                        |      65 -
 games/hangman/hangman.h                                        |      97 -
 games/hangman/main.c                                           |      99 -
 games/hangman/pathnames.h                                      |      38 -
 games/hangman/playgame.c                                       |      68 -
 games/hangman/prdata.c                                         |      66 -
 games/hangman/prman.c                                          |      63 -
 games/hangman/prword.c                                         |      57 -
 games/hangman/setup.c                                          |      81 -
 games/hunt/Makefile                                            |       5 -
 games/hunt/Makefile.inc                                        |      67 -
 games/hunt/README                                              |     175 -
 games/hunt/hunt/Makefile                                       |      14 -
 games/hunt/hunt/connect.c                                      |      48 -
 games/hunt/hunt/hunt.6                                         |     380 -
 games/hunt/hunt/hunt.c                                         |    1090 -
 games/hunt/hunt/otto.c                                         |     594 -
 games/hunt/hunt/playit.c                                       |     639 -
 games/hunt/huntd/Makefile                                      |       8 -
 games/hunt/huntd/answer.c                                      |     401 -
 games/hunt/huntd/bsd.h                                         |      17 -
 games/hunt/huntd/ctl.c                                         |      60 -
 games/hunt/huntd/ctl_transact.c                                |     113 -
 games/hunt/huntd/draw.c                                        |     381 -
 games/hunt/huntd/driver.c                                      |     976 -
 games/hunt/huntd/execute.c                                     |     582 -
 games/hunt/huntd/expl.c                                        |     225 -
 games/hunt/huntd/extern.c                                      |      68 -
 games/hunt/huntd/faketalk.c                                    |     231 -
 games/hunt/huntd/get_names.c                                   |     133 -
 games/hunt/huntd/hunt.h                                        |     454 -
 games/hunt/huntd/huntd.6                                       |     100 -
 games/hunt/huntd/makemaze.c                                    |     208 -
 games/hunt/huntd/pathname.c                                    |      41 -
 games/hunt/huntd/shots.c                                       |    1136 -
 games/hunt/huntd/talk_ctl.h                                    |      82 -
 games/hunt/huntd/terminal.c                                    |     145 -
 games/larn/COPYRIGHT                                           |       8 -
 games/larn/Fixed.Bugs                                          |     218 -
 games/larn/Makefile                                            |      76 -
 games/larn/OWNER                                               |       3 -
 games/larn/README                                              |     150 -
 games/larn/bill.c                                              |     164 -
 games/larn/config.c                                            |      50 -
 games/larn/create.c                                            |     600 -
 games/larn/data.c                                              |     718 -
 games/larn/datfiles/larn.help                                  |     140 -
 games/larn/datfiles/larnmaze                                   |     288 -
 games/larn/datfiles/larnopts                                   |      12 -
 games/larn/diag.c                                              |     405 -
 games/larn/display.c                                           |     630 -
 games/larn/extern.h                                            |     312 -
 games/larn/fortune.c                                           |      98 -
 games/larn/global.c                                            |     948 -
 games/larn/header.h                                            |     445 -
 games/larn/help.c                                              |     125 -
 games/larn/holidays                                            |      66 -
 games/larn/io.c                                                |    1134 -
 games/larn/larn.6                                              |     161 -
 games/larn/main.c                                              |    1319 -
 games/larn/monster.c                                           |    1910 -
 games/larn/moreobj.c                                           |     485 -
 games/larn/movem.c                                             |     446 -
 games/larn/nap.c                                               |      24 -
 games/larn/object.c                                            |    1348 -
 games/larn/pathnames.h                                         |      42 -
 games/larn/regen.c                                             |     187 -
 games/larn/savelev.c                                           |      65 -
 games/larn/scores.c                                            |     832 -
 games/larn/signal.c                                            |     140 -
 games/larn/store.c                                             |     909 -
 games/larn/tok.c                                               |     274 -
 games/mille/Makefile                                           |      13 -
 games/mille/comp.c                                             |     489 -
 games/mille/end.c                                              |     155 -
 games/mille/extern.c                                           |     179 -
 games/mille/init.c                                             |     261 -
 games/mille/mille.6                                            |     382 -
 games/mille/mille.c                                            |     168 -
 games/mille/mille.h                                            |     274 -
 games/mille/misc.c                                             |     278 -
 games/mille/move.c                                             |     570 -
 games/mille/print.c                                            |     184 -
 games/mille/roll.c                                             |      65 -
 games/mille/save.c                                             |     177 -
 games/mille/table.c                                            |      76 -
 games/mille/types.c                                            |      86 -
 games/mille/varpush.c                                          |     110 -
 games/monop/Makefile                                           |      25 -
 games/monop/brd.dat                                            |      80 -
 games/monop/cards.c                                            |     245 -
 games/monop/cards.inp                                          |     122 -
 games/monop/deck.h                                             |      52 -
 games/monop/execute.c                                          |     274 -
 games/monop/getinp.c                                           |     130 -
 games/monop/houses.c                                           |     290 -
 games/monop/initdeck.c                                         |     231 -
 games/monop/jail.c                                             |     144 -
 games/monop/misc.c                                             |     295 -
 games/monop/mon.dat                                            |      46 -
 games/monop/monop.6                                            |     185 -
 games/monop/monop.c                                            |     203 -
 games/monop/monop.def                                          |     122 -
 games/monop/monop.ext                                          |      61 -
 games/monop/monop.h                                            |     211 -
 games/monop/morg.c                                             |     243 -
 games/monop/pathnames.h                                        |      38 -
 games/monop/print.c                                            |     206 -
 games/monop/prop.c                                             |     232 -
 games/monop/prop.dat                                           |      60 -
 games/monop/rent.c                                             |     100 -
 games/monop/roll.c                                             |      86 -
 games/monop/spec.c                                             |     103 -
 games/monop/trade.c                                            |     332 -
 games/morse/Makefile                                           |       9 -
 games/morse/morse.c                                            |     255 -
 games/number/Makefile                                          |       7 -
 games/number/number.6                                          |      62 -
 games/number/number.c                                          |     300 -
 games/phantasia/COPYRIGHT                                      |      26 -
 games/phantasia/Makefile                                       |      41 -
 games/phantasia/OWNER                                          |       6 -
 games/phantasia/README                                         |      84 -
 games/phantasia/fight.c                                        |    1394 -
 games/phantasia/gamesupport.c                                  |     549 -
 games/phantasia/include.h                                      |      22 -
 games/phantasia/interplayer.c                                  |     887 -
 games/phantasia/io.c                                           |     247 -
 games/phantasia/macros.h                                       |      20 -
 games/phantasia/main.c                                         |    1008 -
 games/phantasia/map.c                                          |     162 -
 games/phantasia/misc.c                                         |    1071 -
 games/phantasia/monsters.asc                                   |     100 -
 games/phantasia/pathnames.h                                    |      46 -
 games/phantasia/phantasia.6                                    |    1226 -
 games/phantasia/phantdefs.h                                    |     150 -
 games/phantasia/phantglobs.c                                   |     118 -
 games/phantasia/phantglobs.h                                   |     131 -
 games/phantasia/phantstruct.h                                  |     126 -
 games/phantasia/setup.c                                        |     289 -
 games/pig/Makefile                                             |       7 -
 games/pig/pig.6                                                |      50 -
 games/pig/pig.c                                                |     143 -
 games/pom/Makefile                                             |       9 -
 games/pom/pom.6                                                |      73 -
 games/pom/pom.c                                                |     286 -
 games/ppt/Makefile                                             |       9 -
 games/ppt/ppt.c                                                |      95 -
 games/primes/Makefile                                          |      10 -
 games/primes/pattern.c                                         |     447 -
 games/primes/pr_tbl.c                                          |     553 -
 games/primes/primes.c                                          |     340 -
 games/primes/primes.h                                          |      54 -
 games/quiz/Makefile                                            |      19 -
 games/quiz/datfiles/africa                                     |      43 -
 games/quiz/datfiles/america                                    |      27 -
 games/quiz/datfiles/areas                                      |     124 -
 games/quiz/datfiles/arith                                      |      45 -
 games/quiz/datfiles/asia                                       |      41 -
 games/quiz/datfiles/babies                                     |      21 -
 games/quiz/datfiles/bard                                       |     228 -
 games/quiz/datfiles/chinese                                    |      12 -
 games/quiz/datfiles/collectives                                |     105 -
 games/quiz/datfiles/ed                                         |      84 -
 games/quiz/datfiles/elements                                   |     103 -
 games/quiz/datfiles/europe                                     |      44 -
 games/quiz/datfiles/flowers                                    |      45 -
 games/quiz/datfiles/greek                                      |       7 -
 games/quiz/datfiles/inca                                       |      12 -
 games/quiz/datfiles/index                                      |      32 -
 games/quiz/datfiles/latin                                      |     157 -
 games/quiz/datfiles/locomotive                                 |      40 -
 games/quiz/datfiles/midearth                                   |      10 -
 games/quiz/datfiles/morse                                      |      26 -
 games/quiz/datfiles/mult                                       |      99 -
 games/quiz/datfiles/murders                                    |      25 -
 games/quiz/datfiles/poetry                                     |     184 -
 games/quiz/datfiles/posneg                                     |      50 -
 games/quiz/datfiles/pres                                       |      80 -
 games/quiz/datfiles/province                                   |      13 -
 games/quiz/datfiles/seq-easy                                   |      14 -
 games/quiz/datfiles/seq-hard                                   |      15 -
 games/quiz/datfiles/sexes                                      |      26 -
 games/quiz/datfiles/sov                                        |      42 -
 games/quiz/datfiles/spell                                      |       2 -
 games/quiz/datfiles/state                                      |      50 -
 games/quiz/datfiles/trek                                       |      19 -
 games/quiz/datfiles/ucc                                        |     127 -
 games/quiz/pathnames.h                                         |      39 -
 games/quiz/quiz.6                                              |     121 -
 games/quiz/quiz.c                                              |     385 -
 games/quiz/quiz.h                                              |      63 -
 games/quiz/rxp.c                                               |     320 -
 games/rain/Makefile                                            |       9 -
 games/rain/rain.6                                              |      57 -
 games/rain/rain.c                                              |     152 -
 games/random/Makefile                                          |       7 -
 games/random/random.6                                          |      71 -
 games/random/random.c                                          |     157 -
 games/robots/Makefile                                          |      14 -
 games/robots/auto.c                                            |     388 -
 games/robots/extern.c                                          |      86 -
 games/robots/flush_in.c                                        |      55 -
 games/robots/init_field.c                                      |     122 -
 games/robots/main.c                                            |     241 -
 games/robots/make_level.c                                      |      98 -
 games/robots/move.c                                            |     315 -
 games/robots/move_robs.c                                       |     158 -
 games/robots/pathnames.h                                       |      38 -
 games/robots/play_level.c                                      |     122 -
 games/robots/query.c                                           |      68 -
 games/robots/rnd_pos.c                                         |      74 -
 games/robots/robots.6                                          |     158 -
 games/robots/robots.h                                          |     148 -
 games/robots/score.c                                           |     243 -
 games/rogue/CHANGES                                            |      55 -
 games/rogue/Makefile                                           |      20 -
 games/rogue/USD.doc/Makefile                                   |      11 -
 games/rogue/USD.doc/rogue.me                                   |     838 -
 games/rogue/hit.c                                              |     475 -
 games/rogue/init.c                                             |     368 -
 games/rogue/inventory.c                                        |     790 -
 games/rogue/level.c                                            |     910 -
 games/rogue/machdep.c                                          |     497 -
 games/rogue/main.c                                             |      92 -
 games/rogue/message.c                                          |     395 -
 games/rogue/monster.c                                          |     904 -
 games/rogue/move.c                                             |     659 -
 games/rogue/object.c                                           |     813 -
 games/rogue/pack.c                                             |     595 -
 games/rogue/pathnames.h                                        |      38 -
 games/rogue/play.c                                             |     302 -
 games/rogue/random.c                                           |     151 -
 games/rogue/ring.c                                             |     348 -
 games/rogue/rogue.6                                            |     111 -
 games/rogue/rogue.h                                            |     806 -
 games/rogue/room.c                                             |     679 -
 games/rogue/save.c                                             |     431 -
 games/rogue/score.c                                            |     607 -
 games/rogue/spec_hit.c                                         |     555 -
 games/rogue/throw.c                                            |     330 -
 games/rogue/trap.c                                             |     289 -
 games/rogue/use.c                                              |     635 -
 games/rogue/zap.c                                              |     416 -
 games/sail/Makefile                                            |      14 -
 games/sail/assorted.c                                          |     297 -
 games/sail/dr_1.c                                              |     482 -
 games/sail/dr_2.c                                              |     291 -
 games/sail/dr_3.c                                              |     360 -
 games/sail/dr_4.c                                              |      75 -
 games/sail/dr_5.c                                              |     102 -
 games/sail/dr_main.c                                           |     118 -
 games/sail/driver.h                                            |      40 -
 games/sail/extern.h                                            |     441 -
 games/sail/game.c                                              |      97 -
 games/sail/globals.c                                           |     546 -
 games/sail/lo_main.c                                           |      99 -
 games/sail/machdep.h                                           |      54 -
 games/sail/main.c                                              |     120 -
 games/sail/misc.c                                              |     248 -
 games/sail/parties.c                                           |      86 -
 games/sail/pathnames.h                                         |      38 -
 games/sail/pl_1.c                                              |     145 -
 games/sail/pl_2.c                                              |     162 -
 games/sail/pl_3.c                                              |     281 -
 games/sail/pl_4.c                                              |     140 -
 games/sail/pl_5.c                                              |     258 -
 games/sail/pl_6.c                                              |     205 -
 games/sail/pl_7.c                                              |     538 -
 games/sail/pl_main.c                                           |     256 -
 games/sail/player.h                                            |     124 -
 games/sail/sail.6                                              |     900 -
 games/sail/sync.c                                              |     529 -
 games/sail/version.c                                           |      45 -
 games/snake/Makefile                                           |       6 -
 games/snake/snake/Makefile                                     |      13 -
 games/snake/snake/pathnames.h                                  |      39 -
 games/snake/snake/snake.6                                      |     127 -
 games/snake/snake/snake.c                                      |    1001 -
 games/snake/snscore/Makefile                                   |      10 -
 games/snake/snscore/snscore.c                                  |     131 -
 games/tetris/Makefile                                          |      12 -
 games/tetris/input.c                                           |     167 -
 games/tetris/input.h                                           |      43 -
 games/tetris/pathnames.h                                       |      41 -
 games/tetris/scores.c                                          |     470 -
 games/tetris/scores.h                                          |      56 -
 games/tetris/screen.c                                          |     504 -
 games/tetris/screen.h                                          |      58 -
 games/tetris/shapes.c                                          |     113 -
 games/tetris/tetris.6                                          |     161 -
 games/tetris/tetris.c                                          |     332 -
 games/tetris/tetris.h                                          |     178 -
 games/trek/DOC/read_me.nr                                      |     252 -
 games/trek/DOC/things                                          |      10 -
 games/trek/DOC/trekmanual.nr                                   |     896 -
 games/trek/Makefile                                            |      23 -
 games/trek/USD.doc/Makefile                                    |      11 -
 games/trek/USD.doc/spell.ok                                    |      72 -
 games/trek/USD.doc/trek.me                                     |     969 -
 games/trek/abandon.c                                           |     172 -
 games/trek/attack.c                                            |     198 -
 games/trek/autover.c                                           |      86 -
 games/trek/capture.c                                           |     140 -
 games/trek/cgetc.c                                             |      52 -
 games/trek/check_out.c                                         |      79 -
 games/trek/checkcond.c                                         |     110 -
 games/trek/compkl.c                                            |     124 -
 games/trek/computer.c                                          |     358 -
 games/trek/damage.c                                            |     101 -
 games/trek/damaged.c                                           |      75 -
 games/trek/dcrept.c                                            |     110 -
 games/trek/destruct.c                                          |     127 -
 games/trek/dock.c                                              |     162 -
 games/trek/dumpgame.c                                          |     181 -
 games/trek/dumpme.c                                            |      97 -
 games/trek/dumpssradio.c                                       |      94 -
 games/trek/events.c                                            |     478 -
 games/trek/externs.c                                           |     123 -
 games/trek/getcodi.c                                           |      77 -
 games/trek/getpar.c                                            |     316 -
 games/trek/getpar.h                                            |      54 -
 games/trek/help.c                                              |     176 -
 games/trek/impulse.c                                           |      95 -
 games/trek/initquad.c                                          |     162 -
 games/trek/kill.c                                              |     239 -
 games/trek/klmove.c                                            |     191 -
 games/trek/lose.c                                              |      96 -
 games/trek/lrscan.c                                            |     118 -
 games/trek/main.c                                              |     257 -
 games/trek/move.c                                              |     239 -
 games/trek/nova.c                                              |     150 -
 games/trek/out.c                                               |      66 -
 games/trek/phaser.c                                            |     389 -
 games/trek/play.c                                              |     118 -
 games/trek/ram.c                                               |     111 -
 games/trek/ranf.c                                              |      67 -
 games/trek/rest.c                                              |      91 -
 games/trek/schedule.c                                          |     186 -
 games/trek/score.c                                             |     111 -
 games/trek/setup.c                                             |     315 -
 games/trek/setwarp.c                                           |      79 -
 games/trek/shield.c                                            |     154 -
 games/trek/snova.c                                             |     168 -
 games/trek/srscan.c                                            |     197 -
 games/trek/systemname.c                                        |      74 -
 games/trek/torped.c                                            |     265 -
 games/trek/trek.6                                              |     142 -
 games/trek/trek.h                                              |     532 -
 games/trek/visual.c                                            |     113 -
 games/trek/warp.c                                              |     208 -
 games/trek/win.c                                               |      97 -
 games/wargames/Makefile                                        |       7 -
 games/wargames/wargames.sh                                     |      46 -
 games/worm/Makefile                                            |      10 -
 games/worm/worm.6                                              |      67 -
 games/worm/worm.c                                              |     322 -
 games/worms/Makefile                                           |       9 -
 games/worms/worms.6                                            |      69 -
 games/worms/worms.c                                            |     351 -
 games/wtf/Makefile                                             |       7 -
 games/wtf/wtf                                                  |      36 -
 games/wtf/wtf.6                                                |      49 -
 games/wump/Makefile                                            |      14 -
 games/wump/pathnames.h                                         |      39 -
 games/wump/wump.6                                              |     114 -
 games/wump/wump.c                                              |     858 -
 games/wump/wump.info                                           |      41 -
 gnu/Makefile                                                   |       5 -
 gnu/README                                                     |      55 -
 gnu/dist/COPYING                                               |     340 -
 gnu/dist/COPYING.LIB                                           |     481 -
 gnu/dist/Makefile.in                                           |    1564 -
 gnu/dist/README                                                |      50 -
 gnu/dist/bc/AUTHORS                                            |       4 -
 gnu/dist/bc/COPYING                                            |     341 -
 gnu/dist/bc/Examples/ckbook.b                                  |      16 -
 gnu/dist/bc/Examples/pi.b                                      |      53 -
 gnu/dist/bc/Examples/primes.b                                  |      32 -
 gnu/dist/bc/Examples/twins.b                                   |      40 -
 gnu/dist/bc/INSTALL                                            |     176 -
 gnu/dist/bc/Makefile.am                                        |       9 -
 gnu/dist/bc/Makefile.in                                        |     320 -
 gnu/dist/bc/NEWS                                               |      53 -
 gnu/dist/bc/README                                             |      57 -
 gnu/dist/bc/acconfig.h                                         |      15 -
 gnu/dist/bc/aclocal.m4                                         |     145 -
 gnu/dist/bc/bc/Makefile.am                                     |      48 -
 gnu/dist/bc/bc/Makefile.in                                     |     314 -
 gnu/dist/bc/bc/bc.y                                            |     637 -
 gnu/dist/bc/bc/execute.c                                       |     786 -
 gnu/dist/bc/bc/fix-libmath_h                                   |       8 -
 gnu/dist/bc/bc/global.c                                        |      42 -
 gnu/dist/bc/bc/libmath.b                                       |     285 -
 gnu/dist/bc/bc/libmath.h                                       |      40 -
 gnu/dist/bc/bc/load.c                                          |     348 -
 gnu/dist/bc/bc/main.c                                          |     330 -
 gnu/dist/bc/bc/sbc.y                                           |     446 -
 gnu/dist/bc/bc/scan.l                                          |     292 -
 gnu/dist/bc/bc/storage.c                                       |    1070 -
 gnu/dist/bc/bc/util.c                                          |     859 -
 gnu/dist/bc/config.h.in                                        |      71 -
 gnu/dist/bc/configure                                          |    2447 -
 gnu/dist/bc/configure.in                                       |      87 -
 gnu/dist/bc/dc/Makefile.am                                     |      10 -
 gnu/dist/bc/dc/Makefile.in                                     |     266 -
 gnu/dist/bc/dc/array.c                                         |     119 -
 gnu/dist/bc/dc/dc-proto.h                                      |      87 -
 gnu/dist/bc/dc/dc-regdef.h                                     |      40 -
 gnu/dist/bc/dc/dc.c                                            |     177 -
 gnu/dist/bc/dc/dc.h                                            |      79 -
 gnu/dist/bc/dc/eval.c                                          |     679 -
 gnu/dist/bc/dc/misc.c                                          |     179 -
 gnu/dist/bc/dc/numeric.c                                       |     595 -
 gnu/dist/bc/dc/stack.c                                         |     489 -
 gnu/dist/bc/dc/string.c                                        |     208 -
 gnu/dist/bc/doc/Makefile.am                                    |      10 -
 gnu/dist/bc/doc/Makefile.in                                    |     329 -
 gnu/dist/bc/doc/bc.1                                           |     787 -
 gnu/dist/bc/doc/dc.1                                           |     447 -
 gnu/dist/bc/doc/dc.texi                                        |     532 -
 gnu/dist/bc/h/bcdefs.h                                         |     166 -
 gnu/dist/bc/h/const.h                                          |     101 -
 gnu/dist/bc/h/getopt.h                                         |     133 -
 gnu/dist/bc/h/global.h                                         |     147 -
 gnu/dist/bc/h/number.h                                         |      65 -
 gnu/dist/bc/h/proto.h                                          |     171 -
 gnu/dist/bc/h/version.h                                        |      28 -
 gnu/dist/bc/install-sh                                         |     238 -
 gnu/dist/bc/lib/Makefile.am                                    |       9 -
 gnu/dist/bc/lib/Makefile.in                                    |     246 -
 gnu/dist/bc/lib/getopt.c                                       |     753 -
 gnu/dist/bc/lib/getopt1.c                                      |     184 -
 gnu/dist/bc/lib/number.c                                       |    1582 -
 gnu/dist/bc/lib/vfprintf.c                                     |      31 -
 gnu/dist/bc/missing                                            |     134 -
 gnu/dist/bc/mkinstalldirs                                      |      36 -
 gnu/dist/bc/stamp-h.in                                         |       1 -
 gnu/dist/bfd/COPYING                                           |     340 -
 gnu/dist/bfd/Makefile.am                                       |     984 -
 gnu/dist/bfd/Makefile.in                                       |    1445 -
 gnu/dist/bfd/PORTING                                           |      83 -
 gnu/dist/bfd/README                                            |      46 -
 gnu/dist/bfd/TODO                                              |      25 -
 gnu/dist/bfd/acconfig.h                                        |      34 -
 gnu/dist/bfd/acinclude.m4                                      |      67 -
 gnu/dist/bfd/aclocal.m4                                        |     526 -
 gnu/dist/bfd/aix386-core.c                                     |     287 -
 gnu/dist/bfd/aout-adobe.c                                      |     526 -
 gnu/dist/bfd/aout-arm.c                                        |     546 -
 gnu/dist/bfd/aout-arm32.c                                      |     504 -
 gnu/dist/bfd/aout-encap.c                                      |     236 -
 gnu/dist/bfd/aout-ns32k.c                                      |     370 -
 gnu/dist/bfd/aout-sparcle.c                                    |      32 -
 gnu/dist/bfd/aout-target.h                                     |     660 -
 gnu/dist/bfd/aout-tic30.c                                      |    1062 -
 gnu/dist/bfd/aout0.c                                           |      32 -
 gnu/dist/bfd/aout32.c                                          |      23 -
 gnu/dist/bfd/aout64.c                                          |      31 -
 gnu/dist/bfd/aoutf1.h                                          |     851 -
 gnu/dist/bfd/aoutx.h                                           |    5707 -
 gnu/dist/bfd/archive.c                                         |    2170 -
 gnu/dist/bfd/archures.c                                        |     871 -
 gnu/dist/bfd/armnetbsd.c                                       |      47 -
 gnu/dist/bfd/bfd-in.h                                          |     700 -
 gnu/dist/bfd/bfd-in2.h                                         |    2803 -
 gnu/dist/bfd/bfd.c                                             |    1155 -
 gnu/dist/bfd/binary.c                                          |     363 -
 gnu/dist/bfd/bout.c                                            |    1533 -
 gnu/dist/bfd/cache.c                                           |     350 -
 gnu/dist/bfd/cf-i386lynx.c                                     |      31 -
 gnu/dist/bfd/cf-m68klynx.c                                     |      28 -
 gnu/dist/bfd/cf-sparclynx.c                                    |      28 -
 gnu/dist/bfd/cisco-core.c                                      |     327 -
 gnu/dist/bfd/coff-a29k.c                                       |     640 -
 gnu/dist/bfd/coff-alpha.c                                      |    2401 -
 gnu/dist/bfd/coff-apollo.c                                     |     161 -
 gnu/dist/bfd/coff-arm.c                                        |    2296 -
 gnu/dist/bfd/coff-aux.c                                        |     135 -
 gnu/dist/bfd/coff-go32.c                                       |      25 -
 gnu/dist/bfd/coff-h8300.c                                      |    1383 -
 gnu/dist/bfd/coff-h8500.c                                      |     354 -
 gnu/dist/bfd/coff-i386.c                                       |     637 -
 gnu/dist/bfd/coff-i860.c                                       |     422 -
 gnu/dist/bfd/coff-i960.c                                       |     703 -
 gnu/dist/bfd/coff-m68k.c                                       |     480 -
 gnu/dist/bfd/coff-m88k.c                                       |     326 -
 gnu/dist/bfd/coff-mips.c                                       |    2716 -
 gnu/dist/bfd/coff-pmac.c                                       |      27 -
 gnu/dist/bfd/coff-ppc.c                                        |    2933 -
 gnu/dist/bfd/coff-rs6000.c                                     |    1417 -
 gnu/dist/bfd/coff-sh.c                                         |    2944 -
 gnu/dist/bfd/coff-sparc.c                                      |     256 -
 gnu/dist/bfd/coff-stgo32.c                                     |     464 -
 gnu/dist/bfd/coff-svm68k.c                                     |      26 -
 gnu/dist/bfd/coff-tic30.c                                      |     206 -
 gnu/dist/bfd/coff-u68k.c                                       |      35 -
 gnu/dist/bfd/coff-w65.c                                        |     445 -
 gnu/dist/bfd/coff-we32k.c                                      |     109 -
 gnu/dist/bfd/coff-z8k.c                                        |     280 -
 gnu/dist/bfd/coffcode.h                                        |    4243 -
 gnu/dist/bfd/coffgen.c                                         |    2306 -
 gnu/dist/bfd/cofflink.c                                        |    2735 -
 gnu/dist/bfd/coffswap.h                                        |     902 -
 gnu/dist/bfd/config.bfd                                        |     647 -
 gnu/dist/bfd/config.in                                         |      91 -
 gnu/dist/bfd/configure                                         |    3645 -
 gnu/dist/bfd/configure.host                                    |      69 -
 gnu/dist/bfd/configure.in                                      |     606 -
 gnu/dist/bfd/corefile.c                                        |     106 -
 gnu/dist/bfd/cpu-a29k.c                                        |      39 -
 gnu/dist/bfd/cpu-alpha.c                                       |      38 -
 gnu/dist/bfd/cpu-arc.c                                         |      70 -
 gnu/dist/bfd/cpu-arm.c                                         |     134 -
 gnu/dist/bfd/cpu-d10v.c                                        |      40 -
 gnu/dist/bfd/cpu-h8300.c                                       |     134 -
 gnu/dist/bfd/cpu-h8500.c                                       |     199 -
 gnu/dist/bfd/cpu-hppa.c                                        |      54 -
 gnu/dist/bfd/cpu-i386.c                                        |      54 -
 gnu/dist/bfd/cpu-i860.c                                        |      40 -
 gnu/dist/bfd/cpu-i960.c                                        |     162 -
 gnu/dist/bfd/cpu-m10200.c                                      |      38 -
 gnu/dist/bfd/cpu-m10300.c                                      |      38 -
 gnu/dist/bfd/cpu-m32r.c                                        |      32 -
 gnu/dist/bfd/cpu-m68k.c                                        |      41 -
 gnu/dist/bfd/cpu-m88k.c                                        |      42 -
 gnu/dist/bfd/cpu-mips.c                                        |      86 -
 gnu/dist/bfd/cpu-ns32k.c                                       |     846 -
 gnu/dist/bfd/cpu-powerpc.c                                     |     124 -
 gnu/dist/bfd/cpu-rs6000.c                                      |      70 -
 gnu/dist/bfd/cpu-sh.c                                          |     117 -
 gnu/dist/bfd/cpu-sparc.c                                       |     142 -
 gnu/dist/bfd/cpu-tic30.c                                       |      39 -
 gnu/dist/bfd/cpu-v850.c                                        |      94 -
 gnu/dist/bfd/cpu-vax.c                                         |      39 -
 gnu/dist/bfd/cpu-w65.c                                         |      54 -
 gnu/dist/bfd/cpu-we32k.c                                       |      39 -
 gnu/dist/bfd/cpu-z8k.c                                         |     198 -
 gnu/dist/bfd/demo64.c                                          |      24 -
 gnu/dist/bfd/dep-in.sed                                        |      26 -
 gnu/dist/bfd/doc/Makefile.am                                   |     248 -
 gnu/dist/bfd/doc/Makefile.in                                   |     535 -
 gnu/dist/bfd/doc/aoutx.texi                                    |     211 -
 gnu/dist/bfd/doc/archive.texi                                  |      95 -
 gnu/dist/bfd/doc/archures.texi                                 |     354 -
 gnu/dist/bfd/doc/bfd.texinfo                                   |     348 -
 gnu/dist/bfd/doc/bfdsumm.texi                                  |     148 -
 gnu/dist/bfd/doc/bfdt.texi                                     |     597 -
 gnu/dist/bfd/doc/cache.texi                                    |      95 -
 gnu/dist/bfd/doc/chew.c                                        |    1579 -
 gnu/dist/bfd/doc/coffcode.texi                                 |     639 -
 gnu/dist/bfd/doc/core.texi                                     |      38 -
 gnu/dist/bfd/doc/doc.str                                       |     158 -
 gnu/dist/bfd/doc/elf.texi                                      |      22 -
 gnu/dist/bfd/doc/format.texi                                   |     108 -
 gnu/dist/bfd/doc/hash.texi                                     |     245 -
 gnu/dist/bfd/doc/init.texi                                     |      13 -
 gnu/dist/bfd/doc/libbfd.texi                                   |     142 -
 gnu/dist/bfd/doc/linker.texi                                   |     365 -
 gnu/dist/bfd/doc/opncls.texi                                   |     128 -
 gnu/dist/bfd/doc/proto.str                                     |     135 -
 gnu/dist/bfd/doc/reloc.texi                                    |     998 -
 gnu/dist/bfd/doc/section.texi                                  |     650 -
 gnu/dist/bfd/doc/syms.texi                                     |     408 -
 gnu/dist/bfd/doc/targets.texi                                  |     478 -
 gnu/dist/bfd/dwarf2.c                                          |    1457 -
 gnu/dist/bfd/ecoff.c                                           |    4825 -
 gnu/dist/bfd/ecofflink.c                                       |    2498 -
 gnu/dist/bfd/ecoffswap.h                                       |     853 -
 gnu/dist/bfd/elf-bfd.h                                         |    1012 -
 gnu/dist/bfd/elf-m10200.c                                      |    1525 -
 gnu/dist/bfd/elf-m10300.c                                      |    2474 -
 gnu/dist/bfd/elf.c                                             |    4340 -
 gnu/dist/bfd/elf32-arc.c                                       |     213 -
 gnu/dist/bfd/elf32-d10v.c                                      |     223 -
 gnu/dist/bfd/elf32-gen.c                                       |      37 -
 gnu/dist/bfd/elf32-hppa.c                                      |    2988 -
 gnu/dist/bfd/elf32-hppa.h                                      |     152 -
 gnu/dist/bfd/elf32-i386.c                                      |    1851 -
 gnu/dist/bfd/elf32-i860.c                                      |      33 -
 gnu/dist/bfd/elf32-m32r.c                                      |    1912 -
 gnu/dist/bfd/elf32-m68k.c                                      |    1915 -
 gnu/dist/bfd/elf32-m88k.c                                      |      35 -
 gnu/dist/bfd/elf32-mips.c                                      |    7449 -
 gnu/dist/bfd/elf32-ppc.c                                       |    3392 -
 gnu/dist/bfd/elf32-sh.c                                        |    1909 -
 gnu/dist/bfd/elf32-sparc.c                                     |    1863 -
 gnu/dist/bfd/elf32-v850.c                                      |    1785 -
 gnu/dist/bfd/elf32.c                                           |      23 -
 gnu/dist/bfd/elf64-alpha.c                                     |    4073 -
 gnu/dist/bfd/elf64-gen.c                                       |      37 -
 gnu/dist/bfd/elf64-mips.c                                      |    2172 -
 gnu/dist/bfd/elf64-sparc.c                                     |    2263 -
 gnu/dist/bfd/elf64.c                                           |      22 -
 gnu/dist/bfd/elfcode.h                                         |    1440 -
 gnu/dist/bfd/elfcore.h                                         |     551 -
 gnu/dist/bfd/elflink.c                                         |     434 -
 gnu/dist/bfd/elflink.h                                         |    5296 -
 gnu/dist/bfd/elfxx-target.h                                    |     503 -
 gnu/dist/bfd/evax-alpha.c                                      |    1784 -
 gnu/dist/bfd/evax-egsd.c                                       |     597 -
 gnu/dist/bfd/evax-emh.c                                        |     374 -
 gnu/dist/bfd/evax-etir.c                                       |    1509 -
 gnu/dist/bfd/evax-misc.c                                       |    1045 -
 gnu/dist/bfd/evax.h                                            |     383 -
 gnu/dist/bfd/filemode.c                                        |     194 -
 gnu/dist/bfd/format.c                                          |     319 -
 gnu/dist/bfd/freebsd.h                                         |     110 -
 gnu/dist/bfd/gen-aout.c                                        |     101 -
 gnu/dist/bfd/genlink.h                                         |     111 -
 gnu/dist/bfd/go32stub.h                                        |     128 -
 gnu/dist/bfd/hash.c                                            |     734 -
 gnu/dist/bfd/host-aout.c                                       |      83 -
 gnu/dist/bfd/hosts/alphalinux.h                                |       6 -
 gnu/dist/bfd/hosts/alphavms.h                                  |      69 -
 gnu/dist/bfd/hosts/decstation.h                                |      17 -
 gnu/dist/bfd/hosts/delta68.h                                   |      18 -
 gnu/dist/bfd/hosts/dpx2.h                                      |       8 -
 gnu/dist/bfd/hosts/hp300bsd.h                                  |      13 -
 gnu/dist/bfd/hosts/i386bsd.h                                   |      32 -
 gnu/dist/bfd/hosts/i386linux.h                                 |       8 -
 gnu/dist/bfd/hosts/i386mach3.h                                 |      25 -
 gnu/dist/bfd/hosts/i386sco.h                                   |      19 -
 gnu/dist/bfd/hosts/i860mach3.h                                 |      27 -
 gnu/dist/bfd/hosts/m68kaux.h                                   |      16 -
 gnu/dist/bfd/hosts/m68klinux.h                                 |       6 -
 gnu/dist/bfd/hosts/m88kmach3.h                                 |      11 -
 gnu/dist/bfd/hosts/mipsbsd.h                                   |      12 -
 gnu/dist/bfd/hosts/mipsmach3.h                                 |      10 -
 gnu/dist/bfd/hosts/news-mips.h                                 |      12 -
 gnu/dist/bfd/hosts/news.h                                      |       9 -
 gnu/dist/bfd/hosts/pc532mach.h                                 |      24 -
 gnu/dist/bfd/hosts/riscos.h                                    |      10 -
 gnu/dist/bfd/hosts/symmetry.h                                  |      20 -
 gnu/dist/bfd/hosts/tahoe.h                                     |      12 -
 gnu/dist/bfd/hosts/vaxbsd.h                                    |      19 -
 gnu/dist/bfd/hosts/vaxult.h                                    |       8 -
 gnu/dist/bfd/hosts/vaxult2.h                                   |       8 -
 gnu/dist/bfd/hp300bsd.c                                        |      38 -
 gnu/dist/bfd/hp300hpux.c                                       |     870 -
 gnu/dist/bfd/hppa_stubs.h                                      |      23 -
 gnu/dist/bfd/hppabsd-core.c                                    |     306 -
 gnu/dist/bfd/hpux-core.c                                       |     273 -
 gnu/dist/bfd/i386aout.c                                        |      91 -
 gnu/dist/bfd/i386bsd.c                                         |      46 -
 gnu/dist/bfd/i386dynix.c                                       |      80 -
 gnu/dist/bfd/i386freebsd.c                                     |      33 -
 gnu/dist/bfd/i386linux.c                                       |     767 -
 gnu/dist/bfd/i386lynx.c                                        |     562 -
 gnu/dist/bfd/i386mach3.c                                       |      66 -
 gnu/dist/bfd/i386msdos.c                                       |     243 -
 gnu/dist/bfd/i386netbsd.c                                      |      33 -
 gnu/dist/bfd/i386os9k.c                                        |     370 -
 gnu/dist/bfd/ieee.c                                            |    3832 -
 gnu/dist/bfd/ihex.c                                            |    1040 -
 gnu/dist/bfd/init.c                                            |      50 -
 gnu/dist/bfd/irix-core.c                                       |     276 -
 gnu/dist/bfd/libaout.h                                         |     633 -
 gnu/dist/bfd/libbfd-in.h                                       |     531 -
 gnu/dist/bfd/libbfd.c                                          |    1205 -
 gnu/dist/bfd/libbfd.h                                          |     834 -
 gnu/dist/bfd/libcoff-in.h                                      |     529 -
 gnu/dist/bfd/libcoff.h                                         |     887 -
 gnu/dist/bfd/libecoff.h                                        |     357 -
 gnu/dist/bfd/libhppa.h                                         |     597 -
 gnu/dist/bfd/libieee.h                                         |     133 -
 gnu/dist/bfd/libnlm.h                                          |     264 -
 gnu/dist/bfd/liboasys.h                                        |      82 -
 gnu/dist/bfd/linker.c                                          |    2797 -
 gnu/dist/bfd/lynx-core.c                                       |     233 -
 gnu/dist/bfd/m68k4knetbsd.c                                    |      32 -
 gnu/dist/bfd/m68klinux.c                                       |     772 -
 gnu/dist/bfd/m68klynx.c                                        |      54 -
 gnu/dist/bfd/m68knetbsd.c                                      |      34 -
 gnu/dist/bfd/m88kmach3.c                                       |      38 -
 gnu/dist/bfd/mipsbsd.c                                         |     468 -
 gnu/dist/bfd/mipselnetbsd.c                                    |      37 -
 gnu/dist/bfd/netbsd-core.c                                     |     254 -
 gnu/dist/bfd/netbsd.h                                          |     433 -
 gnu/dist/bfd/newsos3.c                                         |      40 -
 gnu/dist/bfd/nlm-target.h                                      |     228 -
 gnu/dist/bfd/nlm.c                                             |      55 -
 gnu/dist/bfd/nlm32-alpha.c                                     |     892 -
 gnu/dist/bfd/nlm32-i386.c                                      |     451 -
 gnu/dist/bfd/nlm32-ppc.c                                       |    1045 -
 gnu/dist/bfd/nlm32-sparc.c                                     |     440 -
 gnu/dist/bfd/nlm32.c                                           |      21 -
 gnu/dist/bfd/nlm64.c                                           |      21 -
 gnu/dist/bfd/nlmcode.h                                         |    2057 -
 gnu/dist/bfd/nlmswap.h                                         |     157 -
 gnu/dist/bfd/ns32k.h                                           |      41 -
 gnu/dist/bfd/ns32knetbsd.c                                     |      53 -
 gnu/dist/bfd/oasys.c                                           |    1534 -
 gnu/dist/bfd/opncls.c                                          |     580 -
 gnu/dist/bfd/osf-core.c                                        |     256 -
 gnu/dist/bfd/pc532-mach.c                                      |     121 -
 gnu/dist/bfd/pe-arm.c                                          |      32 -
 gnu/dist/bfd/pe-i386.c                                         |      31 -
 gnu/dist/bfd/pe-ppc.c                                          |      40 -
 gnu/dist/bfd/pei-arm.c                                         |      34 -
 gnu/dist/bfd/pei-i386.c                                        |      35 -
 gnu/dist/bfd/pei-ppc.c                                         |      46 -
 gnu/dist/bfd/peicode.h                                         |    2127 -
 gnu/dist/bfd/ppcboot.c                                         |     534 -
 gnu/dist/bfd/ptrace-core.c                                     |     234 -
 gnu/dist/bfd/reloc.c                                           |    2629 -
 gnu/dist/bfd/reloc16.c                                         |     334 -
 gnu/dist/bfd/riscix.c                                          |     644 -
 gnu/dist/bfd/rs6000-core.c                                     |     506 -
 gnu/dist/bfd/section.c                                         |    1022 -
 gnu/dist/bfd/som.c                                             |    6032 -
 gnu/dist/bfd/som.h                                             |     227 -
 gnu/dist/bfd/sparclinux.c                                      |     770 -
 gnu/dist/bfd/sparclynx.c                                       |     266 -
 gnu/dist/bfd/sparcnetbsd.c                                     |      36 -
 gnu/dist/bfd/srec.c                                            |    1388 -
 gnu/dist/bfd/stab-syms.c                                       |      57 -
 gnu/dist/bfd/stabs.c                                           |     645 -
 gnu/dist/bfd/stamp-h.in                                        |       1 -
 gnu/dist/bfd/sunos.c                                           |    2922 -
 gnu/dist/bfd/syms.c                                            |    1199 -
 gnu/dist/bfd/sysdep.h                                          |     125 -
 gnu/dist/bfd/targets.c                                         |    1039 -
 gnu/dist/bfd/targmatch.sed                                     |      32 -
 gnu/dist/bfd/tekhex.c                                          |    1064 -
 gnu/dist/bfd/trad-core.c                                       |     317 -
 gnu/dist/bfd/vaxnetbsd.c                                       |      39 -
 gnu/dist/bfd/versados.c                                        |     922 -
 gnu/dist/bfd/xcofflink.c                                       |    6635 -
 gnu/dist/binutils/Makefile.am                                  |     449 -
 gnu/dist/binutils/Makefile.in                                  |    1191 -
 gnu/dist/binutils/NEWS                                         |     145 -
 gnu/dist/binutils/README                                       |     134 -
 gnu/dist/binutils/acconfig.h                                   |      34 -
 gnu/dist/binutils/acinclude.m4                                 |       1 -
 gnu/dist/binutils/aclocal.m4                                   |     460 -
 gnu/dist/binutils/addr2line.1                                  |     127 -
 gnu/dist/binutils/addr2line.c                                  |     324 -
 gnu/dist/binutils/ar.1                                         |     509 -
 gnu/dist/binutils/ar.c                                         |    1317 -
 gnu/dist/binutils/arlex.l                                      |      83 -
 gnu/dist/binutils/arparse.y                                    |     201 -
 gnu/dist/binutils/arsup.c                                      |     456 -
 gnu/dist/binutils/arsup.h                                      |      75 -
 gnu/dist/binutils/binutils.texi                                |    2474 -
 gnu/dist/binutils/bucomm.c                                     |     243 -
 gnu/dist/binutils/bucomm.h                                     |     148 -
 gnu/dist/binutils/budbg.h                                      |      58 -
 gnu/dist/binutils/coffdump.c                                   |     544 -
 gnu/dist/binutils/coffgrok.c                                   |     737 -
 gnu/dist/binutils/coffgrok.h                                   |     206 -
 gnu/dist/binutils/config.in                                    |      86 -
 gnu/dist/binutils/config.texi                                  |       1 -
 gnu/dist/binutils/configure                                    |    3107 -
 gnu/dist/binutils/configure.in                                 |     202 -
 gnu/dist/binutils/cxxfilt.man                                  |     114 -
 gnu/dist/binutils/debug.c                                      |    3506 -
 gnu/dist/binutils/debug.h                                      |     798 -
 gnu/dist/binutils/deflex.l                                     |      86 -
 gnu/dist/binutils/defparse.y                                   |     144 -
 gnu/dist/binutils/dep-in.sed                                   |      17 -
 gnu/dist/binutils/dlltool.c                                    |    2440 -
 gnu/dist/binutils/dlltool.h                                    |      41 -
 gnu/dist/binutils/filemode.c                                   |     266 -
 gnu/dist/binutils/ieee.c                                       |    7602 -
 gnu/dist/binutils/is-ranlib.c                                  |       3 -
 gnu/dist/binutils/is-strip.c                                   |       4 -
 gnu/dist/binutils/maybe-ranlib.c                               |       4 -
 gnu/dist/binutils/maybe-strip.c                                |       4 -
 gnu/dist/binutils/nlmconv.1                                    |     110 -
 gnu/dist/binutils/nlmconv.c                                    |    2206 -
 gnu/dist/binutils/nlmconv.h                                    |      84 -
 gnu/dist/binutils/nlmheader.y                                  |     978 -
 gnu/dist/binutils/nm.1                                         |     230 -
 gnu/dist/binutils/nm.c                                         |    1551 -
 gnu/dist/binutils/not-ranlib.c                                 |       3 -
 gnu/dist/binutils/not-strip.c                                  |       4 -
 gnu/dist/binutils/objcopy.1                                    |     301 -
 gnu/dist/binutils/objcopy.c                                    |    2183 -
 gnu/dist/binutils/objdump.1                                    |     402 -
 gnu/dist/binutils/objdump.c                                    |    2778 -
 gnu/dist/binutils/prdbg.c                                      |    1862 -
 gnu/dist/binutils/ranlib.1                                     |      83 -
 gnu/dist/binutils/ranlib.sh                                    |       3 -
 gnu/dist/binutils/rclex.l                                      |     465 -
 gnu/dist/binutils/rcparse.y                                    |    1589 -
 gnu/dist/binutils/rdcoff.c                                     |     889 -
 gnu/dist/binutils/rddbg.c                                      |     448 -
 gnu/dist/binutils/resbin.c                                     |    2376 -
 gnu/dist/binutils/rescoff.c                                    |     776 -
 gnu/dist/binutils/resrc.c                                      |    2260 -
 gnu/dist/binutils/sanity.sh                                    |      50 -
 gnu/dist/binutils/size.1                                       |     166 -
 gnu/dist/binutils/size.c                                       |     528 -
 gnu/dist/binutils/srconv.c                                     |    2040 -
 gnu/dist/binutils/stabs.c                                      |    5082 -
 gnu/dist/binutils/stamp-h.in                                   |       1 -
 gnu/dist/binutils/strings.1                                    |     151 -
 gnu/dist/binutils/strings.c                                    |     508 -
 gnu/dist/binutils/strip.1                                      |     187 -
 gnu/dist/binutils/sysdump.c                                    |     794 -
 gnu/dist/binutils/sysinfo.y                                    |     415 -
 gnu/dist/binutils/syslex.l                                     |      51 -
 gnu/dist/binutils/sysroff.info                                 |     504 -
 gnu/dist/binutils/version.c                                    |      43 -
 gnu/dist/binutils/windres.c                                    |    1060 -
 gnu/dist/binutils/windres.h                                    |     865 -
 gnu/dist/binutils/wrstabs.c                                    |    2416 -
 gnu/dist/config-ml.in                                          |     632 -
 gnu/dist/config.guess                                          |     740 -
 gnu/dist/config.sub                                            |    1181 -
 gnu/dist/config/ChangeLog                                      |     303 -
 gnu/dist/config/mh-a68bsd                                      |      12 -
 gnu/dist/config/mh-aix386                                      |       1 -
 gnu/dist/config/mh-apollo68                                    |       3 -
 gnu/dist/config/mh-cxux                                        |      14 -
 gnu/dist/config/mh-cygwin32                                    |      16 -
 gnu/dist/config/mh-decstation                                  |       5 -
 gnu/dist/config/mh-delta88                                     |       4 -
 gnu/dist/config/mh-dgux                                        |       4 -
 gnu/dist/config/mh-dgux386                                     |      22 -
 gnu/dist/config/mh-go32                                        |      10 -
 gnu/dist/config/mh-hp300                                       |      13 -
 gnu/dist/config/mh-hpux                                        |       4 -
 gnu/dist/config/mh-hpux8                                       |       4 -
 gnu/dist/config/mh-irix4                                       |       7 -
 gnu/dist/config/mh-irix5                                       |       3 -
 gnu/dist/config/mh-irix6                                       |       7 -
 gnu/dist/config/mh-lynxos                                      |       2 -
 gnu/dist/config/mh-lynxrs6k                                    |       8 -
 gnu/dist/config/mh-m68kpic                                     |       1 -
 gnu/dist/config/mh-ncr3000                                     |      17 -
 gnu/dist/config/mh-ncrsvr43                                    |       9 -
 gnu/dist/config/mh-necv4                                       |      11 -
 gnu/dist/config/mh-papic                                       |       1 -
 gnu/dist/config/mh-riscos                                      |      15 -
 gnu/dist/config/mh-sco                                         |      10 -
 gnu/dist/config/mh-solaris                                     |       6 -
 gnu/dist/config/mh-sparcpic                                    |       1 -
 gnu/dist/config/mh-sun3                                        |       3 -
 gnu/dist/config/mh-sysv                                        |       3 -
 gnu/dist/config/mh-sysv4                                       |      11 -
 gnu/dist/config/mh-vaxult2                                     |       2 -
 gnu/dist/config/mh-windows                                     |      16 -
 gnu/dist/config/mh-x86pic                                      |       1 -
 gnu/dist/config/mpw-mh-mpw                                     |     157 -
 gnu/dist/config/mpw/ChangeLog                                  |      53 -
 gnu/dist/config/mpw/MoveIfChange                               |      19 -
 gnu/dist/config/mpw/README                                     |      23 -
 gnu/dist/config/mpw/forward-include                            |       3 -
 gnu/dist/config/mpw/g-mpw-make.sed                             |     293 -
 gnu/dist/config/mpw/mpw-touch                                  |       7 -
 gnu/dist/config/mpw/mpw-true                                   |       1 -
 gnu/dist/config/mpw/null-command                               |       1 -
 gnu/dist/config/mpw/open-brace                                 |       4 -
 gnu/dist/config/mpw/tr-7to8-src                                |       9 -
 gnu/dist/config/mpw/true                                       |       1 -
 gnu/dist/config/mt-m68kpic                                     |       1 -
 gnu/dist/config/mt-netware                                     |       1 -
 gnu/dist/config/mt-papic                                       |       1 -
 gnu/dist/config/mt-sparcpic                                    |       1 -
 gnu/dist/config/mt-v810                                        |       4 -
 gnu/dist/config/mt-x86pic                                      |       1 -
 gnu/dist/configure                                             |    1307 -
 gnu/dist/configure.in                                          |     843 -
 gnu/dist/diffutils/COPYING                                     |     339 -
 gnu/dist/diffutils/INSTALL                                     |     179 -
 gnu/dist/diffutils/Makefile.in                                 |     198 -
 gnu/dist/diffutils/analyze.c                                   |    1084 -
 gnu/dist/diffutils/cmpbuf.c                                    |      40 -
 gnu/dist/diffutils/cmpbuf.h                                    |      20 -
 gnu/dist/diffutils/config.hin                                  |     117 -
 gnu/dist/diffutils/configure                                   |    2149 -
 gnu/dist/diffutils/configure.in                                |      26 -
 gnu/dist/diffutils/context.c                                   |     468 -
 gnu/dist/diffutils/diagmeet.note                               |      71 -
 gnu/dist/diffutils/diff.c                                      |    1106 -
 gnu/dist/diffutils/diff.h                                      |     340 -
 gnu/dist/diffutils/diff.texi                                   |    3919 -
 gnu/dist/diffutils/diff3.c                                     |    1778 -
 gnu/dist/diffutils/dir.c                                       |     216 -
 gnu/dist/diffutils/ed.c                                        |     200 -
 gnu/dist/diffutils/fnmatch.c                                   |     209 -
 gnu/dist/diffutils/fnmatch.h                                   |      69 -
 gnu/dist/diffutils/getopt.c                                    |     750 -
 gnu/dist/diffutils/getopt.h                                    |     129 -
 gnu/dist/diffutils/getopt1.c                                   |     180 -
 gnu/dist/diffutils/ifdef.c                                     |     428 -
 gnu/dist/diffutils/io.c                                        |     714 -
 gnu/dist/diffutils/normal.c                                    |      71 -
 gnu/dist/diffutils/regex.c                                     |    5248 -
 gnu/dist/diffutils/regex.h                                     |     490 -
 gnu/dist/diffutils/sdiff.c                                     |    1180 -
 gnu/dist/diffutils/side.c                                      |     284 -
 gnu/dist/diffutils/system.h                                    |     267 -
 gnu/dist/diffutils/util.c                                      |     754 -
 gnu/dist/diffutils/version.c                                   |       5 -
 gnu/dist/gas/CONTRIBUTORS                                      |     104 -
 gnu/dist/gas/COPYING                                           |     340 -
 gnu/dist/gas/Makefile.am                                       |    1549 -
 gnu/dist/gas/Makefile.in                                       |    2018 -
 gnu/dist/gas/NEWS                                              |     265 -
 gnu/dist/gas/README                                            |     272 -
 gnu/dist/gas/acconfig.h                                        |      79 -
 gnu/dist/gas/acinclude.m4                                      |      58 -
 gnu/dist/gas/aclocal.m4                                        |     517 -
 gnu/dist/gas/app.c                                             |    1178 -
 gnu/dist/gas/as.c                                              |    1000 -
 gnu/dist/gas/as.h                                              |     632 -
 gnu/dist/gas/atof-generic.c                                    |     636 -
 gnu/dist/gas/bignum-copy.c                                     |      80 -
 gnu/dist/gas/bignum.h                                          |      52 -
 gnu/dist/gas/bit_fix.h                                         |      51 -
 gnu/dist/gas/cgen.c                                            |     622 -
 gnu/dist/gas/cond.c                                            |     459 -
 gnu/dist/gas/config.in                                         |     145 -
 gnu/dist/gas/config/aout_gnu.h                                 |     456 -
 gnu/dist/gas/config/atof-ieee.c                                |     696 -
 gnu/dist/gas/config/atof-tahoe.c                               |     431 -
 gnu/dist/gas/config/atof-vax.c                                 |     517 -
 gnu/dist/gas/config/e-i386coff.c                               |      17 -
 gnu/dist/gas/config/e-i386elf.c                                |      17 -
 gnu/dist/gas/config/e-mipsecoff.c                              |      37 -
 gnu/dist/gas/config/e-mipself.c                                |      37 -
 gnu/dist/gas/config/itbl-mips.h                                |      47 -
 gnu/dist/gas/config/m68k-parse.h                               |     283 -
 gnu/dist/gas/config/m68k-parse.y                               |    1061 -
 gnu/dist/gas/config/m88k-opcode.h                              |     559 -
 gnu/dist/gas/config/obj-aout.c                                 |     816 -
 gnu/dist/gas/config/obj-aout.h                                 |     254 -
 gnu/dist/gas/config/obj-bout.c                                 |     348 -
 gnu/dist/gas/config/obj-bout.h                                 |     316 -
 gnu/dist/gas/config/obj-coff.c                                 |    4400 -
 gnu/dist/gas/config/obj-coff.h                                 |     816 -
 gnu/dist/gas/config/obj-ecoff.c                                |     305 -
 gnu/dist/gas/config/obj-ecoff.h                                |      70 -
 gnu/dist/gas/config/obj-elf.c                                  |    1642 -
 gnu/dist/gas/config/obj-elf.h                                  |     186 -
 gnu/dist/gas/config/obj-evax.c                                 |      83 -
 gnu/dist/gas/config/obj-evax.h                                 |      95 -
 gnu/dist/gas/config/obj-generic.c                              |      41 -
 gnu/dist/gas/config/obj-generic.h                              |      80 -
 gnu/dist/gas/config/obj-hp300.c                                |      52 -
 gnu/dist/gas/config/obj-hp300.h                                |      71 -
 gnu/dist/gas/config/obj-ieee.c                                 |     627 -
 gnu/dist/gas/config/obj-ieee.h                                 |      50 -
 gnu/dist/gas/config/obj-multi.c                                |       4 -
 gnu/dist/gas/config/obj-multi.h                                |      50 -
 gnu/dist/gas/config/obj-som.c                                  |     227 -
 gnu/dist/gas/config/obj-som.h                                  |      70 -
 gnu/dist/gas/config/obj-vms.c                                  |    5421 -
 gnu/dist/gas/config/obj-vms.h                                  |     552 -
 gnu/dist/gas/config/tc-a29k.c                                  |    1319 -
 gnu/dist/gas/config/tc-a29k.h                                  |      51 -
 gnu/dist/gas/config/tc-alpha.c                                 |    4527 -
 gnu/dist/gas/config/tc-alpha.h                                 |      92 -
 gnu/dist/gas/config/tc-arc.c                                   |    1481 -
 gnu/dist/gas/config/tc-arc.h                                   |      71 -
 gnu/dist/gas/config/tc-arm.c                                   |    6684 -
 gnu/dist/gas/config/tc-arm.h                                   |     187 -
 gnu/dist/gas/config/tc-d10v.c                                  |    1513 -
 gnu/dist/gas/config/tc-d10v.h                                  |      57 -
 gnu/dist/gas/config/tc-generic.h                               |      39 -
 gnu/dist/gas/config/tc-h8300.c                                 |    1606 -
 gnu/dist/gas/config/tc-h8300.h                                 |      50 -
 gnu/dist/gas/config/tc-h8500.c                                 |    1657 -
 gnu/dist/gas/config/tc-h8500.h                                 |      49 -
 gnu/dist/gas/config/tc-hppa.c                                  |    6570 -
 gnu/dist/gas/config/tc-hppa.h                                  |     160 -
 gnu/dist/gas/config/tc-i386.c                                  |    3330 -
 gnu/dist/gas/config/tc-i386.h                                  |     446 -
 gnu/dist/gas/config/tc-i860.c                                  |    1290 -
 gnu/dist/gas/config/tc-i860.h                                  |      22 -
 gnu/dist/gas/config/tc-i960.c                                  |    3257 -
 gnu/dist/gas/config/tc-i960.h                                  |     169 -
 gnu/dist/gas/config/tc-m32r.c                                  |    1108 -
 gnu/dist/gas/config/tc-m32r.h                                  |     116 -
 gnu/dist/gas/config/tc-m68851.h                                |     304 -
 gnu/dist/gas/config/tc-m68k.c                                  |    6929 -
 gnu/dist/gas/config/tc-m68k.h                                  |     211 -
 gnu/dist/gas/config/tc-m88k.c                                  |    1452 -
 gnu/dist/gas/config/tc-m88k.h                                  |     108 -
 gnu/dist/gas/config/tc-mips.c                                  |   11454 -
 gnu/dist/gas/config/tc-mips.h                                  |     153 -
 gnu/dist/gas/config/tc-mn10200.c                               |    1395 -
 gnu/dist/gas/config/tc-mn10200.h                               |      51 -
 gnu/dist/gas/config/tc-mn10300.c                               |    1545 -
 gnu/dist/gas/config/tc-mn10300.h                               |      50 -
 gnu/dist/gas/config/tc-ns32k.c                                 |    2379 -
 gnu/dist/gas/config/tc-ns32k.h                                 |     169 -
 gnu/dist/gas/config/tc-ppc.c                                   |    4986 -
 gnu/dist/gas/config/tc-ppc.h                                   |     268 -
 gnu/dist/gas/config/tc-sh.c                                    |    2335 -
 gnu/dist/gas/config/tc-sh.h                                    |     141 -
 gnu/dist/gas/config/tc-sparc.c                                 |    3366 -
 gnu/dist/gas/config/tc-sparc.h                                 |     149 -
 gnu/dist/gas/config/tc-tahoe.c                                 |    2027 -
 gnu/dist/gas/config/tc-tahoe.h                                 |      43 -
 gnu/dist/gas/config/tc-tic30.c                                 |    1909 -
 gnu/dist/gas/config/tc-tic30.h                                 |      53 -
 gnu/dist/gas/config/tc-v850.c                                  |    1902 -
 gnu/dist/gas/config/tc-v850.h                                  |      80 -
 gnu/dist/gas/config/tc-vax.c                                   |    3414 -
 gnu/dist/gas/config/tc-vax.h                                   |      51 -
 gnu/dist/gas/config/tc-w65.c                                   |    1245 -
 gnu/dist/gas/config/tc-w65.h                                   |      53 -
 gnu/dist/gas/config/tc-z8k.c                                   |    1613 -
 gnu/dist/gas/config/tc-z8k.h                                   |      46 -
 gnu/dist/gas/config/te-386bsd.h                                |      31 -
 gnu/dist/gas/config/te-aux.h                                   |      17 -
 gnu/dist/gas/config/te-delt88.h                                |      13 -
 gnu/dist/gas/config/te-delta.h                                 |      14 -
 gnu/dist/gas/config/te-dpx2.h                                  |      12 -
 gnu/dist/gas/config/te-dynix.h                                 |       7 -
 gnu/dist/gas/config/te-generic.h                               |      22 -
 gnu/dist/gas/config/te-go32.h                                  |      14 -
 gnu/dist/gas/config/te-hp300.h                                 |      25 -
 gnu/dist/gas/config/te-hppa.h                                  |      26 -
 gnu/dist/gas/config/te-i386aix.h                               |      29 -
 gnu/dist/gas/config/te-ic960.h                                 |      38 -
 gnu/dist/gas/config/te-linux.h                                 |       4 -
 gnu/dist/gas/config/te-lnews.h                                 |       5 -
 gnu/dist/gas/config/te-lynx.h                                  |       7 -
 gnu/dist/gas/config/te-mach.h                                  |       2 -
 gnu/dist/gas/config/te-macos.h                                 |      11 -
 gnu/dist/gas/config/te-multi.h                                 |      22 -
 gnu/dist/gas/config/te-nbsd.h                                  |      24 -
 gnu/dist/gas/config/te-nbsd532.h                               |      19 -
 gnu/dist/gas/config/te-pc532mach.h                             |      19 -
 gnu/dist/gas/config/te-pe.h                                    |       7 -
 gnu/dist/gas/config/te-ppcnw.h                                 |      31 -
 gnu/dist/gas/config/te-psos.h                                  |      22 -
 gnu/dist/gas/config/te-riscix.h                                |       6 -
 gnu/dist/gas/config/te-sparcaout.h                             |      21 -
 gnu/dist/gas/config/te-sun3.h                                  |      48 -
 gnu/dist/gas/config/te-svr4.h                                  |       4 -
 gnu/dist/gas/config/te-sysv32.h                                |       6 -
 gnu/dist/gas/config/vax-inst.h                                 |      77 -
 gnu/dist/gas/config/vms-a-conf.h                               |     129 -
 gnu/dist/gas/config/vms-conf.h                                 |     179 -
 gnu/dist/gas/configure                                         |    3674 -
 gnu/dist/gas/configure.in                                      |     710 -
 gnu/dist/gas/debug.c                                           |     104 -
 gnu/dist/gas/dep-in.sed                                        |      44 -
 gnu/dist/gas/depend.c                                          |     208 -
 gnu/dist/gas/doc/Makefile.am                                   |      43 -
 gnu/dist/gas/doc/Makefile.in                                   |     350 -
 gnu/dist/gas/doc/all.texi                                      |      70 -
 gnu/dist/gas/doc/as.1                                          |     302 -
 gnu/dist/gas/doc/as.texinfo                                    |    5190 -
 gnu/dist/gas/doc/c-a29k.texi                                   |     182 -
 gnu/dist/gas/doc/c-arm.texi                                    |     147 -
 gnu/dist/gas/doc/c-d10v.texi                                   |     250 -
 gnu/dist/gas/doc/c-h8300.texi                                  |     342 -
 gnu/dist/gas/doc/c-h8500.texi                                  |     272 -
 gnu/dist/gas/doc/c-hppa.texi                                   |     263 -
 gnu/dist/gas/doc/c-i386.texi                                   |     456 -
 gnu/dist/gas/doc/c-i960.texi                                   |     298 -
 gnu/dist/gas/doc/c-m32r.texi                                   |      13 -
 gnu/dist/gas/doc/c-m68k.texi                                   |     503 -
 gnu/dist/gas/doc/c-mips.texi                                   |     229 -
 gnu/dist/gas/doc/c-ns32k.texi                                  |      30 -
 gnu/dist/gas/doc/c-sh.texi                                     |     272 -
 gnu/dist/gas/doc/c-sparc.texi                                  |     179 -
 gnu/dist/gas/doc/c-v850.texi                                   |     308 -
 gnu/dist/gas/doc/c-vax.texi                                    |     323 -
 gnu/dist/gas/doc/c-z8k.texi                                    |     380 -
 gnu/dist/gas/doc/gasp.texi                                     |    1086 -
 gnu/dist/gas/doc/h8.texi                                       |      26 -
 gnu/dist/gas/doc/internals.texi                                |    1547 -
 gnu/dist/gas/ecoff.c                                           |    5286 -
 gnu/dist/gas/ecoff.h                                           |     107 -
 gnu/dist/gas/ehopt.c                                           |     434 -
 gnu/dist/gas/emul-target.h                                     |      43 -
 gnu/dist/gas/emul.h                                            |      23 -
 gnu/dist/gas/expr.c                                            |    1805 -
 gnu/dist/gas/expr.h                                            |     160 -
 gnu/dist/gas/flonum-copy.c                                     |      73 -
 gnu/dist/gas/flonum-konst.c                                    |     209 -
 gnu/dist/gas/flonum-mult.c                                     |     200 -
 gnu/dist/gas/flonum.h                                          |     110 -
 gnu/dist/gas/frags.c                                           |     352 -
 gnu/dist/gas/frags.h                                           |     154 -
 gnu/dist/gas/gasp.c                                            |    3740 -
 gnu/dist/gas/gdbinit.in                                        |      39 -
 gnu/dist/gas/hash.c                                            |    1028 -
 gnu/dist/gas/hash.h                                            |      45 -
 gnu/dist/gas/input-file.c                                      |     248 -
 gnu/dist/gas/input-file.h                                      |      68 -
 gnu/dist/gas/input-scrub.c                                     |     516 -
 gnu/dist/gas/itbl-lex.l                                        |     114 -
 gnu/dist/gas/itbl-ops.c                                        |     921 -
 gnu/dist/gas/itbl-ops.h                                        |     109 -
 gnu/dist/gas/itbl-parse.y                                      |     459 -
 gnu/dist/gas/listing.c                                         |    1357 -
 gnu/dist/gas/listing.h                                         |      66 -
 gnu/dist/gas/literal.c                                         |      95 -
 gnu/dist/gas/macro.c                                           |    1248 -
 gnu/dist/gas/macro.h                                           |      52 -
 gnu/dist/gas/messages.c                                        |     537 -
 gnu/dist/gas/obj.h                                             |      79 -
 gnu/dist/gas/output-file.c                                     |     156 -
 gnu/dist/gas/output-file.h                                     |      25 -
 gnu/dist/gas/read.c                                            |    4898 -
 gnu/dist/gas/read.h                                            |     158 -
 gnu/dist/gas/sb.c                                              |     289 -
 gnu/dist/gas/sb.h                                              |      99 -
 gnu/dist/gas/stabs.c                                           |     514 -
 gnu/dist/gas/stamp-h.in                                        |       1 -
 gnu/dist/gas/struc-symbol.h                                    |     162 -
 gnu/dist/gas/subsegs.c                                         |     593 -
 gnu/dist/gas/subsegs.h                                         |     158 -
 gnu/dist/gas/symbols.c                                         |    1752 -
 gnu/dist/gas/symbols.h                                         |      90 -
 gnu/dist/gas/tc.h                                              |     112 -
 gnu/dist/gas/vmsconf.sh                                        |     128 -
 gnu/dist/gas/write.c                                           |    2846 -
 gnu/dist/gas/write.h                                           |     195 -
 gnu/dist/gawk/ACKNOWLEDGMENT                                   |      34 -
 gnu/dist/gawk/COPYING                                          |     340 -
 gnu/dist/gawk/ChangeLog                                        |     826 -
 gnu/dist/gawk/FUTURES                                          |     108 -
 gnu/dist/gawk/INSTALL                                          |     181 -
 gnu/dist/gawk/LIMITATIONS                                      |      16 -
 gnu/dist/gawk/Makefile.in                                      |     281 -
 gnu/dist/gawk/NEWS                                             |    1802 -
 gnu/dist/gawk/PORTS                                            |      36 -
 gnu/dist/gawk/POSIX.STD                                        |     109 -
 gnu/dist/gawk/PROBLEMS                                         |      10 -
 gnu/dist/gawk/README                                           |      94 -
 gnu/dist/gawk/README_d/README.FIRST                            |      21 -
 gnu/dist/gawk/README_d/README.VMS                              |     103 -
 gnu/dist/gawk/README_d/README.atari                            |      21 -
 gnu/dist/gawk/README_d/README.irix                             |      55 -
 gnu/dist/gawk/README_d/README.linux                            |      13 -
 gnu/dist/gawk/README_d/README.pc                               |     316 -
 gnu/dist/gawk/README_d/README.sco                              |      22 -
 gnu/dist/gawk/README_d/README.sgi                              |      20 -
 gnu/dist/gawk/README_d/README.solaris                          |      37 -
 gnu/dist/gawk/README_d/README.sony                             |      11 -
 gnu/dist/gawk/README_d/README.sunos4                           |      24 -
 gnu/dist/gawk/README_d/README.ultrix                           |      27 -
 gnu/dist/gawk/README_d/README.yacc                             |      10 -
 gnu/dist/gawk/acconfig.h                                       |      36 -
 gnu/dist/gawk/aclocal.m4                                       |      40 -
 gnu/dist/gawk/alloca.c                                         |     496 -
 gnu/dist/gawk/array.c                                          |     526 -
 gnu/dist/gawk/awk.h                                            |     882 -
 gnu/dist/gawk/awk.y                                            |    2434 -
 gnu/dist/gawk/awklib/ChangeLog                                 |      42 -
 gnu/dist/gawk/awklib/Makefile.in                               |      99 -
 gnu/dist/gawk/awklib/eg/data/BBS-list                          |      11 -
 gnu/dist/gawk/awklib/eg/data/inventory-shipped                 |      17 -
 gnu/dist/gawk/awklib/eg/lib/assert.awk                         |      18 -
 gnu/dist/gawk/awklib/eg/lib/ctime.awk                          |      11 -
 gnu/dist/gawk/awklib/eg/lib/ftrans.awk                         |      15 -
 gnu/dist/gawk/awklib/eg/lib/getopt.awk                         |      82 -
 gnu/dist/gawk/awklib/eg/lib/gettime.awk                        |      61 -
 gnu/dist/gawk/awklib/eg/lib/grcat.c                            |      34 -
 gnu/dist/gawk/awklib/eg/lib/groupawk.in                        |      80 -
 gnu/dist/gawk/awklib/eg/lib/join.awk                           |      15 -
 gnu/dist/gawk/awklib/eg/lib/mktime.awk                         |     106 -
 gnu/dist/gawk/awklib/eg/lib/nextfile.awk                       |      15 -
 gnu/dist/gawk/awklib/eg/lib/ord.awk                            |      54 -
 gnu/dist/gawk/awklib/eg/lib/passwdawk.in                       |      56 -
 gnu/dist/gawk/awklib/eg/lib/pwcat.c                            |      29 -
 gnu/dist/gawk/awklib/eg/lib/round.awk                          |      32 -
 gnu/dist/gawk/awklib/eg/misc/arraymax.awk                      |      10 -
 gnu/dist/gawk/awklib/eg/misc/arraymax.data                     |       5 -
 gnu/dist/gawk/awklib/eg/misc/findpat.data                      |       7 -
 gnu/dist/gawk/awklib/eg/misc/findpat.sh                        |      10 -
 gnu/dist/gawk/awklib/eg/prog/alarm.awk                         |      81 -
 gnu/dist/gawk/awklib/eg/prog/awksed.awk                        |      31 -
 gnu/dist/gawk/awklib/eg/prog/cut.awk                           |     136 -
 gnu/dist/gawk/awklib/eg/prog/dupword.awk                       |      16 -
 gnu/dist/gawk/awklib/eg/prog/egrep.awk                         |      96 -
 gnu/dist/gawk/awklib/eg/prog/extract.awk                       |      72 -
 gnu/dist/gawk/awklib/eg/prog/histsort.awk                      |      14 -
 gnu/dist/gawk/awklib/eg/prog/id.awk                            |      69 -
 gnu/dist/gawk/awklib/eg/prog/igawk.sh                          |     130 -
 gnu/dist/gawk/awklib/eg/prog/labels.awk                        |      53 -
 gnu/dist/gawk/awklib/eg/prog/split.awk                         |      53 -
 gnu/dist/gawk/awklib/eg/prog/tee.awk                           |      38 -
 gnu/dist/gawk/awklib/eg/prog/translate.awk                     |      46 -
 gnu/dist/gawk/awklib/eg/prog/uniq.awk                          |     116 -
 gnu/dist/gawk/awklib/eg/prog/wc.awk                            |      68 -
 gnu/dist/gawk/awklib/eg/prog/wordfreq.awk                      |      13 -
 gnu/dist/gawk/awklib/extract.awk                               |      87 -
 gnu/dist/gawk/awklib/stamp-eg                                  |       2 -
 gnu/dist/gawk/builtin.c                                        |    2052 -
 gnu/dist/gawk/configh.in                                       |     206 -
 gnu/dist/gawk/configure                                        |    3163 -
 gnu/dist/gawk/configure.in                                     |     129 -
 gnu/dist/gawk/custom.h                                         |      59 -
 gnu/dist/gawk/dfa.c                                            |    2606 -
 gnu/dist/gawk/dfa.h                                            |     364 -
 gnu/dist/gawk/doc/ChangeLog                                    |      91 -
 gnu/dist/gawk/doc/Makefile.in                                  |     128 -
 gnu/dist/gawk/doc/README.card                                  |      19 -
 gnu/dist/gawk/doc/ad.block                                     |      48 -
 gnu/dist/gawk/doc/awkcard.in                                   |    1540 -
 gnu/dist/gawk/doc/awkforai.txt                                 |     150 -
 gnu/dist/gawk/doc/cardfonts                                    |      37 -
 gnu/dist/gawk/doc/colors                                       |      39 -
 gnu/dist/gawk/doc/gawk.1                                       |    2621 -
 gnu/dist/gawk/doc/gawk.texi                                    |   20820 -
 gnu/dist/gawk/doc/igawk.1                                      |      73 -
 gnu/dist/gawk/doc/macros                                       |     211 -
 gnu/dist/gawk/doc/no.colors                                    |      31 -
 gnu/dist/gawk/doc/setter.outline                               |      77 -
 gnu/dist/gawk/doc/texinfo.tex                                  |    4761 -
 gnu/dist/gawk/eval.c                                           |    1720 -
 gnu/dist/gawk/field.c                                          |     915 -
 gnu/dist/gawk/gawkmisc.c                                       |      63 -
 gnu/dist/gawk/getopt.c                                         |    1002 -
 gnu/dist/gawk/getopt.h                                         |     133 -
 gnu/dist/gawk/getopt1.c                                        |     189 -
 gnu/dist/gawk/install-sh                                       |     238 -
 gnu/dist/gawk/io.c                                             |    1941 -
 gnu/dist/gawk/main.c                                           |     735 -
 gnu/dist/gawk/missing.c                                        |      59 -
 gnu/dist/gawk/missing/memcmp.c                                 |      18 -
 gnu/dist/gawk/missing/memcpy.c                                 |      18 -
 gnu/dist/gawk/missing/memset.c                                 |      20 -
 gnu/dist/gawk/missing/strchr.c                                 |      47 -
 gnu/dist/gawk/missing/strerror.c                               |      37 -
 gnu/dist/gawk/missing/strftime.3                               |     353 -
 gnu/dist/gawk/missing/strftime.c                               |     891 -
 gnu/dist/gawk/missing/strncasecmp.c                            |      95 -
 gnu/dist/gawk/missing/strtod.c                                 |     123 -
 gnu/dist/gawk/missing/system.c                                 |      27 -
 gnu/dist/gawk/missing/tzset.c                                  |      39 -
 gnu/dist/gawk/mkinstalldirs                                    |      32 -
 gnu/dist/gawk/msg.c                                            |     189 -
 gnu/dist/gawk/node.c                                           |     515 -
 gnu/dist/gawk/patchlevel.h                                     |       1 -
 gnu/dist/gawk/posix/ChangeLog                                  |      19 -
 gnu/dist/gawk/posix/gawkmisc.c                                 |     108 -
 gnu/dist/gawk/protos.h                                         |     128 -
 gnu/dist/gawk/random.c                                         |     379 -
 gnu/dist/gawk/random.h                                         |      29 -
 gnu/dist/gawk/re.c                                             |     310 -
 gnu/dist/gawk/regex.c                                          |    5718 -
 gnu/dist/gawk/regex.h                                          |     531 -
 gnu/dist/gawk/stamp-h.in                                       |       1 -
 gnu/dist/gawk/version.c                                        |      50 -
 gnu/dist/gcc/.gdbinit                                          |     100 -
 gnu/dist/gcc/BUGS                                              |      23 -
 gnu/dist/gcc/COPYING                                           |     340 -
 gnu/dist/gcc/COPYING.LIB                                       |     482 -
 gnu/dist/gcc/INSTALL-old                                       |    2188 -
 gnu/dist/gcc/LANGUAGES                                         |      79 -
 gnu/dist/gcc/LITERATURE                                        |      99 -
 gnu/dist/gcc/Makefile.in                                       |    2985 -
 gnu/dist/gcc/NEWS                                              |    1063 -
 gnu/dist/gcc/PROBLEMS                                          |     117 -
 gnu/dist/gcc/PROJECTS                                          |     449 -
 gnu/dist/gcc/README                                            |      26 -
 gnu/dist/gcc/README-bugs                                       |     144 -
 gnu/dist/gcc/README-fixinc                                     |       9 -
 gnu/dist/gcc/README.ACORN                                      |      18 -
 gnu/dist/gcc/README.ALTOS                                      |      55 -
 gnu/dist/gcc/README.APOLLO                                     |     112 -
 gnu/dist/gcc/README.DWARF                                      |     574 -
 gnu/dist/gcc/README.FRESCO                                     |      17 -
 gnu/dist/gcc/README.NS32K                                      |     130 -
 gnu/dist/gcc/README.RS6000                                     |     141 -
 gnu/dist/gcc/README.TRAD                                       |      55 -
 gnu/dist/gcc/README.X11                                        |     447 -
 gnu/dist/gcc/README.g77                                        |     263 -
 gnu/dist/gcc/README.gnat                                       |     435 -
 gnu/dist/gcc/SERVICE                                           |    1609 -
 gnu/dist/gcc/TESTS.FLUNK                                       |      39 -
 gnu/dist/gcc/acconfig.h                                        |      79 -
 gnu/dist/gcc/aclocal.m4                                        |     221 -
 gnu/dist/gcc/alias.c                                           |    1261 -
 gnu/dist/gcc/alloca.c                                          |     504 -
 gnu/dist/gcc/assert.h                                          |      54 -
 gnu/dist/gcc/basic-block.h                                     |     266 -
 gnu/dist/gcc/bitmap.c                                          |     642 -
 gnu/dist/gcc/bitmap.h                                          |     317 -
 gnu/dist/gcc/build-make                                        |      35 -
 gnu/dist/gcc/c-aux-info.c                                      |     643 -
 gnu/dist/gcc/c-common.c                                        |    3076 -
 gnu/dist/gcc/c-convert.c                                       |      97 -
 gnu/dist/gcc/c-decl.c                                          |    7367 -
 gnu/dist/gcc/c-gperf.h                                         |     186 -
 gnu/dist/gcc/c-iterate.c                                       |     604 -
 gnu/dist/gcc/c-lang.c                                          |     198 -
 gnu/dist/gcc/c-lex.c                                           |    2167 -
 gnu/dist/gcc/c-lex.h                                           |      86 -
 gnu/dist/gcc/c-parse.gperf                                     |      84 -
 gnu/dist/gcc/c-parse.in                                        |    3053 -
 gnu/dist/gcc/c-parse.y                                         |    2204 -
 gnu/dist/gcc/c-pragma.c                                        |     181 -
 gnu/dist/gcc/c-pragma.h                                        |      46 -
 gnu/dist/gcc/c-tree.h                                          |     524 -
 gnu/dist/gcc/c-typeck.c                                        |    7034 -
 gnu/dist/gcc/caller-save.c                                     |     763 -
 gnu/dist/gcc/calls.c                                           |    3705 -
 gnu/dist/gcc/cccp.1                                            |     682 -
 gnu/dist/gcc/cccp.c                                            |   10906 -
 gnu/dist/gcc/cexp.y                                            |    1224 -
 gnu/dist/gcc/choose-temp.c                                     |     216 -
 gnu/dist/gcc/collect2.c                                        |    3640 -
 gnu/dist/gcc/combine.c                                         |   11957 -
 gnu/dist/gcc/conditions.h                                      |     118 -
 gnu/dist/gcc/config.guess                                      |       4 -
 gnu/dist/gcc/config.in                                         |     202 -
 gnu/dist/gcc/config.sub                                        |     976 -
 gnu/dist/gcc/config/1750a/1750a.c                              |     734 -
 gnu/dist/gcc/config/1750a/1750a.h                              |    1348 -
 gnu/dist/gcc/config/1750a/1750a.md                             |    1436 -
 gnu/dist/gcc/config/1750a/ms1750.inc                           |     158 -
 gnu/dist/gcc/config/1750a/xm-1750a.h                           |      23 -
 gnu/dist/gcc/config/README                                     |       5 -
 gnu/dist/gcc/config/a29k/a29k.c                                |    1536 -
 gnu/dist/gcc/config/a29k/a29k.h                                |    1672 -
 gnu/dist/gcc/config/a29k/a29k.md                               |    2874 -
 gnu/dist/gcc/config/a29k/t-a29k                                |       5 -
 gnu/dist/gcc/config/a29k/t-a29kbare                            |      19 -
 gnu/dist/gcc/config/a29k/t-vx29k                               |      17 -
 gnu/dist/gcc/config/a29k/udi.h                                 |      94 -
 gnu/dist/gcc/config/a29k/unix.h                                |      92 -
 gnu/dist/gcc/config/a29k/vx29k.h                               |      46 -
 gnu/dist/gcc/config/a29k/x-unix                                |       2 -
 gnu/dist/gcc/config/a29k/xm-a29k.h                             |      41 -
 gnu/dist/gcc/config/a29k/xm-unix.h                             |      43 -
 gnu/dist/gcc/config/alpha/alpha.c                              |    4457 -
 gnu/dist/gcc/config/alpha/alpha.h                              |    2490 -
 gnu/dist/gcc/config/alpha/alpha.md                             |    5224 -
 gnu/dist/gcc/config/alpha/crtbegin.asm                         |     111 -
 gnu/dist/gcc/config/alpha/crtend.asm                           |     105 -
 gnu/dist/gcc/config/alpha/netbsd.h                             |     470 -
 gnu/dist/gcc/config/alpha/openbsd.h                            |     126 -
 gnu/dist/gcc/config/alpha/t-crtbe                              |       9 -
 gnu/dist/gcc/config/alpha/va_list.h                            |      16 -
 gnu/dist/gcc/config/alpha/x-alpha                              |       2 -
 gnu/dist/gcc/config/alpha/xm-alpha.h                           |      80 -
 gnu/dist/gcc/config/alpha/xm-netbsd.h                          |       4 -
 gnu/dist/gcc/config/alpha/xm-openbsd.h                         |      23 -
 gnu/dist/gcc/config/alpha/xm-vms.h                             |      93 -
 gnu/dist/gcc/config/alpha/xm-winnt.h                           |      34 -
 gnu/dist/gcc/config/aoutos.h                                   |      41 -
 gnu/dist/gcc/config/arc/arc.c                                  |    2212 -
 gnu/dist/gcc/config/arc/arc.h                                  |    1643 -
 gnu/dist/gcc/config/arc/arc.md                                 |    1630 -
 gnu/dist/gcc/config/arc/initfini.c                             |     157 -
 gnu/dist/gcc/config/arc/lib1funcs.asm                          |     273 -
 gnu/dist/gcc/config/arc/t-arc                                  |      72 -
 gnu/dist/gcc/config/arc/xm-arc.h                               |      47 -
 gnu/dist/gcc/config/arm/README-interworking                    |     553 -
 gnu/dist/gcc/config/arm/aof.h                                  |     453 -
 gnu/dist/gcc/config/arm/aout.h                                 |     259 -
 gnu/dist/gcc/config/arm/arm.c                                  |    6129 -
 gnu/dist/gcc/config/arm/arm.h                                  |    2128 -
 gnu/dist/gcc/config/arm/arm.md                                 |    6250 -
 gnu/dist/gcc/config/arm/coff.h                                 |     209 -
 gnu/dist/gcc/config/arm/lib1funcs.asm                          |     521 -
 gnu/dist/gcc/config/arm/lib1thumb.asm                          |     695 -
 gnu/dist/gcc/config/arm/netbsd.h                               |     155 -
 gnu/dist/gcc/config/arm/riscix.h                               |     144 -
 gnu/dist/gcc/config/arm/riscix1-1.h                            |      97 -
 gnu/dist/gcc/config/arm/rix-gas.h                              |      43 -
 gnu/dist/gcc/config/arm/semi.h                                 |      40 -
 gnu/dist/gcc/config/arm/semiaof.h                              |      43 -
 gnu/dist/gcc/config/arm/t-bare                                 |      30 -
 gnu/dist/gcc/config/arm/t-thumb                                |      32 -
 gnu/dist/gcc/config/arm/tcoff.h                                |     192 -
 gnu/dist/gcc/config/arm/thumb.c                                |    2013 -
 gnu/dist/gcc/config/arm/thumb.h                                |    1138 -
 gnu/dist/gcc/config/arm/thumb.md                               |    1145 -
 gnu/dist/gcc/config/arm/x-riscix                               |       8 -
 gnu/dist/gcc/config/arm/xm-arm.h                               |      69 -
 gnu/dist/gcc/config/arm/xm-linux.h                             |      24 -
 gnu/dist/gcc/config/arm/xm-netbsd.h                            |       7 -
 gnu/dist/gcc/config/arm/xm-thumb.h                             |       1 -
 gnu/dist/gcc/config/clipper/clipper.c                          |     508 -
 gnu/dist/gcc/config/clipper/clipper.h                          |    1123 -
 gnu/dist/gcc/config/clipper/clipper.md                         |    1421 -
 gnu/dist/gcc/config/clipper/clix.h                             |     162 -
 gnu/dist/gcc/config/clipper/x-clix                             |       1 -
 gnu/dist/gcc/config/clipper/xm-clix.h                          |      30 -
 gnu/dist/gcc/config/convex/convex.c                            |     675 -
 gnu/dist/gcc/config/convex/convex.h                            |    1503 -
 gnu/dist/gcc/config/convex/convex.md                           |    1885 -
 gnu/dist/gcc/config/convex/fixinc.convex                       |     416 -
 gnu/dist/gcc/config/convex/x-convex                            |       5 -
 gnu/dist/gcc/config/convex/xm-convex.h                         |      48 -
 gnu/dist/gcc/config/dbx.h                                      |      30 -
 gnu/dist/gcc/config/dbxcoff.h                                  |      87 -
 gnu/dist/gcc/config/elxsi/elxsi.c                              |     127 -
 gnu/dist/gcc/config/elxsi/elxsi.h                              |     967 -
 gnu/dist/gcc/config/elxsi/elxsi.md                             |    1420 -
 gnu/dist/gcc/config/elxsi/x-elxsi                              |       9 -
 gnu/dist/gcc/config/elxsi/xm-elxsi.h                           |      38 -
 gnu/dist/gcc/config/float-i128.h                               |      96 -
 gnu/dist/gcc/config/float-i32.h                                |      96 -
 gnu/dist/gcc/config/float-i386.h                               |     104 -
 gnu/dist/gcc/config/float-i64.h                                |      96 -
 gnu/dist/gcc/config/float-m68k.h                               |      97 -
 gnu/dist/gcc/config/float-sh.h                                 |     130 -
 gnu/dist/gcc/config/float-vax.h                                |      96 -
 gnu/dist/gcc/config/fp-bit.c                                   |    1510 -
 gnu/dist/gcc/config/fx80/fx80.c                                |     300 -
 gnu/dist/gcc/config/fx80/fx80.h                                |    1446 -
 gnu/dist/gcc/config/fx80/fx80.md                               |    2516 -
 gnu/dist/gcc/config/fx80/xm-fx80.h                             |      39 -
 gnu/dist/gcc/config/gmicro/gmicro.c                            |     982 -
 gnu/dist/gcc/config/gmicro/gmicro.h                            |    1589 -
 gnu/dist/gcc/config/gmicro/gmicro.md                           |    2738 -
 gnu/dist/gcc/config/gofast.h                                   |      96 -
 gnu/dist/gcc/config/h8300/h8300.c                              |    3150 -
 gnu/dist/gcc/config/h8300/h8300.h                              |    1407 -
 gnu/dist/gcc/config/h8300/h8300.md                             |    2315 -
 gnu/dist/gcc/config/h8300/lib1funcs.asm                        |     781 -
 gnu/dist/gcc/config/h8300/t-h8300                              |      27 -
 gnu/dist/gcc/config/h8300/xm-h8300.h                           |      46 -
 gnu/dist/gcc/config/i370/i370.c                                |     584 -
 gnu/dist/gcc/config/i370/i370.h                                |    1440 -
 gnu/dist/gcc/config/i370/i370.md                               |    4210 -
 gnu/dist/gcc/config/i370/t-i370                                |       4 -
 gnu/dist/gcc/config/i370/xm-i370.h                             |      53 -
 gnu/dist/gcc/config/i386/att.h                                 |      93 -
 gnu/dist/gcc/config/i386/bsd.h                                 |     130 -
 gnu/dist/gcc/config/i386/gas.h                                 |     161 -
 gnu/dist/gcc/config/i386/gmon-sol2.c                           |     409 -
 gnu/dist/gcc/config/i386/gstabs.h                              |       9 -
 gnu/dist/gcc/config/i386/i386-aout.h                           |      34 -
 gnu/dist/gcc/config/i386/i386-coff.h                           |      97 -
 gnu/dist/gcc/config/i386/i386.c                                |    5275 -
 gnu/dist/gcc/config/i386/i386.h                                |    2835 -
 gnu/dist/gcc/config/i386/i386.md                               |    7818 -
 gnu/dist/gcc/config/i386/netbsd-elf.h                          |     661 -
 gnu/dist/gcc/config/i386/netbsd.h                              |     101 -
 gnu/dist/gcc/config/i386/openbsd.h                             |     130 -
 gnu/dist/gcc/config/i386/perform.h                             |      98 -
 gnu/dist/gcc/config/i386/sun.h                                 |      83 -
 gnu/dist/gcc/config/i386/sun386.h                              |     142 -
 gnu/dist/gcc/config/i386/t-crtpic                              |      10 -
 gnu/dist/gcc/config/i386/t-crtstuff                            |       2 -
 gnu/dist/gcc/config/i386/unix.h                                |     191 -
 gnu/dist/gcc/config/i386/x-aix                                 |      12 -
 gnu/dist/gcc/config/i386/x-cygwin32                            |       4 -
 gnu/dist/gcc/config/i386/x-dgux                                |      11 -
 gnu/dist/gcc/config/i386/x-isc                                 |       3 -
 gnu/dist/gcc/config/i386/x-isc3                                |       4 -
 gnu/dist/gcc/config/i386/x-ncr3000                             |      34 -
 gnu/dist/gcc/config/i386/x-next                                |       3 -
 gnu/dist/gcc/config/i386/x-osf1elf                             |       8 -
 gnu/dist/gcc/config/i386/x-osfrose                             |      27 -
 gnu/dist/gcc/config/i386/x-sco                                 |       7 -
 gnu/dist/gcc/config/i386/x-sco4                                |      10 -
 gnu/dist/gcc/config/i386/x-sco5                                |      10 -
 gnu/dist/gcc/config/i386/x-sysv3                               |       1 -
 gnu/dist/gcc/config/i386/x-vsta                                |       1 -
 gnu/dist/gcc/config/i386/xm-aix.h                              |       2 -
 gnu/dist/gcc/config/i386/xm-bsd386.h                           |       3 -
 gnu/dist/gcc/config/i386/xm-cygwin32.h                         |      55 -
 gnu/dist/gcc/config/i386/xm-dgux.h                             |      12 -
 gnu/dist/gcc/config/i386/xm-dos.h                              |      14 -
 gnu/dist/gcc/config/i386/xm-freebsd.h                          |       4 -
 gnu/dist/gcc/config/i386/xm-gnu.h                              |       5 -
 gnu/dist/gcc/config/i386/xm-go32.h                             |      33 -
 gnu/dist/gcc/config/i386/xm-i386.h                             |      43 -
 gnu/dist/gcc/config/i386/xm-isc.h                              |       4 -
 gnu/dist/gcc/config/i386/xm-linux.h                            |      24 -
 gnu/dist/gcc/config/i386/xm-lynx.h                             |      33 -
 gnu/dist/gcc/config/i386/xm-mingw32.h                          |      42 -
 gnu/dist/gcc/config/i386/xm-netbsd.h                           |       4 -
 gnu/dist/gcc/config/i386/xm-next.h                             |       5 -
 gnu/dist/gcc/config/i386/xm-openbsd.h                          |      23 -
 gnu/dist/gcc/config/i386/xm-os2.h                              |      69 -
 gnu/dist/gcc/config/i386/xm-osf.h                              |       2 -
 gnu/dist/gcc/config/i386/xm-osf1elf.h                          |       6 -
 gnu/dist/gcc/config/i386/xm-sco.h                              |      13 -
 gnu/dist/gcc/config/i386/xm-sco5.h                             |       7 -
 gnu/dist/gcc/config/i386/xm-sun.h                              |      23 -
 gnu/dist/gcc/config/i386/xm-sysv3.h                            |       4 -
 gnu/dist/gcc/config/i386/xm-sysv4.h                            |       5 -
 gnu/dist/gcc/config/i386/xm-vsta.h                             |       2 -
 gnu/dist/gcc/config/i386/xm-winnt.h                            |      24 -
 gnu/dist/gcc/config/i860/bsd-gas.h                             |       2 -
 gnu/dist/gcc/config/i860/bsd.h                                 |      44 -
 gnu/dist/gcc/config/i860/fx2800.h                              |     356 -
 gnu/dist/gcc/config/i860/i860.c                                |    2097 -
 gnu/dist/gcc/config/i860/i860.h                                |    1432 -
 gnu/dist/gcc/config/i860/i860.md                               |    2310 -
 gnu/dist/gcc/config/i860/mach.h                                |      14 -
 gnu/dist/gcc/config/i860/paragon.h                             |     236 -
 gnu/dist/gcc/config/i860/sysv3.h                               |     174 -
 gnu/dist/gcc/config/i860/sysv4.h                               |     193 -
 gnu/dist/gcc/config/i860/t-fx2800                              |       3 -
 gnu/dist/gcc/config/i860/x-fx2800                              |       7 -
 gnu/dist/gcc/config/i860/x-sysv3                               |       1 -
 gnu/dist/gcc/config/i860/x-sysv4                               |      44 -
 gnu/dist/gcc/config/i860/xm-fx2800.h                           |       7 -
 gnu/dist/gcc/config/i860/xm-i860.h                             |      43 -
 gnu/dist/gcc/config/i960/i960-coff.h                           |     101 -
 gnu/dist/gcc/config/i960/i960.c                                |    2644 -
 gnu/dist/gcc/config/i960/i960.h                                |    1579 -
 gnu/dist/gcc/config/i960/i960.md                               |    2771 -
 gnu/dist/gcc/config/i960/rtems.h                               |      33 -
 gnu/dist/gcc/config/i960/t-960bare                             |      24 -
 gnu/dist/gcc/config/i960/t-vxworks960                          |      27 -
 gnu/dist/gcc/config/i960/vx960-coff.h                          |      69 -
 gnu/dist/gcc/config/i960/vx960.h                               |      30 -
 gnu/dist/gcc/config/i960/xm-i960.h                             |      43 -
 gnu/dist/gcc/config/libgloss.h                                 |      35 -
 gnu/dist/gcc/config/m32r/initfini.c                            |     169 -
 gnu/dist/gcc/config/m32r/m32r.c                                |    2222 -
 gnu/dist/gcc/config/m32r/m32r.h                                |    2073 -
 gnu/dist/gcc/config/m32r/m32r.md                               |    1754 -
 gnu/dist/gcc/config/m32r/t-m32r                                |      59 -
 gnu/dist/gcc/config/m32r/xm-m32r.h                             |      47 -
 gnu/dist/gcc/config/m68k/fpgnulib.c                            |     442 -
 gnu/dist/gcc/config/m68k/lb1sf68.asm                           |    3904 -
 gnu/dist/gcc/config/m68k/m68k-aout.h                           |      44 -
 gnu/dist/gcc/config/m68k/m68k-none.h                           |     197 -
 gnu/dist/gcc/config/m68k/m68k-psos.h                           |      67 -
 gnu/dist/gcc/config/m68k/m68k.c                                |    3392 -
 gnu/dist/gcc/config/m68k/m68k.h                                |    2124 -
 gnu/dist/gcc/config/m68k/m68k.md                               |    7912 -
 gnu/dist/gcc/config/m68k/m68kemb.h                             |      55 -
 gnu/dist/gcc/config/m68k/netbsd-elf.h                          |     558 -
 gnu/dist/gcc/config/m68k/netbsd.h                              |      65 -
 gnu/dist/gcc/config/m68k/openbsd.h                             |     121 -
 gnu/dist/gcc/config/m68k/x-alloca-c                            |       1 -
 gnu/dist/gcc/config/m68k/x-amix                                |      27 -
 gnu/dist/gcc/config/m68k/x-apollo68                            |      15 -
 gnu/dist/gcc/config/m68k/x-ccur                                |       3 -
 gnu/dist/gcc/config/m68k/x-crds                                |       7 -
 gnu/dist/gcc/config/m68k/x-dpx2                                |      16 -
 gnu/dist/gcc/config/m68k/x-hp2bsd                              |       4 -
 gnu/dist/gcc/config/m68k/x-hp320                               |      17 -
 gnu/dist/gcc/config/m68k/x-hp320g                              |      17 -
 gnu/dist/gcc/config/m68k/x-hp3bsd44                            |       1 -
 gnu/dist/gcc/config/m68k/x-mot3300                             |      15 -
 gnu/dist/gcc/config/m68k/x-mot3300-gas                         |      12 -
 gnu/dist/gcc/config/m68k/x-next                                |       9 -
 gnu/dist/gcc/config/m68k/x-tower                               |       9 -
 gnu/dist/gcc/config/m68k/xm-3b1.h                              |       4 -
 gnu/dist/gcc/config/m68k/xm-altos3068.h                        |       3 -
 gnu/dist/gcc/config/m68k/xm-amix.h                             |      45 -
 gnu/dist/gcc/config/m68k/xm-atari.h                            |       5 -
 gnu/dist/gcc/config/m68k/xm-aux.h                              |       9 -
 gnu/dist/gcc/config/m68k/xm-crds.h                             |       7 -
 gnu/dist/gcc/config/m68k/xm-hp320.h                            |      13 -
 gnu/dist/gcc/config/m68k/xm-linux.h                            |       4 -
 gnu/dist/gcc/config/m68k/xm-lynx.h                             |      35 -
 gnu/dist/gcc/config/m68k/xm-m68k.h                             |      41 -
 gnu/dist/gcc/config/m68k/xm-m68kv.h                            |       9 -
 gnu/dist/gcc/config/m68k/xm-mot3300.h                          |      41 -
 gnu/dist/gcc/config/m68k/xm-netbsd.h                           |       4 -
 gnu/dist/gcc/config/m68k/xm-next.h                             |       3 -
 gnu/dist/gcc/config/m68k/xm-openbsd.h                          |      23 -
 gnu/dist/gcc/config/m68k/xm-plexus.h                           |       6 -
 gnu/dist/gcc/config/m68k/xm-sun3.h                             |       5 -
 gnu/dist/gcc/config/m68k/xm-tower.h                            |       4 -
 gnu/dist/gcc/config/m88k/dgux.h                                |     305 -
 gnu/dist/gcc/config/m88k/dgux.ld                               |      48 -
 gnu/dist/gcc/config/m88k/dguxbcs.h                             |      62 -
 gnu/dist/gcc/config/m88k/dolph.h                               |      43 -
 gnu/dist/gcc/config/m88k/dolphin.ld                            |      40 -
 gnu/dist/gcc/config/m88k/luna.h                                |      58 -
 gnu/dist/gcc/config/m88k/m88k-aout.h                           |      32 -
 gnu/dist/gcc/config/m88k/m88k-coff.h                           |      34 -
 gnu/dist/gcc/config/m88k/m88k-move.sh                          |     306 -
 gnu/dist/gcc/config/m88k/m88k.c                                |    3166 -
 gnu/dist/gcc/config/m88k/m88k.h                                |    2647 -
 gnu/dist/gcc/config/m88k/m88k.md                               |    4023 -
 gnu/dist/gcc/config/m88k/sysv3.h                               |     150 -
 gnu/dist/gcc/config/m88k/sysv4.h                               |      85 -
 gnu/dist/gcc/config/m88k/t-bug                                 |      12 -
 gnu/dist/gcc/config/m88k/t-dgux                                |      26 -
 gnu/dist/gcc/config/m88k/t-dgux-gas                            |      17 -
 gnu/dist/gcc/config/m88k/t-dguxbcs                             |      28 -
 gnu/dist/gcc/config/m88k/t-luna                                |      12 -
 gnu/dist/gcc/config/m88k/t-luna-gas                            |      13 -
 gnu/dist/gcc/config/m88k/t-m88k                                |      12 -
 gnu/dist/gcc/config/m88k/t-m88k-gas                            |      18 -
 gnu/dist/gcc/config/m88k/t-sysv4                               |      22 -
 gnu/dist/gcc/config/m88k/tekXD88.h                             |      50 -
 gnu/dist/gcc/config/m88k/tekXD88.ld                            |      39 -
 gnu/dist/gcc/config/m88k/x-dgux                                |       6 -
 gnu/dist/gcc/config/m88k/x-dguxbcs                             |       4 -
 gnu/dist/gcc/config/m88k/x-dolph                               |      19 -
 gnu/dist/gcc/config/m88k/x-sysv3                               |       7 -
 gnu/dist/gcc/config/m88k/x-sysv4                               |      10 -
 gnu/dist/gcc/config/m88k/x-tekXD88                             |      12 -
 gnu/dist/gcc/config/m88k/xm-m88k.h                             |      61 -
 gnu/dist/gcc/config/m88k/xm-sysv3.h                            |      32 -
 gnu/dist/gcc/config/mips/abi64.h                               |     243 -
 gnu/dist/gcc/config/mips/cross64.h                             |      34 -
 gnu/dist/gcc/config/mips/ecoff.h                               |      37 -
 gnu/dist/gcc/config/mips/ecoffl.h                              |      30 -
 gnu/dist/gcc/config/mips/elf.h                                 |     173 -
 gnu/dist/gcc/config/mips/elf64.h                               |     197 -
 gnu/dist/gcc/config/mips/elfl.h                                |      29 -
 gnu/dist/gcc/config/mips/elfl64.h                              |      29 -
 gnu/dist/gcc/config/mips/elflorion.h                           |      24 -
 gnu/dist/gcc/config/mips/elforion.h                            |      22 -
 gnu/dist/gcc/config/mips/mips.c                                |    8437 -
 gnu/dist/gcc/config/mips/mips.h                                |    4544 -
 gnu/dist/gcc/config/mips/mips.md                               |   10012 -
 gnu/dist/gcc/config/mips/mips16.S                              |     740 -
 gnu/dist/gcc/config/mips/netbsd.h                              |     410 -
 gnu/dist/gcc/config/mips/t-mips                                |       8 -
 gnu/dist/gcc/config/mips/t-mips-gas                            |       4 -
 gnu/dist/gcc/config/mips/x-dec-osf1                            |      17 -
 gnu/dist/gcc/config/mips/x-iris                                |      31 -
 gnu/dist/gcc/config/mips/x-iris3                               |      30 -
 gnu/dist/gcc/config/mips/x-iris6                               |      11 -
 gnu/dist/gcc/config/mips/x-mips                                |      20 -
 gnu/dist/gcc/config/mips/x-netbsd                              |      17 -
 gnu/dist/gcc/config/mips/x-nws3250v4                           |      19 -
 gnu/dist/gcc/config/mips/x-osfrose                             |      32 -
 gnu/dist/gcc/config/mips/x-sni-svr4                            |      18 -
 gnu/dist/gcc/config/mips/x-sony                                |      18 -
 gnu/dist/gcc/config/mips/x-sysv                                |      26 -
 gnu/dist/gcc/config/mips/x-ultrix                              |      17 -
 gnu/dist/gcc/config/mips/xm-iris3.h                            |       3 -
 gnu/dist/gcc/config/mips/xm-iris4.h                            |      13 -
 gnu/dist/gcc/config/mips/xm-iris5.h                            |       9 -
 gnu/dist/gcc/config/mips/xm-iris6.h                            |      17 -
 gnu/dist/gcc/config/mips/xm-mips.h                             |      76 -
 gnu/dist/gcc/config/mips/xm-netbsd.h                           |       2 -
 gnu/dist/gcc/config/mips/xm-news.h                             |       8 -
 gnu/dist/gcc/config/mips/xm-nws3250v4.h                        |       9 -
 gnu/dist/gcc/config/mips/xm-sysv.h                             |      30 -
 gnu/dist/gcc/config/mips/xm-sysv4.h                            |       7 -
 gnu/dist/gcc/config/mn10200/divmod.c                           |      50 -
 gnu/dist/gcc/config/mn10200/lib1funcs.asm                      |     609 -
 gnu/dist/gcc/config/mn10200/mn10200.c                          |    1532 -
 gnu/dist/gcc/config/mn10200/mn10200.h                          |    1078 -
 gnu/dist/gcc/config/mn10200/mn10200.md                         |    1978 -
 gnu/dist/gcc/config/mn10200/t-mn10200                          |      55 -
 gnu/dist/gcc/config/mn10200/udivmod.c                          |      14 -
 gnu/dist/gcc/config/mn10200/udivmodsi4.c                       |      24 -
 gnu/dist/gcc/config/mn10200/xm-mn10200.h                       |      47 -
 gnu/dist/gcc/config/mn10300/mn10300.c                          |    1112 -
 gnu/dist/gcc/config/mn10300/mn10300.h                          |    1025 -
 gnu/dist/gcc/config/mn10300/mn10300.md                         |    1469 -
 gnu/dist/gcc/config/mn10300/t-mn10300                          |      23 -
 gnu/dist/gcc/config/mn10300/xm-mn10300.h                       |      47 -
 gnu/dist/gcc/config/netbsd.h                                   |     271 -
 gnu/dist/gcc/config/ns32k/netbsd.h                             |     113 -
 gnu/dist/gcc/config/ns32k/ns32k.c                              |    1242 -
 gnu/dist/gcc/config/ns32k/ns32k.h                              |    1725 -
 gnu/dist/gcc/config/ns32k/ns32k.md                             |    3058 -
 gnu/dist/gcc/config/ns32k/x-genix                              |       6 -
 gnu/dist/gcc/config/ns32k/xm-genix.h                           |       5 -
 gnu/dist/gcc/config/ns32k/xm-netbsd.h                          |      10 -
 gnu/dist/gcc/config/ns32k/xm-ns32k.h                           |      42 -
 gnu/dist/gcc/config/ns32k/xm-pc532-min.h                       |       7 -
 gnu/dist/gcc/config/openbsd.h                                  |     302 -
 gnu/dist/gcc/config/pa/ee.asm                                  |     261 -
 gnu/dist/gcc/config/pa/ee_fp.asm                               |     274 -
 gnu/dist/gcc/config/pa/lib1funcs.asm                           |    1146 -
 gnu/dist/gcc/config/pa/lib2funcs.asm                           |      74 -
 gnu/dist/gcc/config/pa/pa-gas.h                                |      21 -
 gnu/dist/gcc/config/pa/pa-hiux.h                               |      26 -
 gnu/dist/gcc/config/pa/pa-hpux.h                               |      49 -
 gnu/dist/gcc/config/pa/pa-hpux10.h                             |      85 -
 gnu/dist/gcc/config/pa/pa-hpux7.h                              |      37 -
 gnu/dist/gcc/config/pa/pa-hpux9.h                              |      31 -
 gnu/dist/gcc/config/pa/pa-oldas.h                              |      22 -
 gnu/dist/gcc/config/pa/pa-osf.h                                |      42 -
 gnu/dist/gcc/config/pa/pa-pro-end.h                            |      41 -
 gnu/dist/gcc/config/pa/pa-pro.h                                |      78 -
 gnu/dist/gcc/config/pa/pa.c                                    |    6396 -
 gnu/dist/gcc/config/pa/pa.h                                    |    2574 -
 gnu/dist/gcc/config/pa/pa.md                                   |    5167 -
 gnu/dist/gcc/config/pa/pa1.h                                   |      28 -
 gnu/dist/gcc/config/pa/rtems.h                                 |      31 -
 gnu/dist/gcc/config/pa/t-dce-thr                               |       5 -
 gnu/dist/gcc/config/pa/t-pa                                    |      18 -
 gnu/dist/gcc/config/pa/t-pro                                   |      38 -
 gnu/dist/gcc/config/pa/x-pa                                    |       3 -
 gnu/dist/gcc/config/pa/x-pa-hpux                               |       4 -
 gnu/dist/gcc/config/pa/xm-pa.h                                 |      62 -
 gnu/dist/gcc/config/pa/xm-pahpux.h                             |      61 -
 gnu/dist/gcc/config/pa/xm-papro.h                              |      58 -
 gnu/dist/gcc/config/pyr/pyr.c                                  |     857 -
 gnu/dist/gcc/config/pyr/pyr.h                                  |    1506 -
 gnu/dist/gcc/config/pyr/pyr.md                                 |    1360 -
 gnu/dist/gcc/config/pyr/x-pyr                                  |       2 -
 gnu/dist/gcc/config/pyr/xm-pyr.h                               |      40 -
 gnu/dist/gcc/config/romp/romp.c                                |    2038 -
 gnu/dist/gcc/config/romp/romp.h                                |    1636 -
 gnu/dist/gcc/config/romp/romp.md                               |    2776 -
 gnu/dist/gcc/config/romp/x-mach                                |       5 -
 gnu/dist/gcc/config/romp/x-romp                                |      11 -
 gnu/dist/gcc/config/romp/xm-romp.h                             |      54 -
 gnu/dist/gcc/config/rs6000/beos.h                              |     124 -
 gnu/dist/gcc/config/rs6000/cygwin32.h                          |      67 -
 gnu/dist/gcc/config/rs6000/eabi-ci.asm                         |     119 -
 gnu/dist/gcc/config/rs6000/eabi-cn.asm                         |     109 -
 gnu/dist/gcc/config/rs6000/eabi-ctors.c                        |      92 -
 gnu/dist/gcc/config/rs6000/eabi.asm                            |     556 -
 gnu/dist/gcc/config/rs6000/eabi.h                              |      40 -
 gnu/dist/gcc/config/rs6000/eabile.h                            |      46 -
 gnu/dist/gcc/config/rs6000/eabilesim.h                         |      46 -
 gnu/dist/gcc/config/rs6000/eabisim.h                           |      46 -
 gnu/dist/gcc/config/rs6000/lynx.h                              |     104 -
 gnu/dist/gcc/config/rs6000/mach.h                              |      42 -
 gnu/dist/gcc/config/rs6000/milli.exp                           |       7 -
 gnu/dist/gcc/config/rs6000/netbsd.h                            |      73 -
 gnu/dist/gcc/config/rs6000/netware.h                           |     283 -
 gnu/dist/gcc/config/rs6000/nt-ci.asm                           |      48 -
 gnu/dist/gcc/config/rs6000/nt-cn.asm                           |      48 -
 gnu/dist/gcc/config/rs6000/ntstack.asm                         |      42 -
 gnu/dist/gcc/config/rs6000/rs6000.c                            |    5325 -
 gnu/dist/gcc/config/rs6000/rs6000.h                            |    3284 -
 gnu/dist/gcc/config/rs6000/rs6000.md                           |   10007 -
 gnu/dist/gcc/config/rs6000/rtems.h                             |      38 -
 gnu/dist/gcc/config/rs6000/sol-c0.c                            |     122 -
 gnu/dist/gcc/config/rs6000/sol-ci.asm                          |     104 -
 gnu/dist/gcc/config/rs6000/sol-cn.asm                          |      82 -
 gnu/dist/gcc/config/rs6000/sol2.h                              |     178 -
 gnu/dist/gcc/config/rs6000/sysv4.h                             |    1452 -
 gnu/dist/gcc/config/rs6000/sysv4le.h                           |      46 -
 gnu/dist/gcc/config/rs6000/t-aix43                             |      48 -
 gnu/dist/gcc/config/rs6000/t-beos                              |      51 -
 gnu/dist/gcc/config/rs6000/t-newas                             |      52 -
 gnu/dist/gcc/config/rs6000/t-ppc                               |      12 -
 gnu/dist/gcc/config/rs6000/t-ppccomm                           |      73 -
 gnu/dist/gcc/config/rs6000/t-ppcgas                            |      22 -
 gnu/dist/gcc/config/rs6000/t-ppcos                             |      12 -
 gnu/dist/gcc/config/rs6000/t-rs6000                            |      22 -
 gnu/dist/gcc/config/rs6000/t-winnt                             |      35 -
 gnu/dist/gcc/config/rs6000/t-xnewas                            |      58 -
 gnu/dist/gcc/config/rs6000/t-xrs6000                           |      28 -
 gnu/dist/gcc/config/rs6000/tramp.asm                           |     120 -
 gnu/dist/gcc/config/rs6000/vxppc.h                             |      69 -
 gnu/dist/gcc/config/rs6000/win-nt.h                            |     481 -
 gnu/dist/gcc/config/rs6000/x-aix31                             |       9 -
 gnu/dist/gcc/config/rs6000/x-aix41                             |      12 -
 gnu/dist/gcc/config/rs6000/x-aix43                             |      15 -
 gnu/dist/gcc/config/rs6000/x-beos                              |       9 -
 gnu/dist/gcc/config/rs6000/x-cygwin32                          |       4 -
 gnu/dist/gcc/config/rs6000/x-lynx                              |      14 -
 gnu/dist/gcc/config/rs6000/x-mach                              |       7 -
 gnu/dist/gcc/config/rs6000/x-rs6000                            |       9 -
 gnu/dist/gcc/config/rs6000/x-sysv4                             |       2 -
 gnu/dist/gcc/config/rs6000/xm-beos.h                           |      89 -
 gnu/dist/gcc/config/rs6000/xm-cygwin32.h                       |       1 -
 gnu/dist/gcc/config/rs6000/xm-lynx.h                           |      35 -
 gnu/dist/gcc/config/rs6000/xm-mach.h                           |       2 -
 gnu/dist/gcc/config/rs6000/xm-netbsd.h                         |       4 -
 gnu/dist/gcc/config/rs6000/xm-rs6000.h                         |      65 -
 gnu/dist/gcc/config/rs6000/xm-sysv4.h                          |      72 -
 gnu/dist/gcc/config/sh/elf.h                                   |     123 -
 gnu/dist/gcc/config/sh/lib1funcs.asm                           |     969 -
 gnu/dist/gcc/config/sh/netbsdcoff.h                            |      91 -
 gnu/dist/gcc/config/sh/netbsdelf.h                             |     130 -
 gnu/dist/gcc/config/sh/rtems.h                                 |      35 -
 gnu/dist/gcc/config/sh/rtemself.h                              |      33 -
 gnu/dist/gcc/config/sh/sh.c                                    |    4102 -
 gnu/dist/gcc/config/sh/sh.h                                    |    1959 -
 gnu/dist/gcc/config/sh/sh.md                                   |    3327 -
 gnu/dist/gcc/config/sh/t-sh                                    |      29 -
 gnu/dist/gcc/config/sh/xm-sh.h                                 |      42 -
 gnu/dist/gcc/config/sparc/elf.h                                |      42 -
 gnu/dist/gcc/config/sparc/gmon-sol2.c                          |     429 -
 gnu/dist/gcc/config/sparc/lb1spc.asm                           |     784 -
 gnu/dist/gcc/config/sparc/lb1spl.asm                           |     246 -
 gnu/dist/gcc/config/sparc/lite.h                               |      38 -
 gnu/dist/gcc/config/sparc/litecoff.h                           |     113 -
 gnu/dist/gcc/config/sparc/netbsd.h                             |      48 -
 gnu/dist/gcc/config/sparc/netbsd64.h                           |      93 -
 gnu/dist/gcc/config/sparc/netbsdelf.h                          |     104 -
 gnu/dist/gcc/config/sparc/openbsd.h                            |      68 -
 gnu/dist/gcc/config/sparc/sol2-c1.asm                          |      86 -
 gnu/dist/gcc/config/sparc/sol2-ci.asm                          |      60 -
 gnu/dist/gcc/config/sparc/sol2-cn.asm                          |      54 -
 gnu/dist/gcc/config/sparc/sol2-g1.asm                          |      88 -
 gnu/dist/gcc/config/sparc/sol2-sld.h                           |      11 -
 gnu/dist/gcc/config/sparc/sol2.h                               |     232 -
 gnu/dist/gcc/config/sparc/sp64-aout.h                          |      38 -
 gnu/dist/gcc/config/sparc/sp64-elf.h                           |     157 -
 gnu/dist/gcc/config/sparc/sparc.c                              |    6461 -
 gnu/dist/gcc/config/sparc/sparc.h                              |    3287 -
 gnu/dist/gcc/config/sparc/sparc.md                             |    6684 -
 gnu/dist/gcc/config/sparc/splet.h                              |      53 -
 gnu/dist/gcc/config/sparc/sysv4.h                              |     231 -
 gnu/dist/gcc/config/sparc/t-elf                                |      39 -
 gnu/dist/gcc/config/sparc/t-sp64                               |       2 -
 gnu/dist/gcc/config/sparc/t-sparcbare                          |      26 -
 gnu/dist/gcc/config/sparc/t-sparclite                          |      24 -
 gnu/dist/gcc/config/sparc/t-splet                              |      23 -
 gnu/dist/gcc/config/sparc/x-sysv4                              |       2 -
 gnu/dist/gcc/config/sparc/xm-linux.h                           |      26 -
 gnu/dist/gcc/config/sparc/xm-lynx.h                            |      39 -
 gnu/dist/gcc/config/sparc/xm-netbsd.h                          |       4 -
 gnu/dist/gcc/config/sparc/xm-netbsd64.h                        |       4 -
 gnu/dist/gcc/config/sparc/xm-openbsd.h                         |      23 -
 gnu/dist/gcc/config/sparc/xm-pbd.h                             |      10 -
 gnu/dist/gcc/config/sparc/xm-sol2.h                            |       4 -
 gnu/dist/gcc/config/sparc/xm-sp64.h                            |      25 -
 gnu/dist/gcc/config/sparc/xm-sparc.h                           |      49 -
 gnu/dist/gcc/config/sparc/xm-sysv4.h                           |      48 -
 gnu/dist/gcc/config/spur/spur.c                                |     326 -
 gnu/dist/gcc/config/spur/spur.h                                |    1051 -
 gnu/dist/gcc/config/spur/spur.md                               |    1092 -
 gnu/dist/gcc/config/spur/xm-spur.h                             |      39 -
 gnu/dist/gcc/config/svr4.h                                     |     986 -
 gnu/dist/gcc/config/t-install-cpp                              |       3 -
 gnu/dist/gcc/config/t-libc-ok                                  |       3 -
 gnu/dist/gcc/config/t-netbsd                                   |       9 -
 gnu/dist/gcc/config/t-openbsd                                  |       9 -
 gnu/dist/gcc/config/t-openbsd-thread                           |       5 -
 gnu/dist/gcc/config/tahoe/xm-tahoe.h                           |      59 -
 gnu/dist/gcc/config/v850/lib1funcs.asm                         |    1270 -
 gnu/dist/gcc/config/v850/t-v850                                |      54 -
 gnu/dist/gcc/config/v850/v850.c                                |    2284 -
 gnu/dist/gcc/config/v850/v850.h                                |    1477 -
 gnu/dist/gcc/config/v850/v850.md                               |    1273 -
 gnu/dist/gcc/config/v850/xm-v850.h                             |      49 -
 gnu/dist/gcc/config/vax/netbsd.h                               |      29 -
 gnu/dist/gcc/config/vax/vax.c                                  |    1187 -
 gnu/dist/gcc/config/vax/vax.h                                  |    1214 -
 gnu/dist/gcc/config/vax/vax.md                                 |    2251 -
 gnu/dist/gcc/config/vax/x-vax                                  |       3 -
 gnu/dist/gcc/config/vax/xm-netbsd.h                            |       4 -
 gnu/dist/gcc/config/vax/xm-vax.h                               |      44 -
 gnu/dist/gcc/config/vax/xm-vaxv.h                              |       3 -
 gnu/dist/gcc/config/vax/xm-vms.h                               |     206 -
 gnu/dist/gcc/config/we32k/we32k.c                              |     136 -
 gnu/dist/gcc/config/we32k/we32k.h                              |    1048 -
 gnu/dist/gcc/config/we32k/we32k.md                             |    1185 -
 gnu/dist/gcc/config/we32k/x-we32k                              |       1 -
 gnu/dist/gcc/config/we32k/xm-we32k.h                           |      49 -
 gnu/dist/gcc/config/winnt/x-winnt                              |      34 -
 gnu/dist/gcc/config/winnt/xm-winnt.h                           |      63 -
 gnu/dist/gcc/config/x-linux                                    |       5 -
 gnu/dist/gcc/config/x-linux-aout                               |      14 -
 gnu/dist/gcc/config/x-lynx                                     |       6 -
 gnu/dist/gcc/config/x-svr4                                     |       9 -
 gnu/dist/gcc/config/xm-alloca.h                                |       4 -
 gnu/dist/gcc/config/xm-freebsd.h                               |      24 -
 gnu/dist/gcc/config/xm-gnu.h                                   |      32 -
 gnu/dist/gcc/config/xm-linux.h                                 |      33 -
 gnu/dist/gcc/config/xm-lynx.h                                  |      51 -
 gnu/dist/gcc/config/xm-netbsd.h                                |      24 -
 gnu/dist/gcc/config/xm-openbsd.h                               |      35 -
 gnu/dist/gcc/config/xm-siglist.h                               |       6 -
 gnu/dist/gcc/config/xm-std32.h                                 |      34 -
 gnu/dist/gcc/config/xm-svr3.h                                  |      25 -
 gnu/dist/gcc/config/xm-svr4.h                                  |      29 -
 gnu/dist/gcc/configure                                         |    6303 -
 gnu/dist/gcc/configure.frag                                    |      77 -
 gnu/dist/gcc/configure.in                                      |    3869 -
 gnu/dist/gcc/configure.lang                                    |     233 -
 gnu/dist/gcc/convert.c                                         |     436 -
 gnu/dist/gcc/convert.h                                         |      24 -
 gnu/dist/gcc/cp/Make-lang.in                                   |     313 -
 gnu/dist/gcc/cp/Makefile.in                                    |     339 -
 gnu/dist/gcc/cp/NEWS                                           |     226 -
 gnu/dist/gcc/cp/call.c                                         |    4516 -
 gnu/dist/gcc/cp/class.c                                        |    5583 -
 gnu/dist/gcc/cp/config-lang.in                                 |      41 -
 gnu/dist/gcc/cp/cp-tree.def                                    |     240 -
 gnu/dist/gcc/cp/cp-tree.h                                      |    3035 -
 gnu/dist/gcc/cp/cvt.c                                          |    1110 -
 gnu/dist/gcc/cp/decl.c                                         |   13694 -
 gnu/dist/gcc/cp/decl.h                                         |      59 -
 gnu/dist/gcc/cp/decl2.c                                        |    4727 -
 gnu/dist/gcc/cp/errfn.c                                        |     284 -
 gnu/dist/gcc/cp/error.c                                        |    1962 -
 gnu/dist/gcc/cp/except.c                                       |    1291 -
 gnu/dist/gcc/cp/exception.cc                                   |     324 -
 gnu/dist/gcc/cp/expr.c                                         |     412 -
 gnu/dist/gcc/cp/friend.c                                       |     484 -
 gnu/dist/gcc/cp/g++.1                                          |     642 -
 gnu/dist/gcc/cp/g++FAQ.texi                                    |    2430 -
 gnu/dist/gcc/cp/g++spec.c                                      |     269 -
 gnu/dist/gcc/cp/gxx.gperf                                      |     108 -
 gnu/dist/gcc/cp/gxxint.texi                                    |    1926 -
 gnu/dist/gcc/cp/hash.h                                         |     226 -
 gnu/dist/gcc/cp/inc/exception                                  |      43 -
 gnu/dist/gcc/cp/inc/new                                        |      46 -
 gnu/dist/gcc/cp/inc/new.h                                      |      13 -
 gnu/dist/gcc/cp/inc/typeinfo                                   |      62 -
 gnu/dist/gcc/cp/init.c                                         |    3259 -
 gnu/dist/gcc/cp/input.c                                        |     213 -
 gnu/dist/gcc/cp/lang-options.h                                 |     123 -
 gnu/dist/gcc/cp/lang-specs.h                                   |      94 -
 gnu/dist/gcc/cp/lex.c                                          |    4833 -
 gnu/dist/gcc/cp/lex.h                                          |     135 -
 gnu/dist/gcc/cp/method.c                                       |    2407 -
 gnu/dist/gcc/cp/new.cc                                         |      42 -
 gnu/dist/gcc/cp/new1.cc                                        |      89 -
 gnu/dist/gcc/cp/new2.cc                                        |      80 -
 gnu/dist/gcc/cp/parse.y                                        |    3741 -
 gnu/dist/gcc/cp/pt.c                                           |    7495 -
 gnu/dist/gcc/cp/ptree.c                                        |     191 -
 gnu/dist/gcc/cp/repo.c                                         |     441 -
 gnu/dist/gcc/cp/rtti.c                                         |    1135 -
 gnu/dist/gcc/cp/search.c                                       |    3973 -
 gnu/dist/gcc/cp/semantics.c                                    |    1393 -
 gnu/dist/gcc/cp/sig.c                                          |    1070 -
 gnu/dist/gcc/cp/spew.c                                         |     475 -
 gnu/dist/gcc/cp/tinfo.cc                                       |     134 -
 gnu/dist/gcc/cp/tinfo.h                                        |      55 -
 gnu/dist/gcc/cp/tinfo2.cc                                      |     300 -
 gnu/dist/gcc/cp/tree.c                                         |    2424 -
 gnu/dist/gcc/cp/typeck.c                                       |    7597 -
 gnu/dist/gcc/cp/typeck2.c                                      |    1669 -
 gnu/dist/gcc/cp/xref.c                                         |     838 -
 gnu/dist/gcc/cplus-dem.c                                       |    4419 -
 gnu/dist/gcc/cpp.1                                             |       1 -
 gnu/dist/gcc/cpp.cps                                           |      66 -
 gnu/dist/gcc/cpp.fns                                           |      94 -
 gnu/dist/gcc/cpp.in                                            |      41 -
 gnu/dist/gcc/cpp.texi                                          |    2891 -
 gnu/dist/gcc/cppalloc.c                                        |      56 -
 gnu/dist/gcc/cpperror.c                                        |     177 -
 gnu/dist/gcc/cppexp.c                                          |    1027 -
 gnu/dist/gcc/cpphash.c                                         |     213 -
 gnu/dist/gcc/cpphash.h                                         |      40 -
 gnu/dist/gcc/cpplib.c                                          |    7763 -
 gnu/dist/gcc/cpplib.h                                          |     693 -
 gnu/dist/gcc/cppmain.c                                         |     113 -
 gnu/dist/gcc/cross-make                                        |      25 -
 gnu/dist/gcc/crtstuff.c                                        |     503 -
 gnu/dist/gcc/cse.c                                             |    9000 -
 gnu/dist/gcc/cstamp-h.in                                       |       1 -
 gnu/dist/gcc/dbxout.c                                          |    2717 -
 gnu/dist/gcc/dbxout.h                                          |      33 -
 gnu/dist/gcc/dbxstclass.h                                      |      17 -
 gnu/dist/gcc/defaults.h                                        |     141 -
 gnu/dist/gcc/demangle.h                                        |     118 -
 gnu/dist/gcc/doprint.c                                         |     286 -
 gnu/dist/gcc/doschk.c                                          |     360 -
 gnu/dist/gcc/dostage2                                          |       2 -
 gnu/dist/gcc/dostage3                                          |       3 -
 gnu/dist/gcc/dwarf.h                                           |     315 -
 gnu/dist/gcc/dwarf2.h                                          |     548 -
 gnu/dist/gcc/dwarf2out.c                                       |    9884 -
 gnu/dist/gcc/dwarf2out.h                                       |      41 -
 gnu/dist/gcc/dwarfout.c                                        |    6008 -
 gnu/dist/gcc/dwarfout.h                                        |      40 -
 gnu/dist/gcc/dyn-string.c                                      |     100 -
 gnu/dist/gcc/dyn-string.h                                      |      31 -
 gnu/dist/gcc/eh-common.h                                       |     125 -
 gnu/dist/gcc/emit-rtl.c                                        |    3576 -
 gnu/dist/gcc/enquire.c                                         |    2887 -
 gnu/dist/gcc/except.c                                          |    2694 -
 gnu/dist/gcc/except.h                                          |     385 -
 gnu/dist/gcc/explow.c                                          |    1525 -
 gnu/dist/gcc/expmed.c                                          |    4423 -
 gnu/dist/gcc/expr.c                                            |   11415 -
 gnu/dist/gcc/expr.h                                            |     975 -
 gnu/dist/gcc/extend.texi                                       |    3511 -
 gnu/dist/gcc/f/BUGS                                            |     211 -
 gnu/dist/gcc/f/INSTALL                                         |    1558 -
 gnu/dist/gcc/f/Make-lang.in                                    |     472 -
 gnu/dist/gcc/f/Makefile.in                                     |     530 -
 gnu/dist/gcc/f/NEWS                                            |    1623 -
 gnu/dist/gcc/f/README                                          |       7 -
 gnu/dist/gcc/f/ansify.c                                        |     208 -
 gnu/dist/gcc/f/assert.j                                        |      27 -
 gnu/dist/gcc/f/bad.c                                           |     544 -
 gnu/dist/gcc/f/bad.def                                         |     711 -
 gnu/dist/gcc/f/bad.h                                           |     108 -
 gnu/dist/gcc/f/bit.c                                           |     201 -
 gnu/dist/gcc/f/bit.h                                           |      84 -
 gnu/dist/gcc/f/bld-op.def                                      |      69 -
 gnu/dist/gcc/f/bld.c                                           |    5794 -
 gnu/dist/gcc/f/bld.h                                           |    1024 -
 gnu/dist/gcc/f/bugs.texi                                       |     341 -
 gnu/dist/gcc/f/bugs0.texi                                      |      17 -
 gnu/dist/gcc/f/com-rt.def                                      |     282 -
 gnu/dist/gcc/f/com.c                                           |   16510 -
 gnu/dist/gcc/f/com.h                                           |     376 -
 gnu/dist/gcc/f/config-lang.in                                  |      37 -
 gnu/dist/gcc/f/config.j                                        |      27 -
 gnu/dist/gcc/f/convert.j                                       |      28 -
 gnu/dist/gcc/f/data.c                                          |    1816 -
 gnu/dist/gcc/f/data.h                                          |      74 -
 gnu/dist/gcc/f/equiv.c                                         |    1498 -
 gnu/dist/gcc/f/equiv.h                                         |     103 -
 gnu/dist/gcc/f/expr.c                                          |   19304 -
 gnu/dist/gcc/f/expr.h                                          |     194 -
 gnu/dist/gcc/f/fini.c                                          |     773 -
 gnu/dist/gcc/f/flags.j                                         |      27 -
 gnu/dist/gcc/f/g77.1                                           |     358 -
 gnu/dist/gcc/f/g77.texi                                        |   14999 -
 gnu/dist/gcc/f/g77install.texi                                 |    2170 -
 gnu/dist/gcc/f/g77spec.c                                       |     580 -
 gnu/dist/gcc/f/glimits.j                                       |      28 -
 gnu/dist/gcc/f/global.c                                        |    1536 -
 gnu/dist/gcc/f/global.h                                        |     200 -
 gnu/dist/gcc/f/hconfig.j                                       |      27 -
 gnu/dist/gcc/f/implic.c                                        |     382 -
 gnu/dist/gcc/f/implic.h                                        |      74 -
 gnu/dist/gcc/f/info-b.def                                      |      36 -
 gnu/dist/gcc/f/info-k.def                                      |      37 -
 gnu/dist/gcc/f/info-w.def                                      |      41 -
 gnu/dist/gcc/f/info.c                                          |     304 -
 gnu/dist/gcc/f/info.h                                          |     186 -
 gnu/dist/gcc/f/input.j                                         |      27 -
 gnu/dist/gcc/f/install0.texi                                   |      14 -
 gnu/dist/gcc/f/intdoc.c                                        |    1336 -
 gnu/dist/gcc/f/intdoc.in                                       |    2519 -
 gnu/dist/gcc/f/intdoc.texi                                     |   10745 -
 gnu/dist/gcc/f/intrin.c                                        |    2055 -
 gnu/dist/gcc/f/intrin.def                                      |    3351 -
 gnu/dist/gcc/f/intrin.h                                        |     130 -
 gnu/dist/gcc/f/lab.c                                           |     159 -
 gnu/dist/gcc/f/lab.h                                           |     154 -
 gnu/dist/gcc/f/lang-options.h                                  |     158 -
 gnu/dist/gcc/f/lang-specs.h                                    |     106 -
 gnu/dist/gcc/f/lex.c                                           |    4717 -
 gnu/dist/gcc/f/lex.h                                           |     201 -
 gnu/dist/gcc/f/malloc.c                                        |     554 -
 gnu/dist/gcc/f/malloc.h                                        |     183 -
 gnu/dist/gcc/f/name.c                                          |     242 -
 gnu/dist/gcc/f/name.h                                          |     109 -
 gnu/dist/gcc/f/news.texi                                       |    2330 -
 gnu/dist/gcc/f/news0.texi                                      |      14 -
 gnu/dist/gcc/f/output.j                                        |      28 -
 gnu/dist/gcc/f/parse.c                                         |      95 -
 gnu/dist/gcc/f/proj.c                                          |      68 -
 gnu/dist/gcc/f/proj.h                                          |      83 -
 gnu/dist/gcc/f/rtl.j                                           |      28 -
 gnu/dist/gcc/f/src.c                                           |     445 -
 gnu/dist/gcc/f/src.h                                           |     144 -
 gnu/dist/gcc/f/st.c                                            |     554 -
 gnu/dist/gcc/f/st.h                                            |      81 -
 gnu/dist/gcc/f/sta.c                                           |    2000 -
 gnu/dist/gcc/f/sta.h                                           |     117 -
 gnu/dist/gcc/f/stb.c                                           |   25198 -
 gnu/dist/gcc/f/stb.h                                           |     253 -
 gnu/dist/gcc/f/stc.c                                           |   13898 -
 gnu/dist/gcc/f/stc.h                                           |     360 -
 gnu/dist/gcc/f/std.c                                           |    6905 -
 gnu/dist/gcc/f/std.h                                           |     298 -
 gnu/dist/gcc/f/ste.c                                           |    5419 -
 gnu/dist/gcc/f/ste.h                                           |     168 -
 gnu/dist/gcc/f/storag.c                                        |     573 -
 gnu/dist/gcc/f/storag.h                                        |     167 -
 gnu/dist/gcc/f/stp.c                                           |      59 -
 gnu/dist/gcc/f/stp.h                                           |     508 -
 gnu/dist/gcc/f/str-1t.fin                                      |     135 -
 gnu/dist/gcc/f/str-2t.fin                                      |      60 -
 gnu/dist/gcc/f/str-fo.fin                                      |      55 -
 gnu/dist/gcc/f/str-io.fin                                      |      43 -
 gnu/dist/gcc/f/str-nq.fin                                      |      55 -
 gnu/dist/gcc/f/str-op.fin                                      |      57 -
 gnu/dist/gcc/f/str-ot.fin                                      |      50 -
 gnu/dist/gcc/f/str.c                                           |     217 -
 gnu/dist/gcc/f/str.h                                           |      85 -
 gnu/dist/gcc/f/sts.c                                           |     273 -
 gnu/dist/gcc/f/sts.h                                           |      89 -
 gnu/dist/gcc/f/stt.c                                           |    1044 -
 gnu/dist/gcc/f/stt.h                                           |     230 -
 gnu/dist/gcc/f/stu.c                                           |    1161 -
 gnu/dist/gcc/f/stu.h                                           |      69 -
 gnu/dist/gcc/f/stv.c                                           |      66 -
 gnu/dist/gcc/f/stv.h                                           |     165 -
 gnu/dist/gcc/f/stw.c                                           |     428 -
 gnu/dist/gcc/f/stw.h                                           |     184 -
 gnu/dist/gcc/f/symbol.c                                        |    1477 -
 gnu/dist/gcc/f/symbol.def                                      |     654 -
 gnu/dist/gcc/f/symbol.h                                        |     293 -
 gnu/dist/gcc/f/system.j                                        |      27 -
 gnu/dist/gcc/f/target.c                                        |    2564 -
 gnu/dist/gcc/f/target.h                                        |    1865 -
 gnu/dist/gcc/f/tconfig.j                                       |      27 -
 gnu/dist/gcc/f/tm.j                                            |      27 -
 gnu/dist/gcc/f/top.c                                           |     922 -
 gnu/dist/gcc/f/top.h                                           |     264 -
 gnu/dist/gcc/f/toplev.j                                        |      27 -
 gnu/dist/gcc/f/tree.j                                          |      28 -
 gnu/dist/gcc/f/type.c                                          |     107 -
 gnu/dist/gcc/f/type.h                                          |      64 -
 gnu/dist/gcc/f/version.c                                       |       1 -
 gnu/dist/gcc/f/version.h                                       |       6 -
 gnu/dist/gcc/f/where.c                                         |     542 -
 gnu/dist/gcc/f/where.h                                         |     138 -
 gnu/dist/gcc/final.c                                           |    4053 -
 gnu/dist/gcc/fix-header.c                                      |    1471 -
 gnu/dist/gcc/fixcpp                                            |     109 -
 gnu/dist/gcc/fixinc-nt.sed                                     |       5 -
 gnu/dist/gcc/fixinc.wrap                                       |      86 -
 gnu/dist/gcc/fixincludes                                       |    3186 -
 gnu/dist/gcc/fixproto                                          |     294 -
 gnu/dist/gcc/flags.h                                           |     497 -
 gnu/dist/gcc/floatlib.c                                        |     838 -
 gnu/dist/gcc/flow.c                                            |    4283 -
 gnu/dist/gcc/fold-const.c                                      |    6269 -
 gnu/dist/gcc/fp-test.c                                         |     231 -
 gnu/dist/gcc/frame.c                                           |     815 -
 gnu/dist/gcc/frame.h                                           |      65 -
 gnu/dist/gcc/function.c                                        |    6219 -
 gnu/dist/gcc/function.h                                        |     271 -
 gnu/dist/gcc/future.options                                    |      29 -
 gnu/dist/gcc/gansidecl.h                                       |      91 -
 gnu/dist/gcc/gbl-ctors.h                                       |      92 -
 gnu/dist/gcc/gcc.1                                             |    4191 -
 gnu/dist/gcc/gcc.c                                             |    5843 -
 gnu/dist/gcc/gcc.cps                                           |    1964 -
 gnu/dist/gcc/gcc.hlp                                           |     403 -
 gnu/dist/gcc/gcc.texi                                          |    4705 -
 gnu/dist/gcc/gcov-io.h                                         |     142 -
 gnu/dist/gcc/gcov.c                                            |    1375 -
 gnu/dist/gcc/gcov.texi                                         |     344 -
 gnu/dist/gcc/gcse.c                                            |    4758 -
 gnu/dist/gcc/gen-protos.c                                      |     217 -
 gnu/dist/gcc/genattr.c                                         |     447 -
 gnu/dist/gcc/genattrtab.c                                      |    6078 -
 gnu/dist/gcc/gencheck.c                                        |      82 -
 gnu/dist/gcc/gencodes.c                                        |     179 -
 gnu/dist/gcc/genconfig.c                                       |     380 -
 gnu/dist/gcc/genemit.c                                         |     830 -
 gnu/dist/gcc/genextract.c                                      |     579 -
 gnu/dist/gcc/genflags.c                                        |     316 -
 gnu/dist/gcc/gengenrtl.c                                       |     337 -
 gnu/dist/gcc/genmultilib                                       |     269 -
 gnu/dist/gcc/genopinit.c                                       |     400 -
 gnu/dist/gcc/genoutput.c                                       |    1049 -
 gnu/dist/gcc/genpeep.c                                         |     525 -
 gnu/dist/gcc/genrecog.c                                        |    1814 -
 gnu/dist/gcc/getopt.c                                          |    1054 -
 gnu/dist/gcc/getopt.h                                          |     133 -
 gnu/dist/gcc/getopt1.c                                         |     190 -
 gnu/dist/gcc/getpwd.c                                          |      93 -
 gnu/dist/gcc/ginclude/iso646.h                                 |      15 -
 gnu/dist/gcc/ginclude/math-3300.h                              |     461 -
 gnu/dist/gcc/ginclude/math-68881.h                             |     529 -
 gnu/dist/gcc/ginclude/ppc-asm.h                                |     170 -
 gnu/dist/gcc/ginclude/proto.h                                  |       4 -
 gnu/dist/gcc/ginclude/stdarg.h                                 |     205 -
 gnu/dist/gcc/ginclude/stdbool.h                                |      20 -
 gnu/dist/gcc/ginclude/stddef.h                                 |     342 -
 gnu/dist/gcc/ginclude/va-alpha.h                               |     128 -
 gnu/dist/gcc/ginclude/va-arc.h                                 |     111 -
 gnu/dist/gcc/ginclude/va-clipper.h                             |      60 -
 gnu/dist/gcc/ginclude/va-h8300.h                               |      56 -
 gnu/dist/gcc/ginclude/va-i860.h                                |     214 -
 gnu/dist/gcc/ginclude/va-i960.h                                |      79 -
 gnu/dist/gcc/ginclude/va-m32r.h                                |      86 -
 gnu/dist/gcc/ginclude/va-m88k.h                                |      87 -
 gnu/dist/gcc/ginclude/va-mips.h                                |     277 -
 gnu/dist/gcc/ginclude/va-mn10200.h                             |      37 -
 gnu/dist/gcc/ginclude/va-mn10300.h                             |      35 -
 gnu/dist/gcc/ginclude/va-pa.h                                  |      52 -
 gnu/dist/gcc/ginclude/va-ppc.h                                 |     230 -
 gnu/dist/gcc/ginclude/va-pyr.h                                 |     130 -
 gnu/dist/gcc/ginclude/va-sh.h                                  |     199 -
 gnu/dist/gcc/ginclude/va-sparc.h                               |     165 -
 gnu/dist/gcc/ginclude/va-spur.h                                |      64 -
 gnu/dist/gcc/ginclude/va-v850.h                                |      34 -
 gnu/dist/gcc/ginclude/varargs.h                                |     220 -
 gnu/dist/gcc/glimits.h                                         |      98 -
 gnu/dist/gcc/global.c                                          |    1741 -
 gnu/dist/gcc/gmon.c                                            |     329 -
 gnu/dist/gcc/gstab.h                                           |      17 -
 gnu/dist/gcc/gsyms.h                                           |      86 -
 gnu/dist/gcc/gsyslimits.h                                      |       8 -
 gnu/dist/gcc/gthr-posix.h                                      |     147 -
 gnu/dist/gcc/gthr-single.h                                     |      62 -
 gnu/dist/gcc/gthr.h                                            |      99 -
 gnu/dist/gcc/haifa-sched.c                                     |    8738 -
 gnu/dist/gcc/halfpic.c                                         |     399 -
 gnu/dist/gcc/halfpic.h                                         |      73 -
 gnu/dist/gcc/hard-reg-set.h                                    |     470 -
 gnu/dist/gcc/hash.c                                            |     204 -
 gnu/dist/gcc/hash.h                                            |     130 -
 gnu/dist/gcc/input.h                                           |      47 -
 gnu/dist/gcc/install.texi                                      |    2381 -
 gnu/dist/gcc/install1.texi                                     |      15 -
 gnu/dist/gcc/integrate.c                                       |    3445 -
 gnu/dist/gcc/integrate.h                                       |     136 -
 gnu/dist/gcc/invoke.texi                                       |    6234 -
 gnu/dist/gcc/jump.c                                            |    4944 -
 gnu/dist/gcc/just-fixinc                                       |      39 -
 gnu/dist/gcc/libgcc1-test.c                                    |     106 -
 gnu/dist/gcc/libgcc1.c                                         |     596 -
 gnu/dist/gcc/libgcc2.c                                         |    3802 -
 gnu/dist/gcc/limitx.h                                          |      12 -
 gnu/dist/gcc/limity.h                                          |      10 -
 gnu/dist/gcc/listing                                           |     227 -
 gnu/dist/gcc/local-alloc.c                                     |    2269 -
 gnu/dist/gcc/longlong.h                                        |    1256 -
 gnu/dist/gcc/loop.c                                            |    7851 -
 gnu/dist/gcc/loop.h                                            |     191 -
 gnu/dist/gcc/machmode.def                                      |     123 -
 gnu/dist/gcc/machmode.h                                        |     236 -
 gnu/dist/gcc/makefile.vms                                      |     413 -
 gnu/dist/gcc/md.texi                                           |    4190 -
 gnu/dist/gcc/mips-tdump.c                                      |    1612 -
 gnu/dist/gcc/mips-tfile.c                                      |    5792 -
 gnu/dist/gcc/mkstemp.c                                         |     122 -
 gnu/dist/gcc/move-if-change                                    |      17 -
 gnu/dist/gcc/objc/Make-lang.in                                 |     312 -
 gnu/dist/gcc/objc/Makefile.in                                  |      91 -
 gnu/dist/gcc/objc/NXConstStr.h                                 |      44 -
 gnu/dist/gcc/objc/NXConstStr.m                                 |      42 -
 gnu/dist/gcc/objc/Object.h                                     |     124 -
 gnu/dist/gcc/objc/Object.m                                     |     387 -
 gnu/dist/gcc/objc/Protocol.h                                   |      58 -
 gnu/dist/gcc/objc/Protocol.m                                   |     128 -
 gnu/dist/gcc/objc/README                                       |      97 -
 gnu/dist/gcc/objc/README.threads                               |      50 -
 gnu/dist/gcc/objc/THREADS                                      |     374 -
 gnu/dist/gcc/objc/archive.c                                    |    1659 -
 gnu/dist/gcc/objc/class.c                                      |     358 -
 gnu/dist/gcc/objc/config-lang.in                               |      37 -
 gnu/dist/gcc/objc/encoding.c                                   |     554 -
 gnu/dist/gcc/objc/encoding.h                                   |      75 -
 gnu/dist/gcc/objc/hash.c                                       |     283 -
 gnu/dist/gcc/objc/hash.h                                       |     206 -
 gnu/dist/gcc/objc/init.c                                       |     834 -
 gnu/dist/gcc/objc/libobjc.def                                  |     161 -
 gnu/dist/gcc/objc/libobjc_entry.c                              |      55 -
 gnu/dist/gcc/objc/linking.m                                    |      40 -
 gnu/dist/gcc/objc/makefile.dos                                 |      56 -
 gnu/dist/gcc/objc/misc.c                                       |     152 -
 gnu/dist/gcc/objc/nil_method.c                                 |      40 -
 gnu/dist/gcc/objc/objc-act.c                                   |    8458 -
 gnu/dist/gcc/objc/objc-act.h                                   |     117 -
 gnu/dist/gcc/objc/objc-api.h                                   |     584 -
 gnu/dist/gcc/objc/objc-list.h                                  |     147 -
 gnu/dist/gcc/objc/objc-parse.y                                 |    2974 -
 gnu/dist/gcc/objc/objc-tree.def                                |      37 -
 gnu/dist/gcc/objc/objc.gperf                                   |      64 -
 gnu/dist/gcc/objc/objc.h                                       |     157 -
 gnu/dist/gcc/objc/objects.c                                    |      92 -
 gnu/dist/gcc/objc/runtime.h                                    |      89 -
 gnu/dist/gcc/objc/sarray.c                                     |     522 -
 gnu/dist/gcc/objc/sarray.h                                     |     237 -
 gnu/dist/gcc/objc/selector.c                                   |     458 -
 gnu/dist/gcc/objc/sendmsg.c                                    |     651 -
 gnu/dist/gcc/objc/thr-posix.c                                  |     229 -
 gnu/dist/gcc/objc/thr-pthreads.c                               |     218 -
 gnu/dist/gcc/objc/thr-single.c                                 |     192 -
 gnu/dist/gcc/objc/thr.c                                        |     534 -
 gnu/dist/gcc/objc/thr.h                                        |     143 -
 gnu/dist/gcc/objc/typedstream.h                                |     132 -
 gnu/dist/gcc/obstack.c                                         |     593 -
 gnu/dist/gcc/obstack.h                                         |     593 -
 gnu/dist/gcc/optabs.c                                          |    4465 -
 gnu/dist/gcc/output.h                                          |     468 -
 gnu/dist/gcc/pcp.h                                             |     101 -
 gnu/dist/gcc/pexecute.c                                        |     775 -
 gnu/dist/gcc/prefix.c                                          |     331 -
 gnu/dist/gcc/print-rtl.c                                       |     432 -
 gnu/dist/gcc/print-tree.c                                      |     694 -
 gnu/dist/gcc/profile.c                                         |    1702 -
 gnu/dist/gcc/protoize.c                                        |    4705 -
 gnu/dist/gcc/pself.c                                           |       1 -
 gnu/dist/gcc/pself1.c                                          |       1 -
 gnu/dist/gcc/pself2.c                                          |       1 -
 gnu/dist/gcc/pself3.c                                          |       1 -
 gnu/dist/gcc/real.c                                            |    6785 -
 gnu/dist/gcc/real.h                                            |     481 -
 gnu/dist/gcc/recog.c                                           |    2049 -
 gnu/dist/gcc/recog.h                                           |     121 -
 gnu/dist/gcc/reg-stack.c                                       |    3253 -
 gnu/dist/gcc/regclass.c                                        |    2184 -
 gnu/dist/gcc/regmove.c                                         |    1983 -
 gnu/dist/gcc/regs.h                                            |     224 -
 gnu/dist/gcc/reload.c                                          |    6563 -
 gnu/dist/gcc/reload.h                                          |     258 -
 gnu/dist/gcc/reload1.c                                         |    9004 -
 gnu/dist/gcc/reorg.c                                           |    4695 -
 gnu/dist/gcc/rtl.c                                             |     913 -
 gnu/dist/gcc/rtl.def                                           |     854 -
 gnu/dist/gcc/rtl.h                                             |    1553 -
 gnu/dist/gcc/rtl.texi                                          |    2881 -
 gnu/dist/gcc/rtlanal.c                                         |    2017 -
 gnu/dist/gcc/scan-decls.c                                      |     254 -
 gnu/dist/gcc/scan-types.sh                                     |     139 -
 gnu/dist/gcc/scan.c                                            |     241 -
 gnu/dist/gcc/scan.h                                            |      77 -
 gnu/dist/gcc/sched.c                                           |    4586 -
 gnu/dist/gcc/sdbout.c                                          |    1659 -
 gnu/dist/gcc/sdbout.h                                          |      39 -
 gnu/dist/gcc/sort-protos                                       |       9 -
 gnu/dist/gcc/stab.def                                          |     234 -
 gnu/dist/gcc/stack.h                                           |      42 -
 gnu/dist/gcc/stmt.c                                            |    5842 -
 gnu/dist/gcc/stor-layout.c                                     |    1359 -
 gnu/dist/gcc/stupid.c                                          |     627 -
 gnu/dist/gcc/sys-protos.h                                      |    1354 -
 gnu/dist/gcc/sys-types.h                                       |     240 -
 gnu/dist/gcc/system.h                                          |     316 -
 gnu/dist/gcc/tlink.c                                           |     633 -
 gnu/dist/gcc/tm.texi                                           |    7528 -
 gnu/dist/gcc/toplev.c                                          |    5134 -
 gnu/dist/gcc/toplev.h                                          |      65 -
 gnu/dist/gcc/tree.c                                            |    5133 -
 gnu/dist/gcc/tree.def                                          |     755 -
 gnu/dist/gcc/tree.h                                            |    2292 -
 gnu/dist/gcc/typeclass.h                                       |      14 -
 gnu/dist/gcc/unprotoize.c                                      |       2 -
 gnu/dist/gcc/unroll.c                                          |    3777 -
 gnu/dist/gcc/varasm.c                                          |    4402 -
 gnu/dist/gcc/varray.c                                          |      70 -
 gnu/dist/gcc/varray.h                                          |     166 -
 gnu/dist/gcc/version.c                                         |       1 -
 gnu/dist/gcc/vfprintf.c                                        |      21 -
 gnu/dist/gcc/xcoffout.c                                        |     545 -
 gnu/dist/gcc/xcoffout.h                                        |     192 -
 gnu/dist/gdb/29k-share/README                                  |       9 -
 gnu/dist/gdb/29k-share/udi/udi2go32.c                          |     607 -
 gnu/dist/gdb/29k-share/udi/udiids.h                            |      48 -
 gnu/dist/gdb/29k-share/udi/udip2soc.c                          |    1251 -
 gnu/dist/gdb/29k-share/udi/udiphcfg.h                          |      44 -
 gnu/dist/gdb/29k-share/udi/udiphunix.h                         |      81 -
 gnu/dist/gdb/29k-share/udi/udiproc.h                           |     308 -
 gnu/dist/gdb/29k-share/udi/udipt29k.h                          |      87 -
 gnu/dist/gdb/29k-share/udi/udiptcfg.h                          |      19 -
 gnu/dist/gdb/29k-share/udi/udisoc.h                            |     184 -
 gnu/dist/gdb/29k-share/udi/udr.c                               |     427 -
 gnu/dist/gdb/29k-share/udi_soc                                 |       9 -
 gnu/dist/gdb/COPYING                                           |     340 -
 gnu/dist/gdb/ChangeLog-96                                      |    5116 -
 gnu/dist/gdb/ChangeLog-97                                      |    2792 -
 gnu/dist/gdb/Makefile.in                                       |    1543 -
 gnu/dist/gdb/NEWS                                              |    1454 -
 gnu/dist/gdb/README                                            |     569 -
 gnu/dist/gdb/TODO                                              |     471 -
 gnu/dist/gdb/a29k-tdep.c                                       |    1028 -
 gnu/dist/gdb/a68v-nat.c                                        |     123 -
 gnu/dist/gdb/abug-rom.c                                        |     171 -
 gnu/dist/gdb/acconfig.h                                        |      50 -
 gnu/dist/gdb/aclocal.m4                                        |     529 -
 gnu/dist/gdb/alpha-nat.c                                       |     295 -
 gnu/dist/gdb/alpha-tdep.c                                      |    1522 -
 gnu/dist/gdb/alphanbsd-nat.c                                   |     246 -
 gnu/dist/gdb/altos-xdep.c                                      |     164 -
 gnu/dist/gdb/annotate.c                                        |     541 -
 gnu/dist/gdb/annotate.h                                        |      95 -
 gnu/dist/gdb/arc-tdep.c                                        |     742 -
 gnu/dist/gdb/arm-convert.s                                     |      16 -
 gnu/dist/gdb/arm-tdep.c                                        |    1534 -
 gnu/dist/gdb/arm-xdep.c                                        |     559 -
 gnu/dist/gdb/armb-nat.c                                        |     179 -
 gnu/dist/gdb/bcache.c                                          |     216 -
 gnu/dist/gdb/bcache.h                                          |      72 -
 gnu/dist/gdb/blockframe.c                                      |    1173 -
 gnu/dist/gdb/breakpoint.c                                      |    4222 -
 gnu/dist/gdb/breakpoint.h                                      |     428 -
 gnu/dist/gdb/buildsym.c                                        |    1132 -
 gnu/dist/gdb/buildsym.h                                        |     273 -
 gnu/dist/gdb/c-exp.y                                           |    1658 -
 gnu/dist/gdb/c-lang.c                                          |     480 -
 gnu/dist/gdb/c-lang.h                                          |      79 -
 gnu/dist/gdb/c-typeprint.c                                     |     789 -
 gnu/dist/gdb/c-valprint.c                                      |     473 -
 gnu/dist/gdb/call-cmds.h                                       |      28 -
 gnu/dist/gdb/ch-exp.c                                          |    2169 -
 gnu/dist/gdb/ch-lang.c                                         |     673 -
 gnu/dist/gdb/ch-lang.h                                         |      42 -
 gnu/dist/gdb/ch-typeprint.c                                    |     346 -
 gnu/dist/gdb/ch-valprint.c                                     |     629 -
 gnu/dist/gdb/coff-solib.c                                      |     131 -
 gnu/dist/gdb/coff-solib.h                                      |      60 -
 gnu/dist/gdb/coffread.c                                        |    2210 -
 gnu/dist/gdb/command.c                                         |    1505 -
 gnu/dist/gdb/command.h                                         |     259 -
 gnu/dist/gdb/complaints.c                                      |     166 -
 gnu/dist/gdb/complaints.h                                      |      46 -
 gnu/dist/gdb/config.in                                         |     151 -
 gnu/dist/gdb/config/a29k/a29k-kern.mt                          |      13 -
 gnu/dist/gdb/config/a29k/a29k-udi.mt                           |       8 -
 gnu/dist/gdb/config/a29k/a29k.mt                               |       5 -
 gnu/dist/gdb/config/a29k/nm-ultra3.h                           |      26 -
 gnu/dist/gdb/config/a29k/tm-a29k.h                             |     710 -
 gnu/dist/gdb/config/a29k/tm-ultra3.h                           |     226 -
 gnu/dist/gdb/config/a29k/tm-vx29k.h                            |     233 -
 gnu/dist/gdb/config/a29k/ultra3.mh                             |      13 -
 gnu/dist/gdb/config/a29k/ultra3.mt                             |       6 -
 gnu/dist/gdb/config/a29k/vx29k.mt                              |       4 -
 gnu/dist/gdb/config/a29k/xm-ultra3.h                           |      52 -
 gnu/dist/gdb/config/alpha/alpha-linux.mh                       |       9 -
 gnu/dist/gdb/config/alpha/alpha-linux.mt                       |       3 -
 gnu/dist/gdb/config/alpha/alpha-osf1.mh                        |       5 -
 gnu/dist/gdb/config/alpha/alpha-osf1.mt                        |       3 -
 gnu/dist/gdb/config/alpha/alpha-osf2.mh                        |       5 -
 gnu/dist/gdb/config/alpha/alpha-osf3.mh                        |       5 -
 gnu/dist/gdb/config/alpha/nbsd.mh                              |       6 -
 gnu/dist/gdb/config/alpha/nbsd.mt                              |       3 -
 gnu/dist/gdb/config/alpha/nm-linux.h                           |      66 -
 gnu/dist/gdb/config/alpha/nm-nbsd.h                            |      45 -
 gnu/dist/gdb/config/alpha/nm-osf.h                             |      56 -
 gnu/dist/gdb/config/alpha/nm-osf2.h                            |      54 -
 gnu/dist/gdb/config/alpha/nm-osf3.h                            |      26 -
 gnu/dist/gdb/config/alpha/tm-alpha.h                           |     487 -
 gnu/dist/gdb/config/alpha/tm-alphalinux.h                      |      80 -
 gnu/dist/gdb/config/alpha/tm-nbsd.h                            |      38 -
 gnu/dist/gdb/config/alpha/xm-alphalinux.h                      |      29 -
 gnu/dist/gdb/config/alpha/xm-alphaosf.h                        |      27 -
 gnu/dist/gdb/config/alpha/xm-nbsd.h                            |      21 -
 gnu/dist/gdb/config/arc/arc.mt                                 |       3 -
 gnu/dist/gdb/config/arc/tm-arc.h                               |     352 -
 gnu/dist/gdb/config/arm/arm.mh                                 |       5 -
 gnu/dist/gdb/config/arm/arm.mt                                 |       6 -
 gnu/dist/gdb/config/arm/nbsd.mh                                |       5 -
 gnu/dist/gdb/config/arm/nbsd.mt                                |       3 -
 gnu/dist/gdb/config/arm/nbsdkgdb.mt                            |       6 -
 gnu/dist/gdb/config/arm/nm-arm.h                               |      27 -
 gnu/dist/gdb/config/arm/nm-nbsd.h                              |      28 -
 gnu/dist/gdb/config/arm/tm-arm.h                               |     460 -
 gnu/dist/gdb/config/arm/tm-armnbsd.h                           |     531 -
 gnu/dist/gdb/config/arm/tm-armnetkgdb.h                        |     347 -
 gnu/dist/gdb/config/arm/tm-nbsd.h                              |      49 -
 gnu/dist/gdb/config/arm/xm-arm.h                               |      76 -
 gnu/dist/gdb/config/arm/xm-nbsd.h                              |      21 -
 gnu/dist/gdb/config/convex/Convex.notes                        |     163 -
 gnu/dist/gdb/config/convex/convex.mh                           |       3 -
 gnu/dist/gdb/config/convex/convex.mt                           |       3 -
 gnu/dist/gdb/config/convex/tm-convex.h                         |     516 -
 gnu/dist/gdb/config/convex/xm-convex.h                         |      35 -
 gnu/dist/gdb/config/d10v/d10v.mt                               |       6 -
 gnu/dist/gdb/config/d10v/tm-d10v.h                             |     303 -
 gnu/dist/gdb/config/gould/np1.mh                               |       3 -
 gnu/dist/gdb/config/gould/np1.mt                               |       3 -
 gnu/dist/gdb/config/gould/pn.mh                                |       3 -
 gnu/dist/gdb/config/gould/pn.mt                                |       3 -
 gnu/dist/gdb/config/gould/tm-np1.h                             |     492 -
 gnu/dist/gdb/config/gould/tm-pn.h                              |     412 -
 gnu/dist/gdb/config/gould/xm-np1.h                             |      94 -
 gnu/dist/gdb/config/gould/xm-pn.h                              |      87 -
 gnu/dist/gdb/config/h8300/h8300.mt                             |       6 -
 gnu/dist/gdb/config/h8300/tm-h8300.h                           |     304 -
 gnu/dist/gdb/config/h8500/h8500.mt                             |       6 -
 gnu/dist/gdb/config/h8500/tm-h8500.h                           |     298 -
 gnu/dist/gdb/config/i386/cygwin32.mh                           |       8 -
 gnu/dist/gdb/config/i386/cygwin32.mt                           |       6 -
 gnu/dist/gdb/config/i386/fbsd.mh                               |       5 -
 gnu/dist/gdb/config/i386/fbsd.mt                               |       3 -
 gnu/dist/gdb/config/i386/gdbserve.mt                           |       3 -
 gnu/dist/gdb/config/i386/go32.mh                               |       9 -
 gnu/dist/gdb/config/i386/i386aix.mh                            |      12 -
 gnu/dist/gdb/config/i386/i386aix.mt                            |       7 -
 gnu/dist/gdb/config/i386/i386aout.mt                           |       3 -
 gnu/dist/gdb/config/i386/i386bsd.mh                            |       7 -
 gnu/dist/gdb/config/i386/i386bsd.mt                            |       3 -
 gnu/dist/gdb/config/i386/i386dgux.mh                           |      14 -
 gnu/dist/gdb/config/i386/i386gnu.mh                            |      31 -
 gnu/dist/gdb/config/i386/i386gnu.mt                            |       3 -
 gnu/dist/gdb/config/i386/i386lynx.mh                           |      11 -
 gnu/dist/gdb/config/i386/i386lynx.mt                           |       3 -
 gnu/dist/gdb/config/i386/i386m3.mh                             |       7 -
 gnu/dist/gdb/config/i386/i386m3.mt                             |       3 -
 gnu/dist/gdb/config/i386/i386mach.mh                           |      10 -
 gnu/dist/gdb/config/i386/i386mk.mh                             |       4 -
 gnu/dist/gdb/config/i386/i386mk.mt                             |       6 -
 gnu/dist/gdb/config/i386/i386nw.mt                             |       3 -
 gnu/dist/gdb/config/i386/i386os9k.mt                           |       3 -
 gnu/dist/gdb/config/i386/i386sco.mh                            |      13 -
 gnu/dist/gdb/config/i386/i386sco4.mh                           |      12 -
 gnu/dist/gdb/config/i386/i386sco5.mh                           |      17 -
 gnu/dist/gdb/config/i386/i386sco5.mt                           |       3 -
 gnu/dist/gdb/config/i386/i386sol2.mh                           |      12 -
 gnu/dist/gdb/config/i386/i386sol2.mt                           |       3 -
 gnu/dist/gdb/config/i386/i386v.mh                              |       8 -
 gnu/dist/gdb/config/i386/i386v.mt                              |       3 -
 gnu/dist/gdb/config/i386/i386v32.mh                            |       9 -
 gnu/dist/gdb/config/i386/i386v4.mh                             |      14 -
 gnu/dist/gdb/config/i386/i386v4.mt                             |       3 -
 gnu/dist/gdb/config/i386/i386v42mp.mh                          |      16 -
 gnu/dist/gdb/config/i386/i386v42mp.mt                          |       3 -
 gnu/dist/gdb/config/i386/linux.mh                              |       7 -
 gnu/dist/gdb/config/i386/linux.mt                              |       5 -
 gnu/dist/gdb/config/i386/nbsd.mh                               |       6 -
 gnu/dist/gdb/config/i386/nbsd.mt                               |       3 -
 gnu/dist/gdb/config/i386/ncr3000.mh                            |      21 -
 gnu/dist/gdb/config/i386/ncr3000.mt                            |       3 -
 gnu/dist/gdb/config/i386/nm-fbsd.h                             |      98 -
 gnu/dist/gdb/config/i386/nm-gnu.h                              |      22 -
 gnu/dist/gdb/config/i386/nm-i386aix.h                          |      42 -
 gnu/dist/gdb/config/i386/nm-i386bsd.h                          |      39 -
 gnu/dist/gdb/config/i386/nm-i386lynx.h                         |      25 -
 gnu/dist/gdb/config/i386/nm-i386mach.h                         |      26 -
 gnu/dist/gdb/config/i386/nm-i386sco.h                          |      47 -
 gnu/dist/gdb/config/i386/nm-i386sco4.h                         |      32 -
 gnu/dist/gdb/config/i386/nm-i386sco5.h                         |      39 -
 gnu/dist/gdb/config/i386/nm-i386sol2.h                         |      35 -
 gnu/dist/gdb/config/i386/nm-i386v.h                            |      38 -
 gnu/dist/gdb/config/i386/nm-i386v4.h                           |      24 -
 gnu/dist/gdb/config/i386/nm-i386v42mp.h                        |      22 -
 gnu/dist/gdb/config/i386/nm-linux.h                            |      77 -
 gnu/dist/gdb/config/i386/nm-m3.h                               |      22 -
 gnu/dist/gdb/config/i386/nm-nbsd.h                             |      24 -
 gnu/dist/gdb/config/i386/nm-ptx4.h                             |      62 -
 gnu/dist/gdb/config/i386/nm-sun386.h                           |      27 -
 gnu/dist/gdb/config/i386/nm-symmetry.h                         |      47 -
 gnu/dist/gdb/config/i386/ptx.mh                                |       7 -
 gnu/dist/gdb/config/i386/ptx.mt                                |       3 -
 gnu/dist/gdb/config/i386/ptx4.mh                               |       7 -
 gnu/dist/gdb/config/i386/ptx4.mt                               |       3 -
 gnu/dist/gdb/config/i386/sun386.mh                             |       5 -
 gnu/dist/gdb/config/i386/sun386.mt                             |       3 -
 gnu/dist/gdb/config/i386/symmetry.mh                           |       5 -
 gnu/dist/gdb/config/i386/symmetry.mt                           |       3 -
 gnu/dist/gdb/config/i386/tm-cygwin32.h                         |     125 -
 gnu/dist/gdb/config/i386/tm-fbsd.h                             |      32 -
 gnu/dist/gdb/config/i386/tm-i386.h                             |     309 -
 gnu/dist/gdb/config/i386/tm-i386aix.h                          |      67 -
 gnu/dist/gdb/config/i386/tm-i386bsd.h                          |      43 -
 gnu/dist/gdb/config/i386/tm-i386gnu.h                          |      48 -
 gnu/dist/gdb/config/i386/tm-i386lynx.h                         |      33 -
 gnu/dist/gdb/config/i386/tm-i386m3.h                           |      60 -
 gnu/dist/gdb/config/i386/tm-i386mk.h                           |      25 -
 gnu/dist/gdb/config/i386/tm-i386nw.h                           |      49 -
 gnu/dist/gdb/config/i386/tm-i386os9k.h                         |      63 -
 gnu/dist/gdb/config/i386/tm-i386sco5.h                         |      62 -
 gnu/dist/gdb/config/i386/tm-i386sol2.h                         |      64 -
 gnu/dist/gdb/config/i386/tm-i386v.h                            |     161 -
 gnu/dist/gdb/config/i386/tm-i386v4.h                           |      78 -
 gnu/dist/gdb/config/i386/tm-i386v42mp.h                        |      49 -
 gnu/dist/gdb/config/i386/tm-linux.h                            |      38 -
 gnu/dist/gdb/config/i386/tm-nbsd.h                             |      52 -
 gnu/dist/gdb/config/i386/tm-ptx.h                              |     232 -
 gnu/dist/gdb/config/i386/tm-ptx4.h                             |      24 -
 gnu/dist/gdb/config/i386/tm-sun386.h                           |     205 -
 gnu/dist/gdb/config/i386/tm-symmetry.h                         |     321 -
 gnu/dist/gdb/config/i386/xm-cygwin32.h                         |      36 -
 gnu/dist/gdb/config/i386/xm-go32.h                             |      31 -
 gnu/dist/gdb/config/i386/xm-i386aix.h                          |      33 -
 gnu/dist/gdb/config/i386/xm-i386bsd.h                          |      22 -
 gnu/dist/gdb/config/i386/xm-i386gnu.h                          |      23 -
 gnu/dist/gdb/config/i386/xm-i386lynx.h                         |      24 -
 gnu/dist/gdb/config/i386/xm-i386m3.h                           |      33 -
 gnu/dist/gdb/config/i386/xm-i386mach.h                         |      30 -
 gnu/dist/gdb/config/i386/xm-i386mk.h                           |      25 -
 gnu/dist/gdb/config/i386/xm-i386sco.h                          |      42 -
 gnu/dist/gdb/config/i386/xm-i386v.h                            |      45 -
 gnu/dist/gdb/config/i386/xm-i386v32.h                          |      24 -
 gnu/dist/gdb/config/i386/xm-i386v4.h                           |      27 -
 gnu/dist/gdb/config/i386/xm-linux.h                            |      36 -
 gnu/dist/gdb/config/i386/xm-nbsd.h                             |      21 -
 gnu/dist/gdb/config/i386/xm-ptx.h                              |      41 -
 gnu/dist/gdb/config/i386/xm-ptx4.h                             |      25 -
 gnu/dist/gdb/config/i386/xm-sun386.h                           |      20 -
 gnu/dist/gdb/config/i386/xm-symmetry.h                         |      28 -
 gnu/dist/gdb/config/i386/xm-windows.h                          |      35 -
 gnu/dist/gdb/config/i960/mon960.mt                             |       4 -
 gnu/dist/gdb/config/i960/nindy960.mt                           |       3 -
 gnu/dist/gdb/config/i960/tm-i960.h                             |     375 -
 gnu/dist/gdb/config/i960/tm-mon960.h                           |      67 -
 gnu/dist/gdb/config/i960/tm-nindy960.h                         |     101 -
 gnu/dist/gdb/config/i960/tm-vx960.h                            |      53 -
 gnu/dist/gdb/config/i960/vxworks960.mt                         |      10 -
 gnu/dist/gdb/config/m32r/m32r.mt                               |       5 -
 gnu/dist/gdb/config/m32r/tm-m32r.h                             |     234 -
 gnu/dist/gdb/config/m68k/3b1.mh                                |      12 -
 gnu/dist/gdb/config/m68k/3b1.mt                                |       3 -
 gnu/dist/gdb/config/m68k/altos.mh                              |       5 -
 gnu/dist/gdb/config/m68k/altos.mt                              |       3 -
 gnu/dist/gdb/config/m68k/apollo68b.mh                          |       6 -
 gnu/dist/gdb/config/m68k/apollo68b.mt                          |       3 -
 gnu/dist/gdb/config/m68k/apollo68v.mh                          |      11 -
 gnu/dist/gdb/config/m68k/cisco.mt                              |       3 -
 gnu/dist/gdb/config/m68k/delta68.mh                            |       6 -
 gnu/dist/gdb/config/m68k/delta68.mt                            |       3 -
 gnu/dist/gdb/config/m68k/dpx2.mh                               |       9 -
 gnu/dist/gdb/config/m68k/dpx2.mt                               |       3 -
 gnu/dist/gdb/config/m68k/es1800.mt                             |       9 -
 gnu/dist/gdb/config/m68k/hp300bsd.mh                           |       7 -
 gnu/dist/gdb/config/m68k/hp300bsd.mt                           |       3 -
 gnu/dist/gdb/config/m68k/hp300hpux.mh                          |       8 -
 gnu/dist/gdb/config/m68k/hp300hpux.mt                          |       8 -
 gnu/dist/gdb/config/m68k/isi.mh                                |       5 -
 gnu/dist/gdb/config/m68k/isi.mt                                |       3 -
 gnu/dist/gdb/config/m68k/m68klynx.mh                           |      11 -
 gnu/dist/gdb/config/m68k/m68klynx.mt                           |       4 -
 gnu/dist/gdb/config/m68k/m68kv4.mh                             |      12 -
 gnu/dist/gdb/config/m68k/m68kv4.mt                             |       3 -
 gnu/dist/gdb/config/m68k/monitor.mt                            |       3 -
 gnu/dist/gdb/config/m68k/nbsd.mh                               |       6 -
 gnu/dist/gdb/config/m68k/nbsd.mt                               |       3 -
 gnu/dist/gdb/config/m68k/news.mh                               |       5 -
 gnu/dist/gdb/config/m68k/news.mt                               |       3 -
 gnu/dist/gdb/config/m68k/news1000.mh                           |       3 -
 gnu/dist/gdb/config/m68k/nm-apollo68b.h                        |      43 -
 gnu/dist/gdb/config/m68k/nm-apollo68v.h                        |      20 -
 gnu/dist/gdb/config/m68k/nm-delta68.h                          |      22 -
 gnu/dist/gdb/config/m68k/nm-dpx2.h                             |      29 -
 gnu/dist/gdb/config/m68k/nm-hp300bsd.h                         |      88 -
 gnu/dist/gdb/config/m68k/nm-hp300hpux.h                        |      53 -
 gnu/dist/gdb/config/m68k/nm-m68klynx.h                         |      25 -
 gnu/dist/gdb/config/m68k/nm-nbsd.h                             |      21 -
 gnu/dist/gdb/config/m68k/nm-news.h                             |      26 -
 gnu/dist/gdb/config/m68k/nm-sun2.h                             |      33 -
 gnu/dist/gdb/config/m68k/nm-sun3.h                             |      31 -
 gnu/dist/gdb/config/m68k/nm-sysv4.h                            |      22 -
 gnu/dist/gdb/config/m68k/os68k.mt                              |       3 -
 gnu/dist/gdb/config/m68k/st2000.mt                             |       3 -
 gnu/dist/gdb/config/m68k/sun2os3.mh                            |       5 -
 gnu/dist/gdb/config/m68k/sun2os3.mt                            |       7 -
 gnu/dist/gdb/config/m68k/sun2os4.mh                            |       5 -
 gnu/dist/gdb/config/m68k/sun2os4.mt                            |       3 -
 gnu/dist/gdb/config/m68k/sun3os3.mh                            |       5 -
 gnu/dist/gdb/config/m68k/sun3os3.mt                            |       8 -
 gnu/dist/gdb/config/m68k/sun3os4.mh                            |       6 -
 gnu/dist/gdb/config/m68k/sun3os4.mt                            |       3 -
 gnu/dist/gdb/config/m68k/tm-3b1.h                              |      32 -
 gnu/dist/gdb/config/m68k/tm-altos.h                            |      57 -
 gnu/dist/gdb/config/m68k/tm-apollo68b.h                        |      59 -
 gnu/dist/gdb/config/m68k/tm-cisco.h                            |      55 -
 gnu/dist/gdb/config/m68k/tm-delta68.h                          |     103 -
 gnu/dist/gdb/config/m68k/tm-dpx2.h                             |      33 -
 gnu/dist/gdb/config/m68k/tm-es1800.h                           |      59 -
 gnu/dist/gdb/config/m68k/tm-hp300bsd.h                         |      62 -
 gnu/dist/gdb/config/m68k/tm-hp300hpux.h                        |      31 -
 gnu/dist/gdb/config/m68k/tm-isi.h                              |     150 -
 gnu/dist/gdb/config/m68k/tm-m68k.h                             |     388 -
 gnu/dist/gdb/config/m68k/tm-m68klynx.h                         |      38 -
 gnu/dist/gdb/config/m68k/tm-m68kv4.h                           |      70 -
 gnu/dist/gdb/config/m68k/tm-mac.h                              |      20 -
 gnu/dist/gdb/config/m68k/tm-monitor.h                          |      45 -
 gnu/dist/gdb/config/m68k/tm-nbsd.h                             |      39 -
 gnu/dist/gdb/config/m68k/tm-news.h                             |      75 -
 gnu/dist/gdb/config/m68k/tm-os68k.h                            |      47 -
 gnu/dist/gdb/config/m68k/tm-st2000.h                           |      20 -
 gnu/dist/gdb/config/m68k/tm-sun2.h                             |      23 -
 gnu/dist/gdb/config/m68k/tm-sun2os4.h                          |      20 -
 gnu/dist/gdb/config/m68k/tm-sun3.h                             |     122 -
 gnu/dist/gdb/config/m68k/tm-sun3os4.h                          |      21 -
 gnu/dist/gdb/config/m68k/tm-vx68.h                             |      92 -
 gnu/dist/gdb/config/m68k/vxworks68.mt                          |       3 -
 gnu/dist/gdb/config/m68k/xm-3b1.h                              |      85 -
 gnu/dist/gdb/config/m68k/xm-altos.h                            |     202 -
 gnu/dist/gdb/config/m68k/xm-apollo68b.h                        |      24 -
 gnu/dist/gdb/config/m68k/xm-apollo68v.h                        |      44 -
 gnu/dist/gdb/config/m68k/xm-delta68.h                          |      36 -
 gnu/dist/gdb/config/m68k/xm-dpx2.h                             |      26 -
 gnu/dist/gdb/config/m68k/xm-hp300bsd.h                         |      85 -
 gnu/dist/gdb/config/m68k/xm-hp300hpux.h                        |     150 -
 gnu/dist/gdb/config/m68k/xm-isi.h                              |      92 -
 gnu/dist/gdb/config/m68k/xm-m68k.h                             |      22 -
 gnu/dist/gdb/config/m68k/xm-m68klynx.h                         |      24 -
 gnu/dist/gdb/config/m68k/xm-m68kv4.h                           |      28 -
 gnu/dist/gdb/config/m68k/xm-mpw.h                              |      24 -
 gnu/dist/gdb/config/m68k/xm-nbsd.h                             |      21 -
 gnu/dist/gdb/config/m68k/xm-news.h                             |     137 -
 gnu/dist/gdb/config/m68k/xm-news1000.h                         |      26 -
 gnu/dist/gdb/config/m68k/xm-sun2.h                             |      78 -
 gnu/dist/gdb/config/m68k/xm-sun3.h                             |      73 -
 gnu/dist/gdb/config/m68k/xm-sun3os4.h                          |      21 -
 gnu/dist/gdb/config/m88k/cxux.mh                               |       7 -
 gnu/dist/gdb/config/m88k/cxux.mt                               |       3 -
 gnu/dist/gdb/config/m88k/delta88.mh                            |       7 -
 gnu/dist/gdb/config/m88k/delta88.mt                            |       3 -
 gnu/dist/gdb/config/m88k/delta88v4.mh                          |       7 -
 gnu/dist/gdb/config/m88k/delta88v4.mt                          |       3 -
 gnu/dist/gdb/config/m88k/m88k.mh                               |       5 -
 gnu/dist/gdb/config/m88k/m88k.mt                               |       3 -
 gnu/dist/gdb/config/m88k/nm-cxux.h                             |      32 -
 gnu/dist/gdb/config/m88k/nm-delta88v4.h                        |      21 -
 gnu/dist/gdb/config/m88k/nm-m88k.h                             |      24 -
 gnu/dist/gdb/config/m88k/tm-cxux.h                             |      59 -
 gnu/dist/gdb/config/m88k/tm-delta88.h                          |      26 -
 gnu/dist/gdb/config/m88k/tm-delta88v4.h                        |      30 -
 gnu/dist/gdb/config/m88k/tm-m88k.h                             |     624 -
 gnu/dist/gdb/config/m88k/xm-cxux.h                             |      70 -
 gnu/dist/gdb/config/m88k/xm-delta88.h                          |      45 -
 gnu/dist/gdb/config/m88k/xm-delta88v4.h                        |      22 -
 gnu/dist/gdb/config/m88k/xm-dgux.h                             |      62 -
 gnu/dist/gdb/config/m88k/xm-m88k.h                             |      20 -
 gnu/dist/gdb/config/mips/bigmips.mt                            |       3 -
 gnu/dist/gdb/config/mips/bigmips64.mt                          |       3 -
 gnu/dist/gdb/config/mips/decstation.mh                         |       5 -
 gnu/dist/gdb/config/mips/decstation.mt                         |       3 -
 gnu/dist/gdb/config/mips/embed.mt                              |       5 -
 gnu/dist/gdb/config/mips/embed64.mt                            |       5 -
 gnu/dist/gdb/config/mips/embedl.mt                             |       5 -
 gnu/dist/gdb/config/mips/embedl64.mt                           |       5 -
 gnu/dist/gdb/config/mips/irix3.mh                              |       6 -
 gnu/dist/gdb/config/mips/irix3.mt                              |       3 -
 gnu/dist/gdb/config/mips/irix4.mh                              |       8 -
 gnu/dist/gdb/config/mips/irix5.mh                              |       6 -
 gnu/dist/gdb/config/mips/irix5.mt                              |       3 -
 gnu/dist/gdb/config/mips/littlemips.mh                         |       3 -
 gnu/dist/gdb/config/mips/littlemips.mt                         |       3 -
 gnu/dist/gdb/config/mips/mipsm3.mh                             |       7 -
 gnu/dist/gdb/config/mips/mipsm3.mt                             |       4 -
 gnu/dist/gdb/config/mips/mipsv4.mh                             |       4 -
 gnu/dist/gdb/config/mips/mipsv4.mt                             |       3 -
 gnu/dist/gdb/config/mips/nbsd.mh                               |       9 -
 gnu/dist/gdb/config/mips/nbsd.mt                               |       3 -
 gnu/dist/gdb/config/mips/news-mips.mh                          |       4 -
 gnu/dist/gdb/config/mips/nm-irix3.h                            |      37 -
 gnu/dist/gdb/config/mips/nm-irix4.h                            |      61 -
 gnu/dist/gdb/config/mips/nm-irix5.h                            |      44 -
 gnu/dist/gdb/config/mips/nm-mips.h                             |      32 -
 gnu/dist/gdb/config/mips/nm-nbsd.h                             |      37 -
 gnu/dist/gdb/config/mips/nm-news-mips.h                        |      42 -
 gnu/dist/gdb/config/mips/nm-riscos.h                           |      59 -
 gnu/dist/gdb/config/mips/riscos.mh                             |      16 -
 gnu/dist/gdb/config/mips/tm-bigmips.h                          |      21 -
 gnu/dist/gdb/config/mips/tm-bigmips64.h                        |      23 -
 gnu/dist/gdb/config/mips/tm-embed.h                            |      49 -
 gnu/dist/gdb/config/mips/tm-embed64.h                          |      21 -
 gnu/dist/gdb/config/mips/tm-embedl.h                           |      21 -
 gnu/dist/gdb/config/mips/tm-embedl64.h                         |      21 -
 gnu/dist/gdb/config/mips/tm-irix3.h                            |      81 -
 gnu/dist/gdb/config/mips/tm-irix5.h                            |      44 -
 gnu/dist/gdb/config/mips/tm-mips.h                             |     591 -
 gnu/dist/gdb/config/mips/tm-mips64.h                           |      43 -
 gnu/dist/gdb/config/mips/tm-mipsm3.h                           |      66 -
 gnu/dist/gdb/config/mips/tm-mipsv4.h                           |      45 -
 gnu/dist/gdb/config/mips/tm-nbsd.h                             |      35 -
 gnu/dist/gdb/config/mips/tm-tx39.h                             |      38 -
 gnu/dist/gdb/config/mips/tm-tx39l.h                            |      38 -
 gnu/dist/gdb/config/mips/tm-vr4300.h                           |      22 -
 gnu/dist/gdb/config/mips/tm-vr4300el.h                         |      22 -
 gnu/dist/gdb/config/mips/tm-vr5000.h                           |      23 -
 gnu/dist/gdb/config/mips/tm-vr5000el.h                         |      23 -
 gnu/dist/gdb/config/mips/tm-vxmips.h                           |      31 -
 gnu/dist/gdb/config/mips/tx39.mt                               |       5 -
 gnu/dist/gdb/config/mips/tx39l.mt                              |       5 -
 gnu/dist/gdb/config/mips/vr4300.mt                             |       5 -
 gnu/dist/gdb/config/mips/vr4300el.mt                           |       5 -
 gnu/dist/gdb/config/mips/vr5000.mt                             |       7 -
 gnu/dist/gdb/config/mips/vr5000el.mt                           |       5 -
 gnu/dist/gdb/config/mips/vxmips.mt                             |       3 -
 gnu/dist/gdb/config/mips/xm-irix3.h                            |      31 -
 gnu/dist/gdb/config/mips/xm-irix4.h                            |      33 -
 gnu/dist/gdb/config/mips/xm-irix5.h                            |      35 -
 gnu/dist/gdb/config/mips/xm-mips.h                             |      61 -
 gnu/dist/gdb/config/mips/xm-mipsm3.h                           |      32 -
 gnu/dist/gdb/config/mips/xm-mipsv4.h                           |      23 -
 gnu/dist/gdb/config/mips/xm-nbsd.h                             |      21 -
 gnu/dist/gdb/config/mips/xm-news-mips.h                        |      24 -
 gnu/dist/gdb/config/mips/xm-riscos.h                           |      28 -
 gnu/dist/gdb/config/mn10200/mn10200.mt                         |       6 -
 gnu/dist/gdb/config/mn10200/tm-mn10200.h                       |     212 -
 gnu/dist/gdb/config/mn10300/mn10300.mt                         |       6 -
 gnu/dist/gdb/config/mn10300/tm-mn10300.h                       |     164 -
 gnu/dist/gdb/config/nm-empty.h                                 |       2 -
 gnu/dist/gdb/config/nm-gnu.h                                   |      45 -
 gnu/dist/gdb/config/nm-lynx.h                                  |      83 -
 gnu/dist/gdb/config/nm-m3.h                                    |     123 -
 gnu/dist/gdb/config/nm-nbsd.h                                  |      98 -
 gnu/dist/gdb/config/nm-sysv4.h                                 |      33 -
 gnu/dist/gdb/config/ns32k/merlin.mh                            |      16 -
 gnu/dist/gdb/config/ns32k/merlin.mt                            |       3 -
 gnu/dist/gdb/config/ns32k/nbsd.mh                              |       6 -
 gnu/dist/gdb/config/ns32k/nbsd.mt                              |       3 -
 gnu/dist/gdb/config/ns32k/nm-nbsd.h                            |      26 -
 gnu/dist/gdb/config/ns32k/nm-umax.h                            |      54 -
 gnu/dist/gdb/config/ns32k/ns32km3.mh                           |       7 -
 gnu/dist/gdb/config/ns32k/ns32km3.mt                           |       3 -
 gnu/dist/gdb/config/ns32k/tm-merlin.h                          |     317 -
 gnu/dist/gdb/config/ns32k/tm-nbsd.h                            |     145 -
 gnu/dist/gdb/config/ns32k/tm-ns32km3.h                         |      95 -
 gnu/dist/gdb/config/ns32k/tm-umax.h                            |     374 -
 gnu/dist/gdb/config/ns32k/umax.mh                              |       5 -
 gnu/dist/gdb/config/ns32k/umax.mt                              |       3 -
 gnu/dist/gdb/config/ns32k/xm-merlin.h                          |      65 -
 gnu/dist/gdb/config/ns32k/xm-nbsd.h                            |      21 -
 gnu/dist/gdb/config/ns32k/xm-ns32km3.h                         |      23 -
 gnu/dist/gdb/config/ns32k/xm-umax.h                            |      26 -
 gnu/dist/gdb/config/pa/hppabsd.mh                              |       7 -
 gnu/dist/gdb/config/pa/hppabsd.mt                              |       3 -
 gnu/dist/gdb/config/pa/hppahpux.mh                             |      14 -
 gnu/dist/gdb/config/pa/hppahpux.mt                             |       3 -
 gnu/dist/gdb/config/pa/hppaosf.mh                              |       9 -
 gnu/dist/gdb/config/pa/hppaosf.mt                              |       3 -
 gnu/dist/gdb/config/pa/hppapro.mt                              |       3 -
 gnu/dist/gdb/config/pa/nm-hppab.h                              |     135 -
 gnu/dist/gdb/config/pa/nm-hppah.h                              |      91 -
 gnu/dist/gdb/config/pa/nm-hppao.h                              |      56 -
 gnu/dist/gdb/config/pa/tm-hppa.h                               |     675 -
 gnu/dist/gdb/config/pa/tm-hppab.h                              |      47 -
 gnu/dist/gdb/config/pa/tm-hppah.h                              |      70 -
 gnu/dist/gdb/config/pa/tm-hppao.h                              |      96 -
 gnu/dist/gdb/config/pa/tm-pro.h                                |      14 -
 gnu/dist/gdb/config/pa/xm-hppab.h                              |      27 -
 gnu/dist/gdb/config/pa/xm-hppah.h                              |      49 -
 gnu/dist/gdb/config/pa/xm-pa.h                                 |       5 -
 gnu/dist/gdb/config/powerpc/aix.mh                             |      15 -
 gnu/dist/gdb/config/powerpc/aix.mt                             |       3 -
 gnu/dist/gdb/config/powerpc/cygwin32.mh                        |       6 -
 gnu/dist/gdb/config/powerpc/cygwin32.mt                        |       6 -
 gnu/dist/gdb/config/powerpc/gdbserve.mt                        |       3 -
 gnu/dist/gdb/config/powerpc/linux.mh                           |      15 -
 gnu/dist/gdb/config/powerpc/macos.mh                           |       4 -
 gnu/dist/gdb/config/powerpc/macos.mt                           |       3 -
 gnu/dist/gdb/config/powerpc/nbsd.mh                            |       6 -
 gnu/dist/gdb/config/powerpc/nbsd.mt                            |       3 -
 gnu/dist/gdb/config/powerpc/nm-aix.h                           |      22 -
 gnu/dist/gdb/config/powerpc/nm-macos.h                         |      20 -
 gnu/dist/gdb/config/powerpc/nm-nbsd.h                          |      25 -
 gnu/dist/gdb/config/powerpc/nm-solaris.h                       |      30 -
 gnu/dist/gdb/config/powerpc/ppc-eabi.mt                        |       3 -
 gnu/dist/gdb/config/powerpc/ppc-nw.mt                          |       3 -
 gnu/dist/gdb/config/powerpc/ppc-sim.mt                         |       4 -
 gnu/dist/gdb/config/powerpc/ppcle-eabi.mt                      |       3 -
 gnu/dist/gdb/config/powerpc/ppcle-sim.mt                       |       4 -
 gnu/dist/gdb/config/powerpc/solaris.mh                         |      23 -
 gnu/dist/gdb/config/powerpc/solaris.mt                         |       3 -
 gnu/dist/gdb/config/powerpc/tm-cygwin32.h                      |      21 -
 gnu/dist/gdb/config/powerpc/tm-macos.h                         |      26 -
 gnu/dist/gdb/config/powerpc/tm-nbsd.h                          |      54 -
 gnu/dist/gdb/config/powerpc/tm-ppc-aix.h                       |      28 -
 gnu/dist/gdb/config/powerpc/tm-ppc-eabi.h                      |      51 -
 gnu/dist/gdb/config/powerpc/tm-ppc-nw.h                        |      31 -
 gnu/dist/gdb/config/powerpc/tm-ppc-sim.h                       |      26 -
 gnu/dist/gdb/config/powerpc/tm-ppcle-eabi.h                    |      30 -
 gnu/dist/gdb/config/powerpc/tm-ppcle-sim.h                     |      26 -
 gnu/dist/gdb/config/powerpc/tm-solaris.h                       |      74 -
 gnu/dist/gdb/config/powerpc/xm-aix.h                           |      30 -
 gnu/dist/gdb/config/powerpc/xm-cygwin32.h                      |      36 -
 gnu/dist/gdb/config/powerpc/xm-linux.h                         |      21 -
 gnu/dist/gdb/config/powerpc/xm-mpw.h                           |      22 -
 gnu/dist/gdb/config/powerpc/xm-solaris.h                       |      21 -
 gnu/dist/gdb/config/pyr/pyramid.mh                             |       8 -
 gnu/dist/gdb/config/pyr/pyramid.mt                             |       3 -
 gnu/dist/gdb/config/pyr/tm-pyr.h                               |     493 -
 gnu/dist/gdb/config/pyr/xm-pyr.h                               |      92 -
 gnu/dist/gdb/config/romp/rtbsd.mh                              |       8 -
 gnu/dist/gdb/config/romp/xm-rtbsd.h                            |      40 -
 gnu/dist/gdb/config/rs6000/aix4.mh                             |      15 -
 gnu/dist/gdb/config/rs6000/aix4.mt                             |       3 -
 gnu/dist/gdb/config/rs6000/nm-rs6000.h                         |      60 -
 gnu/dist/gdb/config/rs6000/nm-rs6000ly.h                       |      25 -
 gnu/dist/gdb/config/rs6000/rs6000.mh                           |      15 -
 gnu/dist/gdb/config/rs6000/rs6000.mt                           |       3 -
 gnu/dist/gdb/config/rs6000/rs6000lynx.mh                       |      11 -
 gnu/dist/gdb/config/rs6000/rs6000lynx.mt                       |       3 -
 gnu/dist/gdb/config/rs6000/tm-rs6000-aix4.h                    |      26 -
 gnu/dist/gdb/config/rs6000/tm-rs6000.h                         |     659 -
 gnu/dist/gdb/config/rs6000/tm-rs6000ly.h                       |      32 -
 gnu/dist/gdb/config/rs6000/xm-aix4.h                           |      26 -
 gnu/dist/gdb/config/rs6000/xm-rs6000.h                         |     106 -
 gnu/dist/gdb/config/rs6000/xm-rs6000ly.h                       |      29 -
 gnu/dist/gdb/config/sh/sh.mt                                   |       6 -
 gnu/dist/gdb/config/sh/tm-sh.h                                 |     290 -
 gnu/dist/gdb/config/sparc/linux.mh                             |       7 -
 gnu/dist/gdb/config/sparc/linux.mt                             |       3 -
 gnu/dist/gdb/config/sparc/nbsd.mh                              |       6 -
 gnu/dist/gdb/config/sparc/nbsd.mt                              |       3 -
 gnu/dist/gdb/config/sparc/nm-linux.h                           |      34 -
 gnu/dist/gdb/config/sparc/nm-nbsd.h                            |      26 -
 gnu/dist/gdb/config/sparc/nm-sparclynx.h                       |      25 -
 gnu/dist/gdb/config/sparc/nm-sun4os4.h                         |      35 -
 gnu/dist/gdb/config/sparc/nm-sun4sol2.h                        |      45 -
 gnu/dist/gdb/config/sparc/sp64.mt                              |       9 -
 gnu/dist/gdb/config/sparc/sp64sim.mt                           |      13 -
 gnu/dist/gdb/config/sparc/sp64sol2.mt                          |       3 -
 gnu/dist/gdb/config/sparc/sparc-em.mt                          |       3 -
 gnu/dist/gdb/config/sparc/sparclet.mt                          |       3 -
 gnu/dist/gdb/config/sparc/sparclite.mt                         |       3 -
 gnu/dist/gdb/config/sparc/sparclynx.mh                         |      11 -
 gnu/dist/gdb/config/sparc/sparclynx.mt                         |       3 -
 gnu/dist/gdb/config/sparc/sun4os4.mh                           |      11 -
 gnu/dist/gdb/config/sparc/sun4os4.mt                           |       3 -
 gnu/dist/gdb/config/sparc/sun4sol2.mh                          |      23 -
 gnu/dist/gdb/config/sparc/sun4sol2.mt                          |       3 -
 gnu/dist/gdb/config/sparc/tm-linux.h                           |      29 -
 gnu/dist/gdb/config/sparc/tm-nbsd.h                            |      31 -
 gnu/dist/gdb/config/sparc/tm-sp64.h                            |     283 -
 gnu/dist/gdb/config/sparc/tm-sp64sim.h                         |      50 -
 gnu/dist/gdb/config/sparc/tm-sparc.h                           |     650 -
 gnu/dist/gdb/config/sparc/tm-sparclet.h                        |     132 -
 gnu/dist/gdb/config/sparc/tm-sparclite.h                       |      93 -
 gnu/dist/gdb/config/sparc/tm-sparclynx.h                       |      36 -
 gnu/dist/gdb/config/sparc/tm-spc-em.h                          |      46 -
 gnu/dist/gdb/config/sparc/tm-sun4os4.h                         |      58 -
 gnu/dist/gdb/config/sparc/tm-sun4sol2.h                        |      94 -
 gnu/dist/gdb/config/sparc/tm-vxsparc.h                         |      36 -
 gnu/dist/gdb/config/sparc/vxsparc.mt                           |       3 -
 gnu/dist/gdb/config/sparc/xm-linux.h                           |      48 -
 gnu/dist/gdb/config/sparc/xm-nbsd.h                            |      21 -
 gnu/dist/gdb/config/sparc/xm-sparc.h                           |      22 -
 gnu/dist/gdb/config/sparc/xm-sparclynx.h                       |      24 -
 gnu/dist/gdb/config/sparc/xm-sun4os4.h                         |      34 -
 gnu/dist/gdb/config/sparc/xm-sun4sol2.h                        |      43 -
 gnu/dist/gdb/config/tahoe/tahoe.mh                             |       4 -
 gnu/dist/gdb/config/tahoe/tahoe.mt                             |       3 -
 gnu/dist/gdb/config/tahoe/tm-tahoe.h                           |     293 -
 gnu/dist/gdb/config/tahoe/xm-tahoe.h                           |     136 -
 gnu/dist/gdb/config/tm-nbsd.h                                  |      29 -
 gnu/dist/gdb/config/v850/tm-v850.h                             |     160 -
 gnu/dist/gdb/config/v850/v850.mt                               |       5 -
 gnu/dist/gdb/config/vax/nbsd.mh                                |       6 -
 gnu/dist/gdb/config/vax/nbsd.mt                                |       3 -
 gnu/dist/gdb/config/vax/nm-nbsd.h                              |      21 -
 gnu/dist/gdb/config/vax/nm-vax.h                               |      28 -
 gnu/dist/gdb/config/vax/tm-nbsd.h                              |      26 -
 gnu/dist/gdb/config/vax/tm-vax.h                               |     334 -
 gnu/dist/gdb/config/vax/vax.mt                                 |       3 -
 gnu/dist/gdb/config/vax/vaxbsd.mh                              |      13 -
 gnu/dist/gdb/config/vax/vaxult.mh                              |       7 -
 gnu/dist/gdb/config/vax/vaxult2.mh                             |       7 -
 gnu/dist/gdb/config/vax/xm-nbsd.h                              |      21 -
 gnu/dist/gdb/config/vax/xm-vax.h                               |      81 -
 gnu/dist/gdb/config/vax/xm-vaxbsd.h                            |      10 -
 gnu/dist/gdb/config/vax/xm-vaxult.h                            |      12 -
 gnu/dist/gdb/config/vax/xm-vaxult2.h                           |      11 -
 gnu/dist/gdb/config/w65/tm-w65.h                               |     220 -
 gnu/dist/gdb/config/w65/w65.mt                                 |       8 -
 gnu/dist/gdb/config/xm-aix4.h                                  |      96 -
 gnu/dist/gdb/config/xm-lynx.h                                  |      20 -
 gnu/dist/gdb/config/xm-mpw.h                                   |      81 -
 gnu/dist/gdb/config/xm-nbsd.h                                  |      32 -
 gnu/dist/gdb/config/xm-sysv4.h                                 |      39 -
 gnu/dist/gdb/config/z8k/tm-z8k.h                               |     287 -
 gnu/dist/gdb/config/z8k/z8k.mt                                 |       7 -
 gnu/dist/gdb/configure                                         |    3372 -
 gnu/dist/gdb/configure.host                                    |     161 -
 gnu/dist/gdb/configure.in                                      |     467 -
 gnu/dist/gdb/configure.tgt                                     |     274 -
 gnu/dist/gdb/convex-tdep.c                                     |    1217 -
 gnu/dist/gdb/convex-xdep.c                                     |     966 -
 gnu/dist/gdb/copying.awk                                       |      77 -
 gnu/dist/gdb/copying.c                                         |     327 -
 gnu/dist/gdb/core-aout.c                                       |     143 -
 gnu/dist/gdb/core-regset.c                                     |     132 -
 gnu/dist/gdb/core-sol2.c                                       |     135 -
 gnu/dist/gdb/corefile.c                                        |     405 -
 gnu/dist/gdb/corelow.c                                         |     433 -
 gnu/dist/gdb/cp-valprint.c                                     |     611 -
 gnu/dist/gdb/cpu32bug-rom.c                                    |     171 -
 gnu/dist/gdb/cxux-nat.c                                        |     523 -
 gnu/dist/gdb/d10v-tdep.c                                       |    1030 -
 gnu/dist/gdb/dbug-rom.c                                        |     169 -
 gnu/dist/gdb/dbxread.c                                         |    2705 -
 gnu/dist/gdb/dcache.c                                          |     557 -
 gnu/dist/gdb/dcache.h                                          |      50 -
 gnu/dist/gdb/debugify.c                                        |     109 -
 gnu/dist/gdb/debugify.h                                        |      83 -
 gnu/dist/gdb/defs.h                                            |    1098 -
 gnu/dist/gdb/delta68-nat.c                                     |      86 -
 gnu/dist/gdb/demangle.c                                        |     209 -
 gnu/dist/gdb/dink32-rom.c                                      |     198 -
 gnu/dist/gdb/doc/LRS                                           |     197 -
 gnu/dist/gdb/doc/Makefile.in                                   |     342 -
 gnu/dist/gdb/doc/a4rc.sed                                      |      11 -
 gnu/dist/gdb/doc/all-cfg.texi                                  |     121 -
 gnu/dist/gdb/doc/annotate.texi                                 |     717 -
 gnu/dist/gdb/doc/configure                                     |     792 -
 gnu/dist/gdb/doc/configure.in                                  |       4 -
 gnu/dist/gdb/doc/gdb.html                                      |   12900 -
 gnu/dist/gdb/doc/gdb.texinfo                                   |    9312 -
 gnu/dist/gdb/doc/gdb_foot.html                                 |      45 -
 gnu/dist/gdb/doc/gdb_toc.html                                  |     242 -
 gnu/dist/gdb/doc/gdbint.texinfo                                |    2410 -
 gnu/dist/gdb/doc/h8-cfg.texi                                   |      47 -
 gnu/dist/gdb/doc/libgdb.texinfo                                |     878 -
 gnu/dist/gdb/doc/lpsrc.sed                                     |      13 -
 gnu/dist/gdb/doc/psrc.sed                                      |      13 -
 gnu/dist/gdb/doc/refcard.tex                                   |     645 -
 gnu/dist/gdb/doc/remote.texi                                   |    1708 -
 gnu/dist/gdb/doc/stabs.texinfo                                 |    4014 -
 gnu/dist/gdb/dpx2-nat.c                                        |      83 -
 gnu/dist/gdb/dsrec.c                                           |     312 -
 gnu/dist/gdb/dst.h                                             |    1659 -
 gnu/dist/gdb/dstread.c                                         |    1665 -
 gnu/dist/gdb/dve3900-rom.c                                     |     962 -
 gnu/dist/gdb/dwarf2read.c                                      |    5853 -
 gnu/dist/gdb/dwarfread.c                                       |    3909 -
 gnu/dist/gdb/elfread.c                                         |     850 -
 gnu/dist/gdb/environ.c                                         |     194 -
 gnu/dist/gdb/environ.h                                         |      58 -
 gnu/dist/gdb/eval.c                                            |    1838 -
 gnu/dist/gdb/exc_request.defs                                  |      51 -
 gnu/dist/gdb/exec.c                                            |     741 -
 gnu/dist/gdb/expprint.c                                        |     634 -
 gnu/dist/gdb/expression.h                                      |     385 -
 gnu/dist/gdb/f-exp.y                                           |    1174 -
 gnu/dist/gdb/f-lang.c                                          |     971 -
 gnu/dist/gdb/f-lang.h                                          |      94 -
 gnu/dist/gdb/f-typeprint.c                                     |     456 -
 gnu/dist/gdb/f-valprint.c                                      |     761 -
 gnu/dist/gdb/findvar.c                                         |    1505 -
 gnu/dist/gdb/fork-child.c                                      |     311 -
 gnu/dist/gdb/frame.h                                           |     232 -
 gnu/dist/gdb/gdb-stabs.h                                       |      92 -
 gnu/dist/gdb/gdb.1                                             |     374 -
 gnu/dist/gdb/gdb.gdb                                           |      35 -
 gnu/dist/gdb/gdb_stat.h                                        |      68 -
 gnu/dist/gdb/gdb_string.h                                      |      68 -
 gnu/dist/gdb/gdba.el                                           |    2607 -
 gnu/dist/gdb/gdbcmd.h                                          |     106 -
 gnu/dist/gdb/gdbcore.h                                         |     158 -
 gnu/dist/gdb/gdbinit.in                                        |      18 -
 gnu/dist/gdb/gdbserver/Makefile.in                             |     236 -
 gnu/dist/gdb/gdbserver/README                                  |     127 -
 gnu/dist/gdb/gdbserver/configure.in                            |     100 -
 gnu/dist/gdb/gdbserver/gdbreplay.c                             |     317 -
 gnu/dist/gdb/gdbserver/gdbserver.1                             |     103 -
 gnu/dist/gdb/gdbserver/low-hppabsd.c                           |     379 -
 gnu/dist/gdb/gdbserver/low-linux.c                             |     418 -
 gnu/dist/gdb/gdbserver/low-lynx.c                              |     746 -
 gnu/dist/gdb/gdbserver/low-sim.c                               |     281 -
 gnu/dist/gdb/gdbserver/low-sparc.c                             |     334 -
 gnu/dist/gdb/gdbserver/low-sun3.c                              |     313 -
 gnu/dist/gdb/gdbserver/remote-utils.c                          |     523 -
 gnu/dist/gdb/gdbserver/server.c                                |     253 -
 gnu/dist/gdb/gdbserver/server.h                                |      70 -
 gnu/dist/gdb/gdbserver/utils.c                                 |     114 -
 gnu/dist/gdb/gdbthread.h                                       |      49 -
 gnu/dist/gdb/gdbtypes.c                                        |    1925 -
 gnu/dist/gdb/gdbtypes.h                                        |     825 -
 gnu/dist/gdb/gnu-nat.c                                         |    3170 -
 gnu/dist/gdb/gnu-nat.h                                         |      94 -
 gnu/dist/gdb/gnu-regex.c                                       |    1759 -
 gnu/dist/gdb/gnu-regex.h                                       |     181 -
 gnu/dist/gdb/go32-xdep.c                                       |      35 -
 gnu/dist/gdb/gould-tdep.c                                      |     291 -
 gnu/dist/gdb/gould-xdep.c                                      |     130 -
 gnu/dist/gdb/h8300-tdep.c                                      |     896 -
 gnu/dist/gdb/h8500-tdep.c                                      |     678 -
 gnu/dist/gdb/hp300ux-nat.c                                     |     221 -
 gnu/dist/gdb/hppa-tdep.c                                       |    2873 -
 gnu/dist/gdb/hppab-nat.c                                       |     215 -
 gnu/dist/gdb/hppah-nat.c                                       |     226 -
 gnu/dist/gdb/hppam3-nat.c                                      |     141 -
 gnu/dist/gdb/hpread.c                                          |    2050 -
 gnu/dist/gdb/hpux-thread.c                                     |     638 -
 gnu/dist/gdb/i386-stub.c                                       |     915 -
 gnu/dist/gdb/i386-tdep.c                                       |     721 -
 gnu/dist/gdb/i386aix-nat.c                                     |     362 -
 gnu/dist/gdb/i386b-nat.c                                       |     284 -
 gnu/dist/gdb/i386gnu-nat.c                                     |     357 -
 gnu/dist/gdb/i386ly-tdep.c                                     |      43 -
 gnu/dist/gdb/i386m3-nat.c                                      |     421 -
 gnu/dist/gdb/i386mach-nat.c                                    |     163 -
 gnu/dist/gdb/i386nbsd-nat.c                                    |     280 -
 gnu/dist/gdb/i386v-nat.c                                       |     371 -
 gnu/dist/gdb/i386v4-nat.c                                      |     156 -
 gnu/dist/gdb/i387-tdep.c                                       |     107 -
 gnu/dist/gdb/i960-tdep.c                                       |     817 -
 gnu/dist/gdb/infcmd.c                                          |    1414 -
 gnu/dist/gdb/inferior.h                                        |     390 -
 gnu/dist/gdb/inflow.c                                          |     751 -
 gnu/dist/gdb/infptrace.c                                       |     560 -
 gnu/dist/gdb/infrun.c                                          |    2312 -
 gnu/dist/gdb/inftarg.c                                         |     411 -
 gnu/dist/gdb/irix4-nat.c                                       |     195 -
 gnu/dist/gdb/irix5-nat.c                                       |    1328 -
 gnu/dist/gdb/isi-xdep.c                                        |      20 -
 gnu/dist/gdb/jv-exp.y                                          |    1450 -
 gnu/dist/gdb/jv-lang.c                                         |     998 -
 gnu/dist/gdb/jv-lang.h                                         |      68 -
 gnu/dist/gdb/jv-typeprint.c                                    |     301 -
 gnu/dist/gdb/jv-valprint.c                                     |     437 -
 gnu/dist/gdb/kcore-nbsd.c                                      |     474 -
 gnu/dist/gdb/kdb-start.c                                       |      35 -
 gnu/dist/gdb/language.c                                        |    1414 -
 gnu/dist/gdb/language.h                                        |     431 -
 gnu/dist/gdb/lynx-nat.c                                        |     837 -
 gnu/dist/gdb/m2-exp.y                                          |    1094 -
 gnu/dist/gdb/m2-lang.c                                         |     470 -
 gnu/dist/gdb/m2-lang.h                                         |      31 -
 gnu/dist/gdb/m2-typeprint.c                                    |      49 -
 gnu/dist/gdb/m2-valprint.c                                     |      46 -
 gnu/dist/gdb/m3-nat.c                                          |    4642 -
 gnu/dist/gdb/m32r-rom.c                                        |     575 -
 gnu/dist/gdb/m32r-stub.c                                       |    1621 -
 gnu/dist/gdb/m32r-tdep.c                                       |     478 -
 gnu/dist/gdb/m68k-stub.c                                       |    1014 -
 gnu/dist/gdb/m68k-tdep.c                                       |     569 -
 gnu/dist/gdb/m68knbsd-nat.c                                    |     172 -
 gnu/dist/gdb/m88k-nat.c                                        |     285 -
 gnu/dist/gdb/m88k-tdep.c                                       |     616 -
 gnu/dist/gdb/mac-defs.h                                        |      34 -
 gnu/dist/gdb/mac-gdb.r                                         |     184 -
 gnu/dist/gdb/mac-nat.c                                         |     386 -
 gnu/dist/gdb/mac-xdep.c                                        |    1087 -
 gnu/dist/gdb/main.c                                            |     650 -
 gnu/dist/gdb/maint.c                                           |     449 -
 gnu/dist/gdb/mdebugread.c                                      |    4453 -
 gnu/dist/gdb/mem-break.c                                       |     162 -
 gnu/dist/gdb/minimon.h                                         |     562 -
 gnu/dist/gdb/minsyms.c                                         |     884 -
 gnu/dist/gdb/mips-nat.c                                        |     244 -
 gnu/dist/gdb/mips-tdep.c                                       |    2957 -
 gnu/dist/gdb/mipsm3-nat.c                                      |     386 -
 gnu/dist/gdb/mipsnbsd-nat.c                                    |     185 -
 gnu/dist/gdb/mipsread.c                                        |     446 -
 gnu/dist/gdb/mipsv4-nat.c                                      |     159 -
 gnu/dist/gdb/mn10200-tdep.c                                    |     906 -
 gnu/dist/gdb/mn10300-tdep.c                                    |     748 -
 gnu/dist/gdb/mon960-rom.c                                      |     269 -
 gnu/dist/gdb/monitor.c                                         |    1820 -
 gnu/dist/gdb/monitor.h                                         |     223 -
 gnu/dist/gdb/msg.defs                                          |       1 -
 gnu/dist/gdb/msg_reply.defs                                    |       1 -
 gnu/dist/gdb/news-xdep.c                                       |      65 -
 gnu/dist/gdb/nindy-share/Makefile                              |     117 -
 gnu/dist/gdb/nindy-share/Onindy.c                              |     743 -
 gnu/dist/gdb/nindy-share/README                                |       3 -
 gnu/dist/gdb/nindy-share/VERSION                               |       1 -
 gnu/dist/gdb/nindy-share/b.out.h                               |     158 -
 gnu/dist/gdb/nindy-share/block_io.h                            |      68 -
 gnu/dist/gdb/nindy-share/coff.h                                |     336 -
 gnu/dist/gdb/nindy-share/env.h                                 |      12 -
 gnu/dist/gdb/nindy-share/nindy.c                               |    1154 -
 gnu/dist/gdb/nindy-share/stop.h                                |      86 -
 gnu/dist/gdb/nindy-share/ttyflush.c                            |      53 -
 gnu/dist/gdb/nindy-tdep.c                                      |      74 -
 gnu/dist/gdb/nlm/Makefile.in                                   |     172 -
 gnu/dist/gdb/nlm/configure                                     |    1001 -
 gnu/dist/gdb/nlm/configure.in                                  |      55 -
 gnu/dist/gdb/nlm/gdbserve.c                                    |    1056 -
 gnu/dist/gdb/nlm/gdbserve.def                                  |      42 -
 gnu/dist/gdb/nlm/i386.c                                        |     108 -
 gnu/dist/gdb/nlm/i386.h                                        |      13 -
 gnu/dist/gdb/nlm/ppc.c                                         |     257 -
 gnu/dist/gdb/nlm/ppc.h                                         |     165 -
 gnu/dist/gdb/nlm/prelude.c                                     |      67 -
 gnu/dist/gdb/nlmread.c                                         |     261 -
 gnu/dist/gdb/notify.defs                                       |       1 -
 gnu/dist/gdb/ns32k-tdep.c                                      |     159 -
 gnu/dist/gdb/ns32km3-nat.c                                     |     183 -
 gnu/dist/gdb/ns32knbsd-nat.c                                   |     353 -
 gnu/dist/gdb/objfiles.c                                        |     936 -
 gnu/dist/gdb/objfiles.h                                        |     518 -
 gnu/dist/gdb/ocd.c                                             |    1438 -
 gnu/dist/gdb/ocd.h                                             |     139 -
 gnu/dist/gdb/op50-rom.c                                        |     146 -
 gnu/dist/gdb/os9kread.c                                        |    1623 -
 gnu/dist/gdb/osf-share/AT386/cma_thread_io.h                   |     457 -
 gnu/dist/gdb/osf-share/HP800/cma_thread_io.h                   |     432 -
 gnu/dist/gdb/osf-share/README                                  |       8 -
 gnu/dist/gdb/osf-share/RIOS/cma_thread_io.h                    |     434 -
 gnu/dist/gdb/osf-share/cma_attr.h                              |     341 -
 gnu/dist/gdb/osf-share/cma_deb_core.h                          |     164 -
 gnu/dist/gdb/osf-share/cma_debug_client.h                      |     195 -
 gnu/dist/gdb/osf-share/cma_errors.h                            |      55 -
 gnu/dist/gdb/osf-share/cma_handle.h                            |     182 -
 gnu/dist/gdb/osf-share/cma_init.h                              |     114 -
 gnu/dist/gdb/osf-share/cma_list.h                              |      84 -
 gnu/dist/gdb/osf-share/cma_mutex.h                             |     230 -
 gnu/dist/gdb/osf-share/cma_sched.h                             |     279 -
 gnu/dist/gdb/osf-share/cma_semaphore_defs.h                    |      46 -
 gnu/dist/gdb/osf-share/cma_sequence.h                          |      56 -
 gnu/dist/gdb/osf-share/cma_stack.h                             |      83 -
 gnu/dist/gdb/osf-share/cma_stack_int.h                         |     136 -
 gnu/dist/gdb/osf-share/cma_tcb_defs.h                          |     269 -
 gnu/dist/gdb/osf-share/cma_util.h                              |     125 -
 gnu/dist/gdb/osfsolib.c                                        |     973 -
 gnu/dist/gdb/parse.c                                           |    1010 -
 gnu/dist/gdb/parser-defs.h                                     |     194 -
 gnu/dist/gdb/partial-stab.h                                    |     809 -
 gnu/dist/gdb/ppc-bdm.c                                         |     359 -
 gnu/dist/gdb/ppcbug-rom.c                                      |     233 -
 gnu/dist/gdb/ppcnbsd-nat.c                                     |     140 -
 gnu/dist/gdb/printcmd.c                                        |    2451 -
 gnu/dist/gdb/process_reply.defs                                |       1 -
 gnu/dist/gdb/procfs.c                                          |    5785 -
 gnu/dist/gdb/ptx4-nat.c                                        |     209 -
 gnu/dist/gdb/pyr-tdep.c                                        |     452 -
 gnu/dist/gdb/pyr-xdep.c                                        |     370 -
 gnu/dist/gdb/rdi-share/Makefile.in                             |     165 -
 gnu/dist/gdb/rdi-share/README.CYGNUS                           |       6 -
 gnu/dist/gdb/rdi-share/adp.h                                   |    2526 -
 gnu/dist/gdb/rdi-share/adperr.h                                |      72 -
 gnu/dist/gdb/rdi-share/angel.h                                 |     175 -
 gnu/dist/gdb/rdi-share/ardi.c                                  |    2670 -
 gnu/dist/gdb/rdi-share/ardi.h                                  |      83 -
 gnu/dist/gdb/rdi-share/armdbg.h                                |    1450 -
 gnu/dist/gdb/rdi-share/buffers.h                               |     109 -
 gnu/dist/gdb/rdi-share/bytesex.c                               |      55 -
 gnu/dist/gdb/rdi-share/bytesex.h                               |      40 -
 gnu/dist/gdb/rdi-share/chandefs.h                              |      48 -
 gnu/dist/gdb/rdi-share/channels.h                              |     382 -
 gnu/dist/gdb/rdi-share/chanpriv.h                              |      55 -
 gnu/dist/gdb/rdi-share/configure.in                            |      44 -
 gnu/dist/gdb/rdi-share/crc.c                                   |     255 -
 gnu/dist/gdb/rdi-share/crc.h                                   |      88 -
 gnu/dist/gdb/rdi-share/dbg_conf.h                              |      52 -
 gnu/dist/gdb/rdi-share/dbg_cp.h                                |      60 -
 gnu/dist/gdb/rdi-share/dbg_hif.h                               |      54 -
 gnu/dist/gdb/rdi-share/dbg_rdi.h                               |     509 -
 gnu/dist/gdb/rdi-share/devclnt.h                               |     258 -
 gnu/dist/gdb/rdi-share/devices.h                               |     102 -
 gnu/dist/gdb/rdi-share/devsw.c                                 |     398 -
 gnu/dist/gdb/rdi-share/devsw.h                                 |     266 -
 gnu/dist/gdb/rdi-share/drivers.c                               |      32 -
 gnu/dist/gdb/rdi-share/drivers.h                               |     191 -
 gnu/dist/gdb/rdi-share/endian.h                                |     123 -
 gnu/dist/gdb/rdi-share/etherdrv.c                              |     723 -
 gnu/dist/gdb/rdi-share/ethernet.h                              |      97 -
 gnu/dist/gdb/rdi-share/host.h                                  |     222 -
 gnu/dist/gdb/rdi-share/hostchan.c                              |    1055 -
 gnu/dist/gdb/rdi-share/hostchan.h                              |     298 -
 gnu/dist/gdb/rdi-share/hsys.c                                  |     913 -
 gnu/dist/gdb/rdi-share/hsys.h                                  |      99 -
 gnu/dist/gdb/rdi-share/logging.c                               |     367 -
 gnu/dist/gdb/rdi-share/logging.h                               |     119 -
 gnu/dist/gdb/rdi-share/msgbuild.c                              |     280 -
 gnu/dist/gdb/rdi-share/msgbuild.h                              |      73 -
 gnu/dist/gdb/rdi-share/params.c                                |     323 -
 gnu/dist/gdb/rdi-share/params.h                                |     179 -
 gnu/dist/gdb/rdi-share/rx.c                                    |     359 -
 gnu/dist/gdb/rdi-share/rxtx.h                                  |     261 -
 gnu/dist/gdb/rdi-share/serdrv.c                                |     647 -
 gnu/dist/gdb/rdi-share/serpardr.c                              |     728 -
 gnu/dist/gdb/rdi-share/sys.h                                   |     317 -
 gnu/dist/gdb/rdi-share/tx.c                                    |     174 -
 gnu/dist/gdb/rdi-share/unixcomm.c                              |     533 -
 gnu/dist/gdb/rdi-share/unixcomm.h                              |     210 -
 gnu/dist/gdb/remote-adapt.c                                    |    1359 -
 gnu/dist/gdb/remote-array.c                                    |    1466 -
 gnu/dist/gdb/remote-bug.c                                      |    1053 -
 gnu/dist/gdb/remote-e7000.c                                    |    2231 -
 gnu/dist/gdb/remote-eb.c                                       |    1009 -
 gnu/dist/gdb/remote-es.c                                       |    2152 -
 gnu/dist/gdb/remote-est.c                                      |     175 -
 gnu/dist/gdb/remote-hms.c                                      |    1463 -
 gnu/dist/gdb/remote-mips.c                                     |    3626 -
 gnu/dist/gdb/remote-mm.c                                       |    1627 -
 gnu/dist/gdb/remote-nindy.c                                    |     810 -
 gnu/dist/gdb/remote-nrom.c                                     |     332 -
 gnu/dist/gdb/remote-os9k.c                                     |    1232 -
 gnu/dist/gdb/remote-rdi.c                                      |     979 -
 gnu/dist/gdb/remote-rdp.c                                      |    1448 -
 gnu/dist/gdb/remote-sds.c                                      |    1214 -
 gnu/dist/gdb/remote-sim.h                                      |     142 -
 gnu/dist/gdb/remote-st.c                                       |     847 -
 gnu/dist/gdb/remote-udi.c                                      |    1689 -
 gnu/dist/gdb/remote-utils.c                                    |     649 -
 gnu/dist/gdb/remote-utils.h                                    |     142 -
 gnu/dist/gdb/remote-vx.c                                       |    1462 -
 gnu/dist/gdb/remote-vx29k.c                                    |     188 -
 gnu/dist/gdb/remote-vx68.c                                     |     158 -
 gnu/dist/gdb/remote-vx960.c                                    |     163 -
 gnu/dist/gdb/remote-vxmips.c                                   |     201 -
 gnu/dist/gdb/remote-vxsparc.c                                  |     196 -
 gnu/dist/gdb/remote.c                                          |    2014 -
 gnu/dist/gdb/reply_mig_hack.awk                                |     123 -
 gnu/dist/gdb/rom68k-rom.c                                      |     173 -
 gnu/dist/gdb/rs6000-nat.c                                      |     824 -
 gnu/dist/gdb/rs6000-tdep.c                                     |    1227 -
 gnu/dist/gdb/saber.suppress                                    |     451 -
 gnu/dist/gdb/scm-exp.c                                         |     423 -
 gnu/dist/gdb/scm-lang.c                                        |     272 -
 gnu/dist/gdb/scm-lang.h                                        |      50 -
 gnu/dist/gdb/scm-tags.h                                        |     385 -
 gnu/dist/gdb/scm-valprint.c                                    |     421 -
 gnu/dist/gdb/ser-e7kpc.c                                       |     470 -
 gnu/dist/gdb/ser-go32.c                                        |     957 -
 gnu/dist/gdb/ser-mac.c                                         |     361 -
 gnu/dist/gdb/ser-ocd.c                                         |     206 -
 gnu/dist/gdb/ser-tcp.c                                         |     351 -
 gnu/dist/gdb/ser-unix.c                                        |     745 -
 gnu/dist/gdb/serial.c                                          |     523 -
 gnu/dist/gdb/serial.h                                          |     182 -
 gnu/dist/gdb/sh-stub.c                                         |    1553 -
 gnu/dist/gdb/sh-tdep.c                                         |     691 -
 gnu/dist/gdb/sh3-rom.c                                         |     398 -
 gnu/dist/gdb/signals.h                                         |      27 -
 gnu/dist/gdb/sol-thread.c                                      |    1642 -
 gnu/dist/gdb/solib.c                                           |    1897 -
 gnu/dist/gdb/solib.h                                           |      72 -
 gnu/dist/gdb/somread.c                                         |     465 -
 gnu/dist/gdb/somsolib.c                                        |     841 -
 gnu/dist/gdb/somsolib.h                                        |      51 -
 gnu/dist/gdb/source.c                                          |    1541 -
 gnu/dist/gdb/sp64nbsd-nat.c                                    |     428 -
 gnu/dist/gdb/sparc-nat.c                                       |     328 -
 gnu/dist/gdb/sparc-stub.c                                      |     847 -
 gnu/dist/gdb/sparc-tdep.c                                      |    1589 -
 gnu/dist/gdb/sparcl-stub.c                                     |    1024 -
 gnu/dist/gdb/sparcl-tdep.c                                     |     885 -
 gnu/dist/gdb/sparclet-rom.c                                    |     300 -
 gnu/dist/gdb/sparclet-stub.c                                   |    1233 -
 gnu/dist/gdb/sparcnbsd-nat.c                                   |     408 -
 gnu/dist/gdb/srec.h                                            |      36 -
 gnu/dist/gdb/stabsread.c                                       |    5138 -
 gnu/dist/gdb/stabsread.h                                       |     249 -
 gnu/dist/gdb/stack.c                                           |    1504 -
 gnu/dist/gdb/standalone.c                                      |     593 -
 gnu/dist/gdb/stop-gdb.c                                        |     110 -
 gnu/dist/gdb/stuff.c                                           |     174 -
 gnu/dist/gdb/sun3-nat.c                                        |     157 -
 gnu/dist/gdb/sun386-nat.c                                      |     258 -
 gnu/dist/gdb/symfile.c                                         |    2675 -
 gnu/dist/gdb/symfile.h                                         |     281 -
 gnu/dist/gdb/symm-nat.c                                        |     846 -
 gnu/dist/gdb/symm-tdep.c                                       |      93 -
 gnu/dist/gdb/symmisc.c                                         |    1088 -
 gnu/dist/gdb/symtab.c                                          |    3560 -
 gnu/dist/gdb/symtab.h                                          |    1371 -
 gnu/dist/gdb/tahoe-tdep.c                                      |     234 -
 gnu/dist/gdb/target.c                                          |    2030 -
 gnu/dist/gdb/target.h                                          |     793 -
 gnu/dist/gdb/terminal.h                                        |      92 -
 gnu/dist/gdb/thread.c                                          |     552 -
 gnu/dist/gdb/top.c                                             |    3865 -
 gnu/dist/gdb/top.h                                             |      60 -
 gnu/dist/gdb/tracepoint.c                                      |    2598 -
 gnu/dist/gdb/tracepoint.h                                      |     114 -
 gnu/dist/gdb/typeprint.c                                       |     302 -
 gnu/dist/gdb/typeprint.h                                       |      21 -
 gnu/dist/gdb/ultra3-nat.c                                      |     329 -
 gnu/dist/gdb/ultra3-xdep.c                                     |     128 -
 gnu/dist/gdb/umax-xdep.c                                       |     133 -
 gnu/dist/gdb/utils.c                                           |    2639 -
 gnu/dist/gdb/v850-tdep.c                                       |     594 -
 gnu/dist/gdb/v850ice.c                                         |     551 -
 gnu/dist/gdb/valarith.c                                        |    1253 -
 gnu/dist/gdb/valops.c                                          |    2512 -
 gnu/dist/gdb/valprint.c                                        |    1101 -
 gnu/dist/gdb/valprint.h                                        |      45 -
 gnu/dist/gdb/value.h                                           |     511 -
 gnu/dist/gdb/values.c                                          |    1457 -
 gnu/dist/gdb/vax-tdep.c                                        |     263 -
 gnu/dist/gdb/vaxnbsd-nat.c                                     |     130 -
 gnu/dist/gdb/w65-tdep.c                                        |     295 -
 gnu/dist/gdb/w89k-rom.c                                        |     321 -
 gnu/dist/gdb/win32-nat.c                                       |     981 -
 gnu/dist/gdb/xcoffread.c                                       |    2811 -
 gnu/dist/gdb/xcoffsolib.c                                      |     220 -
 gnu/dist/gdb/xcoffsolib.h                                      |      58 -
 gnu/dist/gdb/xmodem.c                                          |     284 -
 gnu/dist/gdb/xmodem.h                                          |      29 -
 gnu/dist/gdb/z8k-tdep.c                                        |     449 -
 gnu/dist/gprof/.gdbinit                                        |       1 -
 gnu/dist/gprof/Makefile.am                                     |      66 -
 gnu/dist/gprof/Makefile.in                                     |     543 -
 gnu/dist/gprof/NOTES                                           |     438 -
 gnu/dist/gprof/TEST                                            |       7 -
 gnu/dist/gprof/TODO                                            |      72 -
 gnu/dist/gprof/acconfig.h                                      |       9 -
 gnu/dist/gprof/aclocal.m4                                      |     458 -
 gnu/dist/gprof/alpha.c                                         |     168 -
 gnu/dist/gprof/basic_blocks.c                                  |     626 -
 gnu/dist/gprof/basic_blocks.h                                  |      23 -
 gnu/dist/gprof/bb_exit_func.c                                  |      78 -
 gnu/dist/gprof/bbconv.pl                                       |      36 -
 gnu/dist/gprof/bsd_callg_bl.c                                  |     118 -
 gnu/dist/gprof/bsd_callg_bl.m                                  |     108 -
 gnu/dist/gprof/call_graph.c                                    |     116 -
 gnu/dist/gprof/call_graph.h                                    |      12 -
 gnu/dist/gprof/cg_arcs.c                                       |     685 -
 gnu/dist/gprof/cg_arcs.h                                       |      36 -
 gnu/dist/gprof/cg_dfn.c                                        |     281 -
 gnu/dist/gprof/cg_dfn.h                                        |      17 -
 gnu/dist/gprof/cg_print.c                                      |    1275 -
 gnu/dist/gprof/cg_print.h                                      |      14 -
 gnu/dist/gprof/configure                                       |    2013 -
 gnu/dist/gprof/configure.in                                    |      35 -
 gnu/dist/gprof/core.c                                          |     744 -
 gnu/dist/gprof/core.h                                          |      21 -
 gnu/dist/gprof/flat_bl.c                                       |      37 -
 gnu/dist/gprof/flat_bl.m                                       |      27 -
 gnu/dist/gprof/fsf_callg_bl.c                                  |      93 -
 gnu/dist/gprof/fsf_callg_bl.m                                  |      83 -
 gnu/dist/gprof/gconfig.in                                      |      13 -
 gnu/dist/gprof/gen-c-prog.awk                                  |      26 -
 gnu/dist/gprof/gmon.h                                          |     142 -
 gnu/dist/gprof/gmon_io.c                                       |     414 -
 gnu/dist/gprof/gmon_io.h                                       |      20 -
 gnu/dist/gprof/gmon_out.h                                      |      51 -
 gnu/dist/gprof/gprof.1                                         |     252 -
 gnu/dist/gprof/gprof.c                                         |     650 -
 gnu/dist/gprof/gprof.h                                         |     131 -
 gnu/dist/gprof/gprof.texi                                      |    2023 -
 gnu/dist/gprof/hertz.c                                         |      54 -
 gnu/dist/gprof/hertz.h                                         |      22 -
 gnu/dist/gprof/hist.c                                          |     598 -
 gnu/dist/gprof/hist.h                                          |      23 -
 gnu/dist/gprof/i386.c                                          |     104 -
 gnu/dist/gprof/mips.c                                          |     107 -
 gnu/dist/gprof/search_list.c                                   |      44 -
 gnu/dist/gprof/search_list.h                                   |      20 -
 gnu/dist/gprof/source.c                                        |     223 -
 gnu/dist/gprof/source.h                                        |      55 -
 gnu/dist/gprof/sparc.c                                         |      88 -
 gnu/dist/gprof/stamp-h.in                                      |       1 -
 gnu/dist/gprof/sym_ids.c                                       |     372 -
 gnu/dist/gprof/sym_ids.h                                       |      25 -
 gnu/dist/gprof/symtab.c                                        |     269 -
 gnu/dist/gprof/symtab.h                                        |     111 -
 gnu/dist/gprof/tahoe.c                                         |     345 -
 gnu/dist/gprof/utils.c                                         |     106 -
 gnu/dist/gprof/utils.h                                         |       7 -
 gnu/dist/gprof/vax.c                                           |     350 -
 gnu/dist/grep/ABOUT-NLS                                        |     226 -
 gnu/dist/grep/AUTHORS                                          |      41 -
 gnu/dist/grep/COPYING                                          |     340 -
 gnu/dist/grep/ChangeLog                                        |     897 -
 gnu/dist/grep/INSTALL                                          |     182 -
 gnu/dist/grep/Makefile.am                                      |       7 -
 gnu/dist/grep/Makefile.in                                      |     378 -
 gnu/dist/grep/NEWS                                             |      99 -
 gnu/dist/grep/PATCHES-AC                                       |     243 -
 gnu/dist/grep/README                                           |      26 -
 gnu/dist/grep/THANKS                                           |      42 -
 gnu/dist/grep/TODO                                             |      62 -
 gnu/dist/grep/acconfig.h                                       |      30 -
 gnu/dist/grep/aclocal.m4                                       |     702 -
 gnu/dist/grep/config.hin                                       |     185 -
 gnu/dist/grep/configure                                        |    4574 -
 gnu/dist/grep/configure.in                                     |      80 -
 gnu/dist/grep/doc/Makefile.am                                  |      18 -
 gnu/dist/grep/doc/Makefile.in                                  |     406 -
 gnu/dist/grep/doc/egrep.man                                    |       1 -
 gnu/dist/grep/doc/fgrep.man                                    |       1 -
 gnu/dist/grep/doc/grep.1                                       |     477 -
 gnu/dist/grep/doc/grep.texi                                    |     672 -
 gnu/dist/grep/doc/mdate-sh                                     |      92 -
 gnu/dist/grep/doc/stamp-vti                                    |       3 -
 gnu/dist/grep/doc/version.texi                                 |       3 -
 gnu/dist/grep/install-sh                                       |     251 -
 gnu/dist/grep/intl/ChangeLog                                   |    1086 -
 gnu/dist/grep/intl/Makefile.in                                 |     217 -
 gnu/dist/grep/intl/VERSION                                     |       1 -
 gnu/dist/grep/intl/bindtextdom.c                               |     203 -
 gnu/dist/grep/intl/cat-compat.c                                |     262 -
 gnu/dist/grep/intl/dcgettext.c                                 |     624 -
 gnu/dist/grep/intl/dgettext.c                                  |      59 -
 gnu/dist/grep/intl/explodename.c                               |     188 -
 gnu/dist/grep/intl/finddomain.c                                |     216 -
 gnu/dist/grep/intl/gettext.c                                   |      70 -
 gnu/dist/grep/intl/gettext.h                                   |     105 -
 gnu/dist/grep/intl/gettextP.h                                  |      89 -
 gnu/dist/grep/intl/hash-string.h                               |      59 -
 gnu/dist/grep/intl/intl-compat.c                               |      76 -
 gnu/dist/grep/intl/l10nflist.c                                 |     411 -
 gnu/dist/grep/intl/libgettext.h                                |     182 -
 gnu/dist/grep/intl/linux-msg.sed                               |     100 -
 gnu/dist/grep/intl/loadinfo.h                                  |      76 -
 gnu/dist/grep/intl/loadmsgcat.c                                |     222 -
 gnu/dist/grep/intl/localealias.c                               |     424 -
 gnu/dist/grep/intl/po2tbl.sed.in                               |     102 -
 gnu/dist/grep/intl/textdomain.c                                |     108 -
 gnu/dist/grep/intl/xopen-msg.sed                               |     104 -
 gnu/dist/grep/missing                                          |     190 -
 gnu/dist/grep/mkinstalldirs                                    |      40 -
 gnu/dist/grep/po/ChangeLog                                     |       7 -
 gnu/dist/grep/po/Makefile.in.in                                |     248 -
 gnu/dist/grep/po/POTFILES.in                                   |       8 -
 gnu/dist/grep/po/cat-id-tbl.c                                  |     114 -
 gnu/dist/grep/po/de.gmo                                        |     Bin 
 gnu/dist/grep/po/de.po                                         |     366 -
 gnu/dist/grep/po/el.gmo                                        |     Bin 
 gnu/dist/grep/po/el.po                                         |     537 -
 gnu/dist/grep/po/es.gmo                                        |     Bin 
 gnu/dist/grep/po/es.po                                         |     412 -
 gnu/dist/grep/po/fr.gmo                                        |     Bin 
 gnu/dist/grep/po/fr.po                                         |     520 -
 gnu/dist/grep/po/grep.pot                                      |     306 -
 gnu/dist/grep/po/ko.gmo                                        |     Bin 
 gnu/dist/grep/po/ko.po                                         |     421 -
 gnu/dist/grep/po/nl.gmo                                        |     Bin 
 gnu/dist/grep/po/nl.po                                         |     321 -
 gnu/dist/grep/po/no.gmo                                        |     Bin 
 gnu/dist/grep/po/no.po                                         |     361 -
 gnu/dist/grep/po/pl.gmo                                        |     Bin 
 gnu/dist/grep/po/pl.po                                         |     370 -
 gnu/dist/grep/po/ru.gmo                                        |     Bin 
 gnu/dist/grep/po/ru.po                                         |     412 -
 gnu/dist/grep/po/sl.gmo                                        |     Bin 
 gnu/dist/grep/po/sl.po                                         |     320 -
 gnu/dist/grep/po/stamp-cat-id                                  |       1 -
 gnu/dist/grep/po/sv.gmo                                        |     Bin 
 gnu/dist/grep/po/sv.po                                         |     362 -
 gnu/dist/grep/src/Makefile.am                                  |      26 -
 gnu/dist/grep/src/Makefile.in                                  |     342 -
 gnu/dist/grep/src/alloca.c                                     |     504 -
 gnu/dist/grep/src/btowc.c                                      |      52 -
 gnu/dist/grep/src/dfa.c                                        |    2603 -
 gnu/dist/grep/src/dfa.h                                        |     371 -
 gnu/dist/grep/src/dosbuf.c                                     |     186 -
 gnu/dist/grep/src/egrepmat.c                                   |       6 -
 gnu/dist/grep/src/fgrepmat.c                                   |       6 -
 gnu/dist/grep/src/getopt.c                                     |    1004 -
 gnu/dist/grep/src/getopt.h                                     |     133 -
 gnu/dist/grep/src/getopt1.c                                    |     189 -
 gnu/dist/grep/src/getpagesize.h                                |      41 -
 gnu/dist/grep/src/grep.c                                       |    1333 -
 gnu/dist/grep/src/grep.h                                       |      48 -
 gnu/dist/grep/src/grepmat.c                                    |       6 -
 gnu/dist/grep/src/kwset.c                                      |     802 -
 gnu/dist/grep/src/kwset.h                                      |      57 -
 gnu/dist/grep/src/memchr.c                                     |     198 -
 gnu/dist/grep/src/obstack.c                                    |     593 -
 gnu/dist/grep/src/obstack.h                                    |     591 -
 gnu/dist/grep/src/regex.c                                      |    5829 -
 gnu/dist/grep/src/regex.h                                      |     572 -
 gnu/dist/grep/src/savedir.c                                    |     135 -
 gnu/dist/grep/src/savedir.h                                    |      15 -
 gnu/dist/grep/src/search.c                                     |     436 -
 gnu/dist/grep/src/stpcpy.c                                     |      52 -
 gnu/dist/grep/src/system.h                                     |     188 -
 gnu/dist/grep/src/vms_fab.c                                    |      88 -
 gnu/dist/grep/src/vms_fab.h                                    |      20 -
 gnu/dist/grep/stamp-h.in                                       |       1 -
 gnu/dist/include/COPYING                                       |     340 -
 gnu/dist/include/ansidecl.h                                    |     154 -
 gnu/dist/include/aout/adobe.h                                  |     297 -
 gnu/dist/include/aout/aout64.h                                 |     476 -
 gnu/dist/include/aout/ar.h                                     |      36 -
 gnu/dist/include/aout/dynix3.h                                 |      71 -
 gnu/dist/include/aout/encap.h                                  |     135 -
 gnu/dist/include/aout/host.h                                   |      22 -
 gnu/dist/include/aout/hp.h                                     |      82 -
 gnu/dist/include/aout/hp300hpux.h                              |     119 -
 gnu/dist/include/aout/hppa.h                                   |       7 -
 gnu/dist/include/aout/netbsd.h                                 |     209 -
 gnu/dist/include/aout/ranlib.h                                 |      62 -
 gnu/dist/include/aout/reloc.h                                  |      66 -
 gnu/dist/include/aout/stab.def                                 |     264 -
 gnu/dist/include/aout/stab_gnu.h                               |      37 -
 gnu/dist/include/aout/sun4.h                                   |     219 -
 gnu/dist/include/bfdlink.h                                     |     507 -
 gnu/dist/include/bout.h                                        |     182 -
 gnu/dist/include/callback.h                                    |     270 -
 gnu/dist/include/coff/a29k.h                                   |     305 -
 gnu/dist/include/coff/alpha.h                                  |     362 -
 gnu/dist/include/coff/apollo.h                                 |     252 -
 gnu/dist/include/coff/arm.h                                    |     258 -
 gnu/dist/include/coff/aux-coff.h                               |      31 -
 gnu/dist/include/coff/ecoff.h                                  |     421 -
 gnu/dist/include/coff/go32exe.h                                |      20 -
 gnu/dist/include/coff/h8300.h                                  |     204 -
 gnu/dist/include/coff/h8500.h                                  |     201 -
 gnu/dist/include/coff/i386.h                                   |     228 -
 gnu/dist/include/coff/i860.h                                   |     205 -
 gnu/dist/include/coff/i960.h                                   |     275 -
 gnu/dist/include/coff/internal.h                               |     720 -
 gnu/dist/include/coff/m68k.h                                   |     225 -
 gnu/dist/include/coff/m88k.h                                   |     219 -
 gnu/dist/include/coff/mips.h                                   |     369 -
 gnu/dist/include/coff/pe.h                                     |     169 -
 gnu/dist/include/coff/powerpc.h                                |     199 -
 gnu/dist/include/coff/rs6000.h                                 |     243 -
 gnu/dist/include/coff/sh.h                                     |     269 -
 gnu/dist/include/coff/sparc.h                                  |     210 -
 gnu/dist/include/coff/sym.h                                    |     484 -
 gnu/dist/include/coff/symconst.h                               |     177 -
 gnu/dist/include/coff/tic30.h                                  |     203 -
 gnu/dist/include/coff/w65.h                                    |     201 -
 gnu/dist/include/coff/we32k.h                                  |     206 -
 gnu/dist/include/coff/z8k.h                                    |     201 -
 gnu/dist/include/demangle.h                                    |     100 -
 gnu/dist/include/dis-asm.h                                     |     238 -
 gnu/dist/include/elf/alpha.h                                   |     100 -
 gnu/dist/include/elf/arc.h                                     |      52 -
 gnu/dist/include/elf/common.h                                  |     337 -
 gnu/dist/include/elf/dwarf.h                                   |     319 -
 gnu/dist/include/elf/dwarf2.h                                  |     551 -
 gnu/dist/include/elf/external.h                                |     245 -
 gnu/dist/include/elf/hppa.h                                    |      94 -
 gnu/dist/include/elf/internal.h                                |     300 -
 gnu/dist/include/elf/m32r.h                                    |      62 -
 gnu/dist/include/elf/mips.h                                    |     509 -
 gnu/dist/include/elf/ppc.h                                     |      54 -
 gnu/dist/include/elf/sparc.h                                   |     117 -
 gnu/dist/include/elf/v850.h                                    |      94 -
 gnu/dist/include/floatformat.h                                 |     111 -
 gnu/dist/include/fnmatch.h                                     |      69 -
 gnu/dist/include/fopen-bin.h                                   |      27 -
 gnu/dist/include/fopen-same.h                                  |      27 -
 gnu/dist/include/fopen-vms.h                                   |      24 -
 gnu/dist/include/gdbm.h                                        |      91 -
 gnu/dist/include/getopt.h                                      |     133 -
 gnu/dist/include/hp-symtab.h                                   |     983 -
 gnu/dist/include/ieee.h                                        |     139 -
 gnu/dist/include/libiberty.h                                   |     176 -
 gnu/dist/include/mpw/README                                    |       1 -
 gnu/dist/include/mpw/dir.h                                     |      23 -
 gnu/dist/include/mpw/dirent.h                                  |      31 -
 gnu/dist/include/mpw/fcntl.h                                   |     124 -
 gnu/dist/include/mpw/grp.h                                     |      10 -
 gnu/dist/include/mpw/mpw.h                                     |     130 -
 gnu/dist/include/mpw/pwd.h                                     |      15 -
 gnu/dist/include/mpw/spin.h                                    |      64 -
 gnu/dist/include/mpw/stat.h                                    |      75 -
 gnu/dist/include/mpw/sys/file.h                                |       1 -
 gnu/dist/include/mpw/sys/param.h                               |       1 -
 gnu/dist/include/mpw/sys/resource.h                            |       9 -
 gnu/dist/include/mpw/sys/stat.h                                |      44 -
 gnu/dist/include/mpw/sys/time.h                                |      13 -
 gnu/dist/include/mpw/sys/types.h                               |      15 -
 gnu/dist/include/mpw/utime.h                                   |       7 -
 gnu/dist/include/mpw/varargs.h                                 |       9 -
 gnu/dist/include/nlm/alpha-ext.h                               |     166 -
 gnu/dist/include/nlm/common.h                                  |     124 -
 gnu/dist/include/nlm/external.h                                |     174 -
 gnu/dist/include/nlm/i386-ext.h                                |     116 -
 gnu/dist/include/nlm/internal.h                                |     309 -
 gnu/dist/include/nlm/ppc-ext.h                                 |     163 -
 gnu/dist/include/nlm/sparc32-ext.h                             |     120 -
 gnu/dist/include/oasys.h                                       |     152 -
 gnu/dist/include/objalloc.h                                    |     115 -
 gnu/dist/include/obstack.h                                     |     570 -
 gnu/dist/include/opcode/a29k.h                                 |     285 -
 gnu/dist/include/opcode/alpha.h                                |     237 -
 gnu/dist/include/opcode/arc.h                                  |     274 -
 gnu/dist/include/opcode/arm.h                                  |     294 -
 gnu/dist/include/opcode/cgen.h                                 |     873 -
 gnu/dist/include/opcode/convex.h                               |    1711 -
 gnu/dist/include/opcode/d10v.h                                 |     194 -
 gnu/dist/include/opcode/h8300.h                                |     604 -
 gnu/dist/include/opcode/hppa.h                                 |     471 -
 gnu/dist/include/opcode/i386.h                                 |     981 -
 gnu/dist/include/opcode/i860.h                                 |     491 -
 gnu/dist/include/opcode/i960.h                                 |     509 -
 gnu/dist/include/opcode/m68k.h                                 |     315 -
 gnu/dist/include/opcode/m88k.h                                 |     923 -
 gnu/dist/include/opcode/mips.h                                 |     715 -
 gnu/dist/include/opcode/mn10200.h                              |     110 -
 gnu/dist/include/opcode/mn10300.h                              |     119 -
 gnu/dist/include/opcode/np1.h                                  |     422 -
 gnu/dist/include/opcode/ns32k.h                                |     491 -
 gnu/dist/include/opcode/pn.h                                   |     282 -
 gnu/dist/include/opcode/ppc.h                                  |     248 -
 gnu/dist/include/opcode/pyr.h                                  |     287 -
 gnu/dist/include/opcode/sparc.h                                |     240 -
 gnu/dist/include/opcode/tahoe.h                                |     213 -
 gnu/dist/include/opcode/tic30.h                                |     691 -
 gnu/dist/include/opcode/v850.h                                 |     154 -
 gnu/dist/include/opcode/vax.h                                  |     382 -
 gnu/dist/include/os9k.h                                        |     169 -
 gnu/dist/include/progress.h                                    |      37 -
 gnu/dist/include/remote-sim.h                                  |     321 -
 gnu/dist/include/symcat.h                                      |      40 -
 gnu/dist/include/wait.h                                        |      63 -
 gnu/dist/install.sh                                            |     247 -
 gnu/dist/ld/Makefile.am                                        |     782 -
 gnu/dist/ld/Makefile.in                                        |    1278 -
 gnu/dist/ld/NEWS                                               |     169 -
 gnu/dist/ld/README                                             |      64 -
 gnu/dist/ld/TODO                                               |       9 -
 gnu/dist/ld/acconfig.h                                         |      22 -
 gnu/dist/ld/acinclude.m4                                       |       1 -
 gnu/dist/ld/aclocal.m4                                         |     460 -
 gnu/dist/ld/config.in                                          |      52 -
 gnu/dist/ld/configdoc.texi                                     |      13 -
 gnu/dist/ld/configure                                          |    2757 -
 gnu/dist/ld/configure.host                                     |     166 -
 gnu/dist/ld/configure.in                                       |     133 -
 gnu/dist/ld/configure.tgt                                      |     216 -
 gnu/dist/ld/dep-in.sed                                         |      16 -
 gnu/dist/ld/emulparams/README                                  |       2 -
 gnu/dist/ld/emulparams/a29k.sh                                 |       5 -
 gnu/dist/ld/emulparams/aixppc.sh                               |       4 -
 gnu/dist/ld/emulparams/aixrs6.sh                               |       4 -
 gnu/dist/ld/emulparams/alpha.sh                                |       3 -
 gnu/dist/ld/emulparams/arcelf.sh                               |      11 -
 gnu/dist/ld/emulparams/armaoutb.sh                             |       7 -
 gnu/dist/ld/emulparams/armaoutl.sh                             |       7 -
 gnu/dist/ld/emulparams/armcoff.sh                              |       6 -
 gnu/dist/ld/emulparams/armnbsd.sh                              |       7 -
 gnu/dist/ld/emulparams/armpe.sh                                |       6 -
 gnu/dist/ld/emulparams/coff_sparc.sh                           |       7 -
 gnu/dist/ld/emulparams/d10velf.sh                              |       8 -
 gnu/dist/ld/emulparams/delta68.sh                              |       5 -
 gnu/dist/ld/emulparams/ebmon29k.sh                             |       5 -
 gnu/dist/ld/emulparams/elf32_sparc.sh                          |      11 -
 gnu/dist/ld/emulparams/elf32b4300.sh                           |      29 -
 gnu/dist/ld/emulparams/elf32bmip.sh                            |      30 -
 gnu/dist/ld/emulparams/elf32bsmip.sh                           |      31 -
 gnu/dist/ld/emulparams/elf32ebmip.sh                           |      29 -
 gnu/dist/ld/emulparams/elf32elmip.sh                           |      29 -
 gnu/dist/ld/emulparams/elf32l4300.sh                           |      29 -
 gnu/dist/ld/emulparams/elf32lmip.sh                            |      30 -
 gnu/dist/ld/emulparams/elf32lppc.sh                            |       8 -
 gnu/dist/ld/emulparams/elf32lsmip.sh                           |      31 -
 gnu/dist/ld/emulparams/elf32ppc.sh                             |       8 -
 gnu/dist/ld/emulparams/elf64_sparc.sh                          |      12 -
 gnu/dist/ld/emulparams/elf64alpha.sh                           |      15 -
 gnu/dist/ld/emulparams/elf_i386.sh                             |      11 -
 gnu/dist/ld/emulparams/gld960.sh                               |       7 -
 gnu/dist/ld/emulparams/gld960coff.sh                           |      19 -
 gnu/dist/ld/emulparams/go32.sh                                 |       7 -
 gnu/dist/ld/emulparams/h8300.sh                                |       5 -
 gnu/dist/ld/emulparams/h8300h.sh                               |       5 -
 gnu/dist/ld/emulparams/h8300s.sh                               |       5 -
 gnu/dist/ld/emulparams/h8500.sh                                |       5 -
 gnu/dist/ld/emulparams/h8500b.sh                               |       5 -
 gnu/dist/ld/emulparams/h8500c.sh                               |       5 -
 gnu/dist/ld/emulparams/h8500m.sh                               |       5 -
 gnu/dist/ld/emulparams/h8500s.sh                               |       5 -
 gnu/dist/ld/emulparams/hp300bsd.sh                             |       5 -
 gnu/dist/ld/emulparams/hp3hpux.sh                              |       8 -
 gnu/dist/ld/emulparams/hppaelf.sh                              |       7 -
 gnu/dist/ld/emulparams/i386aout.sh                             |       6 -
 gnu/dist/ld/emulparams/i386bsd.sh                              |       6 -
 gnu/dist/ld/emulparams/i386coff.sh                             |       5 -
 gnu/dist/ld/emulparams/i386go32.sh                             |       8 -
 gnu/dist/ld/emulparams/i386linux.sh                            |       7 -
 gnu/dist/ld/emulparams/i386lynx.sh                             |       9 -
 gnu/dist/ld/emulparams/i386mach.sh                             |       7 -
 gnu/dist/ld/emulparams/i386moss.sh                             |      10 -
 gnu/dist/ld/emulparams/i386msdos.sh                            |       7 -
 gnu/dist/ld/emulparams/i386nbsd.sh                             |       5 -
 gnu/dist/ld/emulparams/i386nw.sh                               |       9 -
 gnu/dist/ld/emulparams/i386pe.sh                               |       5 -
 gnu/dist/ld/emulparams/lnk960.sh                               |       6 -
 gnu/dist/ld/emulparams/m32relf.sh                              |      12 -
 gnu/dist/ld/emulparams/m68k4knbsd.sh                           |       7 -
 gnu/dist/ld/emulparams/m68kaout.sh                             |       7 -
 gnu/dist/ld/emulparams/m68kaux.sh                              |       8 -
 gnu/dist/ld/emulparams/m68kcoff.sh                             |       5 -
 gnu/dist/ld/emulparams/m68kelf.sh                              |      11 -
 gnu/dist/ld/emulparams/m68klinux.sh                            |       7 -
 gnu/dist/ld/emulparams/m68klynx.sh                             |       8 -
 gnu/dist/ld/emulparams/m68knbsd.sh                             |       7 -
 gnu/dist/ld/emulparams/m68kpsos.sh                             |       6 -
 gnu/dist/ld/emulparams/m88kbcs.sh                              |       5 -
 gnu/dist/ld/emulparams/mipsbig.sh                              |       6 -
 gnu/dist/ld/emulparams/mipsbsd.sh                              |       7 -
 gnu/dist/ld/emulparams/mipsidt.sh                              |      11 -
 gnu/dist/ld/emulparams/mipsidtl.sh                             |      11 -
 gnu/dist/ld/emulparams/mipslit.sh                              |       6 -
 gnu/dist/ld/emulparams/mipslnews.sh                            |       9 -
 gnu/dist/ld/emulparams/mn10200.sh                              |      20 -
 gnu/dist/ld/emulparams/mn10300.sh                              |      20 -
 gnu/dist/ld/emulparams/news.sh                                 |       5 -
 gnu/dist/ld/emulparams/ns32knbsd.sh                            |       5 -
 gnu/dist/ld/emulparams/pc532macha.sh                           |       6 -
 gnu/dist/ld/emulparams/ppcmacos.sh                             |       4 -
 gnu/dist/ld/emulparams/ppcnw.sh                                |       7 -
 gnu/dist/ld/emulparams/ppcpe.sh                                |       4 -
 gnu/dist/ld/emulparams/riscix.sh                               |       5 -
 gnu/dist/ld/emulparams/sa29200.sh                              |       5 -
 gnu/dist/ld/emulparams/sh.sh                                   |       5 -
 gnu/dist/ld/emulparams/shelf.sh                                |      15 -
 gnu/dist/ld/emulparams/shl.sh                                  |       5 -
 gnu/dist/ld/emulparams/shlelf.sh                               |      17 -
 gnu/dist/ld/emulparams/sparcaout.sh                            |       8 -
 gnu/dist/ld/emulparams/sparclinux.sh                           |       7 -
 gnu/dist/ld/emulparams/sparclynx.sh                            |       9 -
 gnu/dist/ld/emulparams/sparcnbsd.sh                            |       5 -
 gnu/dist/ld/emulparams/st2000.sh                               |       5 -
 gnu/dist/ld/emulparams/sun3.sh                                 |       8 -
 gnu/dist/ld/emulparams/sun4.sh                                 |       7 -
 gnu/dist/ld/emulparams/tic30aout.sh                            |       7 -
 gnu/dist/ld/emulparams/tic30coff.sh                            |       7 -
 gnu/dist/ld/emulparams/v850.sh                                 |      14 -
 gnu/dist/ld/emulparams/vanilla.sh                              |       5 -
 gnu/dist/ld/emulparams/vax.sh                                  |       5 -
 gnu/dist/ld/emulparams/vsta.sh                                 |       8 -
 gnu/dist/ld/emulparams/w65.sh                                  |       5 -
 gnu/dist/ld/emulparams/z8001.sh                                |       7 -
 gnu/dist/ld/emulparams/z8002.sh                                |       6 -
 gnu/dist/ld/emultempl/README                                   |       3 -
 gnu/dist/ld/emultempl/aix.em                                   |    1053 -
 gnu/dist/ld/emultempl/armcoff.em                               |     146 -
 gnu/dist/ld/emultempl/elf32.em                                 |    1163 -
 gnu/dist/ld/emultempl/generic.em                               |     118 -
 gnu/dist/ld/emultempl/gld960.em                                |     176 -
 gnu/dist/ld/emultempl/gld960c.em                               |     192 -
 gnu/dist/ld/emultempl/hppaelf.em                               |     283 -
 gnu/dist/ld/emultempl/linux.em                                 |     207 -
 gnu/dist/ld/emultempl/lnk960.em                                |     327 -
 gnu/dist/ld/emultempl/mipsecoff.em                             |     229 -
 gnu/dist/ld/emultempl/pe.em                                    |     784 -
 gnu/dist/ld/emultempl/stringify.sed                            |       4 -
 gnu/dist/ld/emultempl/sunos.em                                 |    1022 -
 gnu/dist/ld/emultempl/vanilla.em                               |      69 -
 gnu/dist/ld/gen-doc.texi                                       |      13 -
 gnu/dist/ld/genscripts.sh                                      |     127 -
 gnu/dist/ld/h8-doc.texi                                        |      14 -
 gnu/dist/ld/ld.1                                               |    1083 -
 gnu/dist/ld/ld.h                                               |     177 -
 gnu/dist/ld/ld.texinfo                                         |    3700 -
 gnu/dist/ld/ldcref.c                                           |     547 -
 gnu/dist/ld/ldctor.c                                           |     256 -
 gnu/dist/ld/ldctor.h                                           |      54 -
 gnu/dist/ld/ldemul.c                                           |     262 -
 gnu/dist/ld/ldemul.h                                           |     138 -
 gnu/dist/ld/ldexp.c                                            |     950 -
 gnu/dist/ld/ldexp.h                                            |     109 -
 gnu/dist/ld/ldfile.c                                           |     410 -
 gnu/dist/ld/ldfile.h                                           |      53 -
 gnu/dist/ld/ldgram.y                                           |    1022 -
 gnu/dist/ld/ldint.texinfo                                      |     412 -
 gnu/dist/ld/ldlang.c                                           |    4123 -
 gnu/dist/ld/ldlang.h                                           |     485 -
 gnu/dist/ld/ldlex.h                                            |      62 -
 gnu/dist/ld/ldlex.l                                            |     647 -
 gnu/dist/ld/ldmain.c                                           |    1273 -
 gnu/dist/ld/ldmain.h                                           |      38 -
 gnu/dist/ld/ldmisc.c                                           |     535 -
 gnu/dist/ld/ldmisc.h                                           |      56 -
 gnu/dist/ld/ldver.c                                            |      49 -
 gnu/dist/ld/ldver.h                                            |      22 -
 gnu/dist/ld/ldwrite.c                                          |     530 -
 gnu/dist/ld/ldwrite.h                                          |      20 -
 gnu/dist/ld/lexsup.c                                           |     990 -
 gnu/dist/ld/mac-ld.r                                           |      42 -
 gnu/dist/ld/mri.c                                              |     377 -
 gnu/dist/ld/mri.h                                              |      39 -
 gnu/dist/ld/scripttempl/README                                 |       4 -
 gnu/dist/ld/scripttempl/a29k.sc                                |      37 -
 gnu/dist/ld/scripttempl/aix.sc                                 |      55 -
 gnu/dist/ld/scripttempl/alpha.sc                               |      74 -
 gnu/dist/ld/scripttempl/aout.sc                                |      55 -
 gnu/dist/ld/scripttempl/armaout.sc                             |      35 -
 gnu/dist/ld/scripttempl/armcoff.sc                             |      62 -
 gnu/dist/ld/scripttempl/delta68.sc                             |      49 -
 gnu/dist/ld/scripttempl/ebmon29k.sc                            |      27 -
 gnu/dist/ld/scripttempl/elf.sc                                 |     218 -
 gnu/dist/ld/scripttempl/elfd10v.sc                             |     196 -
 gnu/dist/ld/scripttempl/elfppc.sc                              |     216 -
 gnu/dist/ld/scripttempl/go32coff.sc                            |      33 -
 gnu/dist/ld/scripttempl/h8300.sc                               |      69 -
 gnu/dist/ld/scripttempl/h8300h.sc                              |      76 -
 gnu/dist/ld/scripttempl/h8300s.sc                              |      76 -
 gnu/dist/ld/scripttempl/h8500.sc                               |      62 -
 gnu/dist/ld/scripttempl/h8500b.sc                              |      62 -
 gnu/dist/ld/scripttempl/h8500c.sc                              |      59 -
 gnu/dist/ld/scripttempl/h8500m.sc                              |      61 -
 gnu/dist/ld/scripttempl/h8500s.sc                              |      60 -
 gnu/dist/ld/scripttempl/hppaelf.sc                             |      38 -
 gnu/dist/ld/scripttempl/i386coff.sc                            |      43 -
 gnu/dist/ld/scripttempl/i386go32.sc                            |      40 -
 gnu/dist/ld/scripttempl/i386lynx.sc                            |      46 -
 gnu/dist/ld/scripttempl/i386msdos.sc                           |      38 -
 gnu/dist/ld/scripttempl/i960.sc                                |      25 -
 gnu/dist/ld/scripttempl/m68kaux.sc                             |      46 -
 gnu/dist/ld/scripttempl/m68kcoff.sc                            |      42 -
 gnu/dist/ld/scripttempl/m68klynx.sc                            |      46 -
 gnu/dist/ld/scripttempl/m88kbcs.sc                             |      49 -
 gnu/dist/ld/scripttempl/mips.sc                                |      72 -
 gnu/dist/ld/scripttempl/mipsbsd.sc                             |      30 -
 gnu/dist/ld/scripttempl/nw.sc                                  |     131 -
 gnu/dist/ld/scripttempl/pe.sc                                  |     145 -
 gnu/dist/ld/scripttempl/ppcpe.sc                               |     198 -
 gnu/dist/ld/scripttempl/psos.sc                                |      61 -
 gnu/dist/ld/scripttempl/riscix.sc                              |      35 -
 gnu/dist/ld/scripttempl/sa29200.sc                             |      44 -
 gnu/dist/ld/scripttempl/sh.sc                                  |      56 -
 gnu/dist/ld/scripttempl/sparccoff.sc                           |      48 -
 gnu/dist/ld/scripttempl/sparclynx.sc                           |      47 -
 gnu/dist/ld/scripttempl/st2000.sc                              |      26 -
 gnu/dist/ld/scripttempl/tic30aout.sc                           |      34 -
 gnu/dist/ld/scripttempl/tic30coff.sc                           |      58 -
 gnu/dist/ld/scripttempl/v850.sc                                |     183 -
 gnu/dist/ld/scripttempl/vanilla.sc                             |       1 -
 gnu/dist/ld/scripttempl/w65.sc                                 |      58 -
 gnu/dist/ld/scripttempl/z8000.sc                               |      54 -
 gnu/dist/ld/stamp-h.in                                         |       1 -
 gnu/dist/ld/sysdep.h                                           |      69 -
 gnu/dist/libf2c/Makefile.in                                    |     185 -
 gnu/dist/libf2c/README                                         |     109 -
 gnu/dist/libf2c/TODO                                           |      14 -
 gnu/dist/libf2c/changes.netlib                                 |    2929 -
 gnu/dist/libf2c/configure                                      |    1576 -
 gnu/dist/libf2c/configure.in                                   |     176 -
 gnu/dist/libf2c/disclaimer.netlib                              |      15 -
 gnu/dist/libf2c/f2c.h                                          |      64 -
 gnu/dist/libf2c/f2cext.c                                       |     555 -
 gnu/dist/libf2c/g2c.hin                                        |     236 -
 gnu/dist/libf2c/libF77/F77_aloc.c                              |      32 -
 gnu/dist/libf2c/libF77/Makefile.in                             |     124 -
 gnu/dist/libf2c/libF77/Notice                                  |      23 -
 gnu/dist/libf2c/libF77/README.netlib                           |     108 -
 gnu/dist/libf2c/libF77/Version.c                               |      67 -
 gnu/dist/libf2c/libF77/abort_.c                                |      18 -
 gnu/dist/libf2c/libF77/c_abs.c                                 |      14 -
 gnu/dist/libf2c/libF77/c_cos.c                                 |      21 -
 gnu/dist/libf2c/libF77/c_div.c                                 |      40 -
 gnu/dist/libf2c/libF77/c_exp.c                                 |      23 -
 gnu/dist/libf2c/libF77/c_log.c                                 |      21 -
 gnu/dist/libf2c/libF77/c_sin.c                                 |      21 -
 gnu/dist/libf2c/libF77/c_sqrt.c                                |      38 -
 gnu/dist/libf2c/libF77/cabs.c                                  |      27 -
 gnu/dist/libf2c/libF77/configure                               |    1495 -
 gnu/dist/libf2c/libF77/configure.in                            |     107 -
 gnu/dist/libf2c/libF77/d_abs.c                                 |      12 -
 gnu/dist/libf2c/libF77/d_acos.c                                |      13 -
 gnu/dist/libf2c/libF77/d_asin.c                                |      13 -
 gnu/dist/libf2c/libF77/d_atan.c                                |      13 -
 gnu/dist/libf2c/libF77/d_atn2.c                                |      13 -
 gnu/dist/libf2c/libF77/d_cnjg.c                                |      17 -
 gnu/dist/libf2c/libF77/d_cos.c                                 |      13 -
 gnu/dist/libf2c/libF77/d_cosh.c                                |      13 -
 gnu/dist/libf2c/libF77/d_dim.c                                 |      10 -
 gnu/dist/libf2c/libF77/d_exp.c                                 |      13 -
 gnu/dist/libf2c/libF77/d_imag.c                                |      10 -
 gnu/dist/libf2c/libF77/d_int.c                                 |      13 -
 gnu/dist/libf2c/libF77/d_lg10.c                                |      15 -
 gnu/dist/libf2c/libF77/d_log.c                                 |      13 -
 gnu/dist/libf2c/libF77/d_mod.c                                 |      40 -
 gnu/dist/libf2c/libF77/d_nint.c                                |      14 -
 gnu/dist/libf2c/libF77/d_prod.c                                |      10 -
 gnu/dist/libf2c/libF77/d_sign.c                                |      12 -
 gnu/dist/libf2c/libF77/d_sin.c                                 |      13 -
 gnu/dist/libf2c/libF77/d_sinh.c                                |      13 -
 gnu/dist/libf2c/libF77/d_sqrt.c                                |      13 -
 gnu/dist/libf2c/libF77/d_tan.c                                 |      13 -
 gnu/dist/libf2c/libF77/d_tanh.c                                |      13 -
 gnu/dist/libf2c/libF77/derf_.c                                 |      12 -
 gnu/dist/libf2c/libF77/derfc_.c                                |      14 -
 gnu/dist/libf2c/libF77/dtime_.c                                |      47 -
 gnu/dist/libf2c/libF77/ef1asc_.c                               |      21 -
 gnu/dist/libf2c/libF77/ef1cmc_.c                               |      14 -
 gnu/dist/libf2c/libF77/erf_.c                                  |      12 -
 gnu/dist/libf2c/libF77/erfc_.c                                 |      12 -
 gnu/dist/libf2c/libF77/etime_.c                                |      40 -
 gnu/dist/libf2c/libF77/exit_.c                                 |      37 -
 gnu/dist/libf2c/libF77/f2ch.add                                |     162 -
 gnu/dist/libf2c/libF77/getarg_.c                               |      28 -
 gnu/dist/libf2c/libF77/getenv_.c                               |      51 -
 gnu/dist/libf2c/libF77/h_abs.c                                 |      12 -
 gnu/dist/libf2c/libF77/h_dim.c                                 |      10 -
 gnu/dist/libf2c/libF77/h_dnnt.c                                |      13 -
 gnu/dist/libf2c/libF77/h_indx.c                                |      26 -
 gnu/dist/libf2c/libF77/h_len.c                                 |      10 -
 gnu/dist/libf2c/libF77/h_mod.c                                 |      10 -
 gnu/dist/libf2c/libF77/h_nint.c                                |      13 -
 gnu/dist/libf2c/libF77/h_sign.c                                |      12 -
 gnu/dist/libf2c/libF77/hl_ge.c                                 |      12 -
 gnu/dist/libf2c/libF77/hl_gt.c                                 |      12 -
 gnu/dist/libf2c/libF77/hl_le.c                                 |      12 -
 gnu/dist/libf2c/libF77/hl_lt.c                                 |      12 -
 gnu/dist/libf2c/libF77/i_abs.c                                 |      12 -
 gnu/dist/libf2c/libF77/i_dim.c                                 |      10 -
 gnu/dist/libf2c/libF77/i_dnnt.c                                |      13 -
 gnu/dist/libf2c/libF77/i_indx.c                                |      26 -
 gnu/dist/libf2c/libF77/i_len.c                                 |      10 -
 gnu/dist/libf2c/libF77/i_mod.c                                 |      10 -
 gnu/dist/libf2c/libF77/i_nint.c                                |      13 -
 gnu/dist/libf2c/libF77/i_sign.c                                |      12 -
 gnu/dist/libf2c/libF77/iargc_.c                                |      11 -
 gnu/dist/libf2c/libF77/l_ge.c                                  |      12 -
 gnu/dist/libf2c/libF77/l_gt.c                                  |      12 -
 gnu/dist/libf2c/libF77/l_le.c                                  |      12 -
 gnu/dist/libf2c/libF77/l_lt.c                                  |      12 -
 gnu/dist/libf2c/libF77/lbitbits.c                              |      62 -
 gnu/dist/libf2c/libF77/lbitshft.c                              |      11 -
 gnu/dist/libf2c/libF77/main.c                                  |      68 -
 gnu/dist/libf2c/libF77/makefile.netlib                         |     103 -
 gnu/dist/libf2c/libF77/pow_ci.c                                |      20 -
 gnu/dist/libf2c/libF77/pow_dd.c                                |      13 -
 gnu/dist/libf2c/libF77/pow_di.c                                |      35 -
 gnu/dist/libf2c/libF77/pow_hh.c                                |      33 -
 gnu/dist/libf2c/libF77/pow_ii.c                                |      33 -
 gnu/dist/libf2c/libF77/pow_qq.c                                |      33 -
 gnu/dist/libf2c/libF77/pow_ri.c                                |      35 -
 gnu/dist/libf2c/libF77/pow_zi.c                                |      61 -
 gnu/dist/libf2c/libF77/pow_zz.c                                |      23 -
 gnu/dist/libf2c/libF77/qbitbits.c                              |      66 -
 gnu/dist/libf2c/libF77/qbitshft.c                              |      11 -
 gnu/dist/libf2c/libF77/r_abs.c                                 |      12 -
 gnu/dist/libf2c/libF77/r_acos.c                                |      13 -
 gnu/dist/libf2c/libF77/r_asin.c                                |      13 -
 gnu/dist/libf2c/libF77/r_atan.c                                |      13 -
 gnu/dist/libf2c/libF77/r_atn2.c                                |      13 -
 gnu/dist/libf2c/libF77/r_cnjg.c                                |      16 -
 gnu/dist/libf2c/libF77/r_cos.c                                 |      13 -
 gnu/dist/libf2c/libF77/r_cosh.c                                |      13 -
 gnu/dist/libf2c/libF77/r_dim.c                                 |      10 -
 gnu/dist/libf2c/libF77/r_exp.c                                 |      13 -
 gnu/dist/libf2c/libF77/r_imag.c                                |      10 -
 gnu/dist/libf2c/libF77/r_int.c                                 |      13 -
 gnu/dist/libf2c/libF77/r_lg10.c                                |      15 -
 gnu/dist/libf2c/libF77/r_log.c                                 |      13 -
 gnu/dist/libf2c/libF77/r_mod.c                                 |      40 -
 gnu/dist/libf2c/libF77/r_nint.c                                |      14 -
 gnu/dist/libf2c/libF77/r_sign.c                                |      12 -
 gnu/dist/libf2c/libF77/r_sin.c                                 |      13 -
 gnu/dist/libf2c/libF77/r_sinh.c                                |      13 -
 gnu/dist/libf2c/libF77/r_sqrt.c                                |      13 -
 gnu/dist/libf2c/libF77/r_tan.c                                 |      13 -
 gnu/dist/libf2c/libF77/r_tanh.c                                |      13 -
 gnu/dist/libf2c/libF77/s_cat.c                                 |      75 -
 gnu/dist/libf2c/libF77/s_cmp.c                                 |      44 -
 gnu/dist/libf2c/libF77/s_copy.c                                |      51 -
 gnu/dist/libf2c/libF77/s_paus.c                                |      88 -
 gnu/dist/libf2c/libF77/s_rnge.c                                |      26 -
 gnu/dist/libf2c/libF77/s_stop.c                                |      37 -
 gnu/dist/libf2c/libF77/setarg.c                                |      29 -
 gnu/dist/libf2c/libF77/setsig.c                                |     101 -
 gnu/dist/libf2c/libF77/sig_die.c                               |      45 -
 gnu/dist/libf2c/libF77/signal1.h                               |       5 -
 gnu/dist/libf2c/libF77/signal1.h0                              |      37 -
 gnu/dist/libf2c/libF77/signal_.c                               |      16 -
 gnu/dist/libf2c/libF77/system_.c                               |      36 -
 gnu/dist/libf2c/libF77/z_abs.c                                 |      12 -
 gnu/dist/libf2c/libF77/z_cos.c                                 |      19 -
 gnu/dist/libf2c/libF77/z_div.c                                 |      39 -
 gnu/dist/libf2c/libF77/z_exp.c                                 |      21 -
 gnu/dist/libf2c/libF77/z_log.c                                 |      20 -
 gnu/dist/libf2c/libF77/z_sin.c                                 |      19 -
 gnu/dist/libf2c/libF77/z_sqrt.c                                |      33 -
 gnu/dist/libf2c/libI77/Makefile.in                             |     157 -
 gnu/dist/libf2c/libI77/Notice                                  |      23 -
 gnu/dist/libf2c/libI77/README.netlib                           |     225 -
 gnu/dist/libf2c/libI77/Version.c                               |     310 -
 gnu/dist/libf2c/libI77/backspace.c                             |      72 -
 gnu/dist/libf2c/libI77/close.c                                 |     105 -
 gnu/dist/libf2c/libI77/configure                               |    1678 -
 gnu/dist/libf2c/libI77/configure.in                            |     201 -
 gnu/dist/libf2c/libI77/dfe.c                                   |     140 -
 gnu/dist/libf2c/libI77/dolio.c                                 |      20 -
 gnu/dist/libf2c/libI77/due.c                                   |      75 -
 gnu/dist/libf2c/libI77/endfile.c                               |     121 -
 gnu/dist/libf2c/libI77/err.c                                   |     288 -
 gnu/dist/libf2c/libI77/f2ch.add                                |     162 -
 gnu/dist/libf2c/libI77/fio.h                                   |     110 -
 gnu/dist/libf2c/libI77/fmt.c                                   |     543 -
 gnu/dist/libf2c/libI77/fmt.h                                   |     101 -
 gnu/dist/libf2c/libI77/fmtlib.c                                |      45 -
 gnu/dist/libf2c/libI77/fp.h                                    |      28 -
 gnu/dist/libf2c/libI77/ftell_.c                                |      46 -
 gnu/dist/libf2c/libI77/iio.c                                   |     154 -
 gnu/dist/libf2c/libI77/ilnw.c                                  |      82 -
 gnu/dist/libf2c/libI77/inquire.c                               |     108 -
 gnu/dist/libf2c/libI77/lio.h                                   |      74 -
 gnu/dist/libf2c/libI77/lread.c                                 |     704 -
 gnu/dist/libf2c/libI77/lwrite.c                                |     302 -
 gnu/dist/libf2c/libI77/makefile.netlib                         |     104 -
 gnu/dist/libf2c/libI77/open.c                                  |     298 -
 gnu/dist/libf2c/libI77/rawio.h                                 |      45 -
 gnu/dist/libf2c/libI77/rdfmt.c                                 |     476 -
 gnu/dist/libf2c/libI77/rewind.c                                |      26 -
 gnu/dist/libf2c/libI77/rsfe.c                                  |      80 -
 gnu/dist/libf2c/libI77/rsli.c                                  |     105 -
 gnu/dist/libf2c/libI77/rsne.c                                  |     607 -
 gnu/dist/libf2c/libI77/sfe.c                                   |      40 -
 gnu/dist/libf2c/libI77/sue.c                                   |      87 -
 gnu/dist/libf2c/libI77/typesize.c                              |      12 -
 gnu/dist/libf2c/libI77/uio.c                                   |      69 -
 gnu/dist/libf2c/libI77/util.c                                  |      53 -
 gnu/dist/libf2c/libI77/wref.c                                  |     276 -
 gnu/dist/libf2c/libI77/wrtfmt.c                                |     365 -
 gnu/dist/libf2c/libI77/wsfe.c                                  |      75 -
 gnu/dist/libf2c/libI77/wsle.c                                  |      38 -
 gnu/dist/libf2c/libI77/wsne.c                                  |      26 -
 gnu/dist/libf2c/libI77/xwsne.c                                 |      72 -
 gnu/dist/libf2c/libU77/COPYING.LIB                             |     482 -
 gnu/dist/libf2c/libU77/Makefile.in                             |     192 -
 gnu/dist/libf2c/libU77/PROJECTS                                |      10 -
 gnu/dist/libf2c/libU77/README                                  |      40 -
 gnu/dist/libf2c/libU77/Version.c                               |      12 -
 gnu/dist/libf2c/libU77/access_.c                               |      80 -
 gnu/dist/libf2c/libU77/acconfig.h                              |       2 -
 gnu/dist/libf2c/libU77/alarm_.c                                |      64 -
 gnu/dist/libf2c/libU77/bes.c                                   |      46 -
 gnu/dist/libf2c/libU77/chdir_.c                                |      57 -
 gnu/dist/libf2c/libU77/chmod_.c                                |      82 -
 gnu/dist/libf2c/libU77/config.h.in                             |     106 -
 gnu/dist/libf2c/libU77/config.hin                              |     106 -
 gnu/dist/libf2c/libU77/configure                               |    1797 -
 gnu/dist/libf2c/libU77/configure.in                            |     100 -
 gnu/dist/libf2c/libU77/ctime_.c                                |      57 -
 gnu/dist/libf2c/libU77/date_.c                                 |      39 -
 gnu/dist/libf2c/libU77/datetime_.c                             |      84 -
 gnu/dist/libf2c/libU77/dbes.c                                  |      46 -
 gnu/dist/libf2c/libU77/dtime_.c                                |      98 -
 gnu/dist/libf2c/libU77/etime_.c                                |      90 -
 gnu/dist/libf2c/libU77/fdate_.c                                |      53 -
 gnu/dist/libf2c/libU77/fgetc_.c                                |      70 -
 gnu/dist/libf2c/libU77/flush1_.c                               |      46 -
 gnu/dist/libf2c/libU77/fnum_.c                                 |      38 -
 gnu/dist/libf2c/libU77/fputc_.c                                |      65 -
 gnu/dist/libf2c/libU77/fstat_.c                                |      71 -
 gnu/dist/libf2c/libU77/gerror_.c                               |      49 -
 gnu/dist/libf2c/libU77/getcwd_.c                               |      99 -
 gnu/dist/libf2c/libU77/getgid_.c                               |      41 -
 gnu/dist/libf2c/libU77/getlog_.c                               |      71 -
 gnu/dist/libf2c/libU77/getpid_.c                               |      35 -
 gnu/dist/libf2c/libU77/getuid_.c                               |      41 -
 gnu/dist/libf2c/libU77/gmtime_.c                               |      55 -
 gnu/dist/libf2c/libU77/hostnm_.c                               |      50 -
 gnu/dist/libf2c/libU77/idate_.c                                |      57 -
 gnu/dist/libf2c/libU77/ierrno_.c                               |      32 -
 gnu/dist/libf2c/libU77/irand_.c                                |      57 -
 gnu/dist/libf2c/libU77/isatty_.c                               |      44 -
 gnu/dist/libf2c/libU77/itime_.c                                |      51 -
 gnu/dist/libf2c/libU77/kill_.c                                 |      42 -
 gnu/dist/libf2c/libU77/link_.c                                 |      66 -
 gnu/dist/libf2c/libU77/lnblnk_.c                               |      35 -
 gnu/dist/libf2c/libU77/lstat_.c                                |      86 -
 gnu/dist/libf2c/libU77/ltime_.c                                |      55 -
 gnu/dist/libf2c/libU77/mclock_.c                               |      47 -
 gnu/dist/libf2c/libU77/perror_.c                               |      48 -
 gnu/dist/libf2c/libU77/rand_.c                                 |      54 -
 gnu/dist/libf2c/libU77/rename_.c                               |      56 -
 gnu/dist/libf2c/libU77/secnds_.c                               |      51 -
 gnu/dist/libf2c/libU77/second_.c                               |      26 -
 gnu/dist/libf2c/libU77/sleep_.c                                |      37 -
 gnu/dist/libf2c/libU77/srand_.c                                |      37 -
 gnu/dist/libf2c/libU77/stamp-h.in                              |       1 -
 gnu/dist/libf2c/libU77/stat_.c                                 |      79 -
 gnu/dist/libf2c/libU77/symlnk_.c                               |      64 -
 gnu/dist/libf2c/libU77/sys_clock_.c                            |      77 -
 gnu/dist/libf2c/libU77/time_.c                                 |      46 -
 gnu/dist/libf2c/libU77/ttynam_.c                               |      64 -
 gnu/dist/libf2c/libU77/u77-test.f                              |     231 -
 gnu/dist/libf2c/libU77/umask_.c                                |      34 -
 gnu/dist/libf2c/libU77/unlink_.c                               |      57 -
 gnu/dist/libf2c/libU77/vxtidate_.c                             |      55 -
 gnu/dist/libf2c/libU77/vxttime_.c                              |      54 -
 gnu/dist/libf2c/permission.netlib                              |      23 -
 gnu/dist/libf2c/readme.netlib                                  |     685 -
 gnu/dist/libiberty/COPYING.LIB                                 |     482 -
 gnu/dist/libiberty/Makefile.in                                 |     242 -
 gnu/dist/libiberty/README                                      |      65 -
 gnu/dist/libiberty/acconfig.h                                  |      11 -
 gnu/dist/libiberty/alloca-conf.h                               |      24 -
 gnu/dist/libiberty/alloca.c                                    |     479 -
 gnu/dist/libiberty/argv.c                                      |     391 -
 gnu/dist/libiberty/asprintf.c                                  |      57 -
 gnu/dist/libiberty/atexit.c                                    |      18 -
 gnu/dist/libiberty/basename.c                                  |      37 -
 gnu/dist/libiberty/bcmp.c                                      |      49 -
 gnu/dist/libiberty/bcopy.c                                     |      35 -
 gnu/dist/libiberty/bzero.c                                     |      31 -
 gnu/dist/libiberty/choose-temp.c                               |     165 -
 gnu/dist/libiberty/clock.c                                     |      75 -
 gnu/dist/libiberty/concat.c                                    |     167 -
 gnu/dist/libiberty/config.h-vms                                |      13 -
 gnu/dist/libiberty/config.in                                   |     191 -
 gnu/dist/libiberty/config.table                                |      61 -
 gnu/dist/libiberty/config/mh-aix                               |       9 -
 gnu/dist/libiberty/config/mh-cxux7                             |       1 -
 gnu/dist/libiberty/config/mh-fbsd21                            |       1 -
 gnu/dist/libiberty/config/mh-windows                           |       1 -
 gnu/dist/libiberty/configure                                   |    2747 -
 gnu/dist/libiberty/configure.in                                |     328 -
 gnu/dist/libiberty/copysign.c                                  |     140 -
 gnu/dist/libiberty/cplus-dem.c                                 |    4419 -
 gnu/dist/libiberty/fdmatch.c                                   |      73 -
 gnu/dist/libiberty/floatformat.c                               |     401 -
 gnu/dist/libiberty/fnmatch.c                                   |     223 -
 gnu/dist/libiberty/getcwd.c                                    |      54 -
 gnu/dist/libiberty/getopt.c                                    |    1046 -
 gnu/dist/libiberty/getopt1.c                                   |     189 -
 gnu/dist/libiberty/getpagesize.c                               |      96 -
 gnu/dist/libiberty/getruntime.c                                |      74 -
 gnu/dist/libiberty/hex.c                                       |      33 -
 gnu/dist/libiberty/index.c                                     |      11 -
 gnu/dist/libiberty/insque.c                                    |      50 -
 gnu/dist/libiberty/makefile.dos                                |      29 -
 gnu/dist/libiberty/makefile.vms                                |      33 -
 gnu/dist/libiberty/memchr.c                                    |      60 -
 gnu/dist/libiberty/memcmp.c                                    |      38 -
 gnu/dist/libiberty/memcpy.c                                    |      28 -
 gnu/dist/libiberty/memmove.c                                   |      18 -
 gnu/dist/libiberty/memset.c                                    |      19 -
 gnu/dist/libiberty/mpw.c                                       |    1010 -
 gnu/dist/libiberty/msdos.c                                     |      15 -
 gnu/dist/libiberty/objalloc.c                                  |     289 -
 gnu/dist/libiberty/obstack.c                                   |     514 -
 gnu/dist/libiberty/pexecute.c                                  |     767 -
 gnu/dist/libiberty/random.c                                    |     373 -
 gnu/dist/libiberty/rename.c                                    |      22 -
 gnu/dist/libiberty/rindex.c                                    |      11 -
 gnu/dist/libiberty/sigsetmask.c                                |      30 -
 gnu/dist/libiberty/spaces.c                                    |      78 -
 gnu/dist/libiberty/strcasecmp.c                                |      82 -
 gnu/dist/libiberty/strchr.c                                    |      34 -
 gnu/dist/libiberty/strdup.c                                    |      10 -
 gnu/dist/libiberty/strerror.c                                  |     831 -
 gnu/dist/libiberty/strncasecmp.c                               |      82 -
 gnu/dist/libiberty/strrchr.c                                   |      34 -
 gnu/dist/libiberty/strsignal.c                                 |     644 -
 gnu/dist/libiberty/strstr.c                                    |      51 -
 gnu/dist/libiberty/strtod.c                                    |     122 -
 gnu/dist/libiberty/strtol.c                                    |     143 -
 gnu/dist/libiberty/strtoul.c                                   |     110 -
 gnu/dist/libiberty/tmpnam.c                                    |      39 -
 gnu/dist/libiberty/vasprintf.c                                 |     172 -
 gnu/dist/libiberty/vfork.c                                     |       8 -
 gnu/dist/libiberty/vfprintf.c                                  |      13 -
 gnu/dist/libiberty/vprintf.c                                   |      15 -
 gnu/dist/libiberty/vsprintf.c                                  |      55 -
 gnu/dist/libiberty/waitpid.c                                   |      11 -
 gnu/dist/libiberty/xatexit.c                                   |      82 -
 gnu/dist/libiberty/xexit.c                                     |      36 -
 gnu/dist/libiberty/xmalloc.c                                   |     133 -
 gnu/dist/libiberty/xstrdup.c                                   |      19 -
 gnu/dist/libiberty/xstrerror.c                                 |      56 -
 gnu/dist/libio/Makefile.in                                     |     132 -
 gnu/dist/libio/NEWS                                            |      57 -
 gnu/dist/libio/PlotFile.cc                                     |     157 -
 gnu/dist/libio/PlotFile.h                                      |      89 -
 gnu/dist/libio/README                                          |      30 -
 gnu/dist/libio/SFile.cc                                        |      82 -
 gnu/dist/libio/SFile.h                                         |      55 -
 gnu/dist/libio/builtinbuf.cc                                   |      78 -
 gnu/dist/libio/builtinbuf.h                                    |      68 -
 gnu/dist/libio/cleanup.c                                       |      17 -
 gnu/dist/libio/config.shared                                   |     496 -
 gnu/dist/libio/config/hpux.mt                                  |       3 -
 gnu/dist/libio/config/isc.mt                                   |       4 -
 gnu/dist/libio/config/linux.mt                                 |      25 -
 gnu/dist/libio/config/linuxaxp1-libc-lock.h                    |     112 -
 gnu/dist/libio/config/linuxaxp1-stdio-lock.h                   |      36 -
 gnu/dist/libio/config/linuxaxp1.mt                             |      10 -
 gnu/dist/libio/config/linuxlibc1.mt                            |      26 -
 gnu/dist/libio/config/mn10200.mt                               |       3 -
 gnu/dist/libio/config/mtsafe.mt                                |       2 -
 gnu/dist/libio/config/netware.mt                               |      16 -
 gnu/dist/libio/config/sco4.mt                                  |       3 -
 gnu/dist/libio/configure.in                                    |     154 -
 gnu/dist/libio/dbz/Makefile.in                                 |     218 -
 gnu/dist/libio/dbz/README                                      |      25 -
 gnu/dist/libio/dbz/altbytes                                    |       7 -
 gnu/dist/libio/dbz/byteflip.c                                  |      38 -
 gnu/dist/libio/dbz/case.c                                      |     129 -
 gnu/dist/libio/dbz/case.h                                      |      12 -
 gnu/dist/libio/dbz/configure.in                                |      17 -
 gnu/dist/libio/dbz/dbz.1                                       |     221 -
 gnu/dist/libio/dbz/dbz.3z                                      |     547 -
 gnu/dist/libio/dbz/dbz.c                                       |    1768 -
 gnu/dist/libio/dbz/dbz.h                                       |      32 -
 gnu/dist/libio/dbz/dbzmain.c                                   |     519 -
 gnu/dist/libio/dbz/fake.c                                      |     144 -
 gnu/dist/libio/dbz/firstlast25                                 |      50 -
 gnu/dist/libio/dbz/getmap                                      |       6 -
 gnu/dist/libio/dbz/random.c                                    |      31 -
 gnu/dist/libio/dbz/revbytes                                    |       7 -
 gnu/dist/libio/dbz/stdio.h                                     |       1 -
 gnu/dist/libio/depend                                          |     352 -
 gnu/dist/libio/editbuf.cc                                      |     717 -
 gnu/dist/libio/editbuf.h                                       |     185 -
 gnu/dist/libio/filebuf.cc                                      |     215 -
 gnu/dist/libio/filedoalloc.c                                   |     107 -
 gnu/dist/libio/fileops.c                                       |     811 -
 gnu/dist/libio/floatconv.c                                     |    2375 -
 gnu/dist/libio/floatio.h                                       |      51 -
 gnu/dist/libio/fstream.cc                                      |     110 -
 gnu/dist/libio/fstream.h                                       |      92 -
 gnu/dist/libio/gen-params                                      |     734 -
 gnu/dist/libio/genops.c                                        |     946 -
 gnu/dist/libio/include/empty.h                                 |      37 -
 gnu/dist/libio/indstream.cc                                    |     121 -
 gnu/dist/libio/indstream.h                                     |      77 -
 gnu/dist/libio/ioassign.cc                                     |      49 -
 gnu/dist/libio/ioextend.cc                                     |     132 -
 gnu/dist/libio/iofclose.c                                      |      60 -
 gnu/dist/libio/iofdopen.c                                      |     134 -
 gnu/dist/libio/iofeof.c                                        |      45 -
 gnu/dist/libio/ioferror.c                                      |      45 -
 gnu/dist/libio/iofflush.c                                      |      49 -
 gnu/dist/libio/iofflush_u.c                                    |      40 -
 gnu/dist/libio/iofgetpos.c                                     |      55 -
 gnu/dist/libio/iofgets.c                                       |      56 -
 gnu/dist/libio/iofopen.c                                       |      64 -
 gnu/dist/libio/iofprintf.c                                     |      51 -
 gnu/dist/libio/iofputs.c                                       |      49 -
 gnu/dist/libio/iofread.c                                       |      49 -
 gnu/dist/libio/iofscanf.c                                      |      48 -
 gnu/dist/libio/iofsetpos.c                                     |      56 -
 gnu/dist/libio/ioftell.c                                       |      53 -
 gnu/dist/libio/iofwrite.c                                      |      54 -
 gnu/dist/libio/iogetc.c                                        |      50 -
 gnu/dist/libio/iogetdelim.c                                    |     125 -
 gnu/dist/libio/iogetline.c                                     |     112 -
 gnu/dist/libio/iogets.c                                        |      71 -
 gnu/dist/libio/ioignore.c                                      |      47 -
 gnu/dist/libio/iolibio.h                                       |      63 -
 gnu/dist/libio/iomanip.cc                                      |      90 -
 gnu/dist/libio/iomanip.h                                       |     176 -
 gnu/dist/libio/iopadn.c                                        |      70 -
 gnu/dist/libio/ioperror.c                                      |      22 -
 gnu/dist/libio/iopopen.c                                       |     245 -
 gnu/dist/libio/ioprims.c                                       |      80 -
 gnu/dist/libio/ioprintf.c                                      |      47 -
 gnu/dist/libio/ioputc.c                                        |      44 -
 gnu/dist/libio/ioputs.c                                        |      49 -
 gnu/dist/libio/ioscanf.c                                       |      47 -
 gnu/dist/libio/ioseekoff.c                                     |      54 -
 gnu/dist/libio/ioseekpos.c                                     |      48 -
 gnu/dist/libio/iosetbuffer.c                                   |      46 -
 gnu/dist/libio/iosetvbuf.c                                     |     100 -
 gnu/dist/libio/iosprintf.c                                     |      50 -
 gnu/dist/libio/iosscanf.c                                      |      47 -
 gnu/dist/libio/iostdio.h                                       |     114 -
 gnu/dist/libio/iostream.cc                                     |     990 -
 gnu/dist/libio/iostream.h                                      |     272 -
 gnu/dist/libio/iostream.texi                                   |    1971 -
 gnu/dist/libio/iostreamP.h                                     |      26 -
 gnu/dist/libio/iostrerror.c                                    |      12 -
 gnu/dist/libio/ioungetc.c                                      |      46 -
 gnu/dist/libio/iovfprintf.c                                    |     890 -
 gnu/dist/libio/iovfscanf.c                                     |     790 -
 gnu/dist/libio/iovsprintf.c                                    |      60 -
 gnu/dist/libio/iovsscanf.c                                     |      59 -
 gnu/dist/libio/isgetline.cc                                    |     141 -
 gnu/dist/libio/isgetsb.cc                                      |      59 -
 gnu/dist/libio/isscan.cc                                       |      45 -
 gnu/dist/libio/istream.h                                       |      25 -
 gnu/dist/libio/libio.h                                         |     364 -
 gnu/dist/libio/libioP.h                                        |     641 -
 gnu/dist/libio/osform.cc                                       |      66 -
 gnu/dist/libio/ostream.h                                       |      25 -
 gnu/dist/libio/outfloat.c                                      |     211 -
 gnu/dist/libio/parsestream.cc                                  |     317 -
 gnu/dist/libio/parsestream.h                                   |     156 -
 gnu/dist/libio/peekc.c                                         |      42 -
 gnu/dist/libio/pfstream.cc                                     |      92 -
 gnu/dist/libio/pfstream.h                                      |      59 -
 gnu/dist/libio/procbuf.cc                                      |      55 -
 gnu/dist/libio/procbuf.h                                       |      50 -
 gnu/dist/libio/sbform.cc                                       |      40 -
 gnu/dist/libio/sbgetline.cc                                    |      31 -
 gnu/dist/libio/sbscan.cc                                       |      45 -
 gnu/dist/libio/stdfiles.c                                      |      51 -
 gnu/dist/libio/stdio/Makefile.in                               |      35 -
 gnu/dist/libio/stdio/clearerr.c                                |      30 -
 gnu/dist/libio/stdio/clearerr_u.c                              |      28 -
 gnu/dist/libio/stdio/configure.in                              |      49 -
 gnu/dist/libio/stdio/fdopen.c                                  |       9 -
 gnu/dist/libio/stdio/feof.c                                    |      43 -
 gnu/dist/libio/stdio/feof_u.c                                  |      37 -
 gnu/dist/libio/stdio/ferror.c                                  |      43 -
 gnu/dist/libio/stdio/ferror_u.c                                |      37 -
 gnu/dist/libio/stdio/fgetc.c                                   |      40 -
 gnu/dist/libio/stdio/fileno.c                                  |      49 -
 gnu/dist/libio/stdio/fputc.c                                   |      41 -
 gnu/dist/libio/stdio/fputc_u.c                                 |      38 -
 gnu/dist/libio/stdio/freopen.c                                 |      44 -
 gnu/dist/libio/stdio/fseek.c                                   |      42 -
 gnu/dist/libio/stdio/getc.c                                    |      48 -
 gnu/dist/libio/stdio/getc_u.c                                  |      37 -
 gnu/dist/libio/stdio/getchar.c                                 |      40 -
 gnu/dist/libio/stdio/getchar_u.c                               |      35 -
 gnu/dist/libio/stdio/getline.c                                 |      13 -
 gnu/dist/libio/stdio/getw.c                                    |      13 -
 gnu/dist/libio/stdio/obprintf.c                                |     168 -
 gnu/dist/libio/stdio/popen.c                                   |      23 -
 gnu/dist/libio/stdio/putc.c                                    |      42 -
 gnu/dist/libio/stdio/putc_u.c                                  |      31 -
 gnu/dist/libio/stdio/putchar.c                                 |      35 -
 gnu/dist/libio/stdio/putchar_u.c                               |      30 -
 gnu/dist/libio/stdio/putw.c                                    |      15 -
 gnu/dist/libio/stdio/rewind.c                                  |      38 -
 gnu/dist/libio/stdio/setbuf.c                                  |      35 -
 gnu/dist/libio/stdio/setfileno.c                               |      17 -
 gnu/dist/libio/stdio/setlinebuf.c                              |      36 -
 gnu/dist/libio/stdio/snprintf.c                                |      51 -
 gnu/dist/libio/stdio/stdio.h                                   |     219 -
 gnu/dist/libio/stdio/vasprintf.c                               |      72 -
 gnu/dist/libio/stdio/vfprintf.c                                |      35 -
 gnu/dist/libio/stdio/vfscanf.c                                 |      36 -
 gnu/dist/libio/stdio/vprintf.c                                 |      33 -
 gnu/dist/libio/stdio/vscanf.c                                  |      41 -
 gnu/dist/libio/stdio/vsnprintf.c                               |     136 -
 gnu/dist/libio/stdiostream.cc                                  |     159 -
 gnu/dist/libio/stdiostream.h                                   |      79 -
 gnu/dist/libio/stdstrbufs.cc                                   |     126 -
 gnu/dist/libio/stdstreams.cc                                   |     153 -
 gnu/dist/libio/stream.cc                                       |     170 -
 gnu/dist/libio/stream.h                                        |      59 -
 gnu/dist/libio/streambuf.cc                                    |     364 -
 gnu/dist/libio/streambuf.h                                     |     488 -
 gnu/dist/libio/strfile.h                                       |      71 -
 gnu/dist/libio/strops.c                                        |     303 -
 gnu/dist/libio/strstream.cc                                    |     116 -
 gnu/dist/libio/strstream.h                                     |     113 -
 gnu/dist/libstdc++/Makefile.in                                 |     322 -
 gnu/dist/libstdc++/NEWS                                        |       9 -
 gnu/dist/libstdc++/cassert                                     |       7 -
 gnu/dist/libstdc++/cctype                                      |       7 -
 gnu/dist/libstdc++/cerrno                                      |       7 -
 gnu/dist/libstdc++/cfloat                                      |       7 -
 gnu/dist/libstdc++/cinst.cc                                    |     155 -
 gnu/dist/libstdc++/ciso646                                     |       7 -
 gnu/dist/libstdc++/climits                                     |       7 -
 gnu/dist/libstdc++/clocale                                     |       7 -
 gnu/dist/libstdc++/cmath                                       |      76 -
 gnu/dist/libstdc++/cmathi.cc                                   |       7 -
 gnu/dist/libstdc++/complex                                     |      18 -
 gnu/dist/libstdc++/complex.h                                   |       6 -
 gnu/dist/libstdc++/config/aix.ml                               |       8 -
 gnu/dist/libstdc++/config/dec-osf.ml                           |       6 -
 gnu/dist/libstdc++/config/delta.mt                             |       2 -
 gnu/dist/libstdc++/config/elf.ml                               |       8 -
 gnu/dist/libstdc++/config/elfshlibm.ml                         |       6 -
 gnu/dist/libstdc++/config/hpux.ml                              |       6 -
 gnu/dist/libstdc++/config/irix5.ml                             |       6 -
 gnu/dist/libstdc++/config/linux.ml                             |       6 -
 gnu/dist/libstdc++/config/linux.mt                             |       2 -
 gnu/dist/libstdc++/config/openbsd.ml                           |       7 -
 gnu/dist/libstdc++/config/openbsd.mt                           |       3 -
 gnu/dist/libstdc++/config/sol2shm.ml                           |       6 -
 gnu/dist/libstdc++/config/sunos4.ml                            |       9 -
 gnu/dist/libstdc++/configure.in                                |     119 -
 gnu/dist/libstdc++/csetjmp                                     |       8 -
 gnu/dist/libstdc++/csignal                                     |       7 -
 gnu/dist/libstdc++/cstdarg                                     |       7 -
 gnu/dist/libstdc++/cstddef                                     |       7 -
 gnu/dist/libstdc++/cstdio                                      |       7 -
 gnu/dist/libstdc++/cstdlib                                     |      23 -
 gnu/dist/libstdc++/cstdlibi.cc                                 |       7 -
 gnu/dist/libstdc++/cstring                                     |      96 -
 gnu/dist/libstdc++/cstringi.cc                                 |       7 -
 gnu/dist/libstdc++/ctime                                       |       7 -
 gnu/dist/libstdc++/cwchar                                      |       7 -
 gnu/dist/libstdc++/cwctype                                     |       7 -
 gnu/dist/libstdc++/fstream                                     |       7 -
 gnu/dist/libstdc++/iomanip                                     |       7 -
 gnu/dist/libstdc++/iosfwd                                      |      15 -
 gnu/dist/libstdc++/iostream                                    |       7 -
 gnu/dist/libstdc++/sinst.cc                                    |     132 -
 gnu/dist/libstdc++/std/bastring.cc                             |     524 -
 gnu/dist/libstdc++/std/bastring.h                              |     629 -
 gnu/dist/libstdc++/std/bastring_inst.h                         |      31 -
 gnu/dist/libstdc++/std/complext.cc                             |     273 -
 gnu/dist/libstdc++/std/complext.h                              |     412 -
 gnu/dist/libstdc++/std/complext_inst.h                         |      46 -
 gnu/dist/libstdc++/std/dcomplex.h                              |      91 -
 gnu/dist/libstdc++/std/fcomplex.h                              |      87 -
 gnu/dist/libstdc++/std/ldcomplex.h                             |      95 -
 gnu/dist/libstdc++/std/straits.h                               |     161 -
 gnu/dist/libstdc++/stdexcept                                   |     101 -
 gnu/dist/libstdc++/stdexcepti.cc                               |      21 -
 gnu/dist/libstdc++/stl.h                                       |      15 -
 gnu/dist/libstdc++/stl/README                                  |      16 -
 gnu/dist/libstdc++/stl/algo.h                                  |     114 -
 gnu/dist/libstdc++/stl/algobase.h                              |      71 -
 gnu/dist/libstdc++/stl/algorithm                               |      39 -
 gnu/dist/libstdc++/stl/alloc.h                                 |      44 -
 gnu/dist/libstdc++/stl/bvector.h                               |      51 -
 gnu/dist/libstdc++/stl/defalloc.h                              |      86 -
 gnu/dist/libstdc++/stl/deque                                   |      40 -
 gnu/dist/libstdc++/stl/deque.h                                 |      42 -
 gnu/dist/libstdc++/stl/function.h                              |     118 -
 gnu/dist/libstdc++/stl/functional                              |      26 -
 gnu/dist/libstdc++/stl/hash_map                                |      40 -
 gnu/dist/libstdc++/stl/hash_map.h                              |      48 -
 gnu/dist/libstdc++/stl/hash_set                                |      40 -
 gnu/dist/libstdc++/stl/hash_set.h                              |      43 -
 gnu/dist/libstdc++/stl/hashtable.h                             |      48 -
 gnu/dist/libstdc++/stl/heap.h                                  |      46 -
 gnu/dist/libstdc++/stl/iterator                                |      40 -
 gnu/dist/libstdc++/stl/iterator.h                              |     104 -
 gnu/dist/libstdc++/stl/list                                    |      40 -
 gnu/dist/libstdc++/stl/list.h                                  |      42 -
 gnu/dist/libstdc++/stl/map                                     |      40 -
 gnu/dist/libstdc++/stl/map.h                                   |      41 -
 gnu/dist/libstdc++/stl/memory                                  |      89 -
 gnu/dist/libstdc++/stl/multimap.h                              |      41 -
 gnu/dist/libstdc++/stl/multiset.h                              |      41 -
 gnu/dist/libstdc++/stl/numeric                                 |      42 -
 gnu/dist/libstdc++/stl/pair.h                                  |      51 -
 gnu/dist/libstdc++/stl/pthread_alloc                           |     347 -
 gnu/dist/libstdc++/stl/pthread_alloc.h                         |      31 -
 gnu/dist/libstdc++/stl/queue                                   |      45 -
 gnu/dist/libstdc++/stl/rope                                    |      32 -
 gnu/dist/libstdc++/stl/rope.h                                  |      34 -
 gnu/dist/libstdc++/stl/ropeimpl.h                              |    1537 -
 gnu/dist/libstdc++/stl/set                                     |      40 -
 gnu/dist/libstdc++/stl/set.h                                   |      41 -
 gnu/dist/libstdc++/stl/slist                                   |      28 -
 gnu/dist/libstdc++/stl/slist.h                                 |      30 -
 gnu/dist/libstdc++/stl/stack                                   |      41 -
 gnu/dist/libstdc++/stl/stack.h                                 |      46 -
 gnu/dist/libstdc++/stl/stl_algo.h                              |    2674 -
 gnu/dist/libstdc++/stl/stl_algobase.h                          |     442 -
 gnu/dist/libstdc++/stl/stl_alloc.h                             |     704 -
 gnu/dist/libstdc++/stl/stl_bvector.h                           |     616 -
 gnu/dist/libstdc++/stl/stl_config.h                            |     250 -
 gnu/dist/libstdc++/stl/stl_construct.h                         |      78 -
 gnu/dist/libstdc++/stl/stl_deque.h                             |    1335 -
 gnu/dist/libstdc++/stl/stl_function.h                          |     628 -
 gnu/dist/libstdc++/stl/stl_hash_fun.h                          |      93 -
 gnu/dist/libstdc++/stl/stl_hash_map.h                          |     358 -
 gnu/dist/libstdc++/stl/stl_hash_set.h                          |     343 -
 gnu/dist/libstdc++/stl/stl_hashtable.h                         |     948 -
 gnu/dist/libstdc++/stl/stl_heap.h                              |     226 -
 gnu/dist/libstdc++/stl/stl_iterator.h                          |     843 -
 gnu/dist/libstdc++/stl/stl_list.h                              |     617 -
 gnu/dist/libstdc++/stl/stl_map.h                               |     217 -
 gnu/dist/libstdc++/stl/stl_multimap.h                          |     214 -
 gnu/dist/libstdc++/stl/stl_multiset.h                          |     200 -
 gnu/dist/libstdc++/stl/stl_numeric.h                           |     196 -
 gnu/dist/libstdc++/stl/stl_pair.h                              |      73 -
 gnu/dist/libstdc++/stl/stl_queue.h                             |     134 -
 gnu/dist/libstdc++/stl/stl_raw_storage_iter.h                  |      81 -
 gnu/dist/libstdc++/stl/stl_relops.h                            |      62 -
 gnu/dist/libstdc++/stl/stl_rope.h                              |    2112 -
 gnu/dist/libstdc++/stl/stl_set.h                               |     198 -
 gnu/dist/libstdc++/stl/stl_slist.h                             |     740 -
 gnu/dist/libstdc++/stl/stl_stack.h                             |      76 -
 gnu/dist/libstdc++/stl/stl_tempbuf.h                           |     123 -
 gnu/dist/libstdc++/stl/stl_tree.h                              |    1099 -
 gnu/dist/libstdc++/stl/stl_uninitialized.h                     |     242 -
 gnu/dist/libstdc++/stl/stl_vector.h                            |     534 -
 gnu/dist/libstdc++/stl/tempbuf.h                               |      58 -
 gnu/dist/libstdc++/stl/tree.h                                  |      46 -
 gnu/dist/libstdc++/stl/type_traits.h                           |     233 -
 gnu/dist/libstdc++/stl/utility                                 |      38 -
 gnu/dist/libstdc++/stl/vector                                  |      41 -
 gnu/dist/libstdc++/stl/vector.h                                |      42 -
 gnu/dist/libstdc++/stlinst.cc                                  |       8 -
 gnu/dist/libstdc++/string                                      |      13 -
 gnu/dist/libstdc++/strstream                                   |       7 -
 gnu/dist/move-if-change                                        |      32 -
 gnu/dist/opcodes/Makefile.am                                   |     258 -
 gnu/dist/opcodes/Makefile.in                                   |     625 -
 gnu/dist/opcodes/a29k-dis.c                                    |     353 -
 gnu/dist/opcodes/acconfig.h                                    |       6 -
 gnu/dist/opcodes/acinclude.m4                                  |       1 -
 gnu/dist/opcodes/aclocal.m4                                    |     460 -
 gnu/dist/opcodes/alpha-dis.c                                   |     199 -
 gnu/dist/opcodes/alpha-opc.c                                   |    1422 -
 gnu/dist/opcodes/arc-dis.c                                     |     266 -
 gnu/dist/opcodes/arc-opc.c                                     |    1128 -
 gnu/dist/opcodes/arm-dis.c                                     |     830 -
 gnu/dist/opcodes/arm-opc.h                                     |     280 -
 gnu/dist/opcodes/cgen-asm.c                                    |     296 -
 gnu/dist/opcodes/cgen-dis.c                                    |     176 -
 gnu/dist/opcodes/cgen-opc.c                                    |     332 -
 gnu/dist/opcodes/config.in                                     |      16 -
 gnu/dist/opcodes/configure                                     |    2365 -
 gnu/dist/opcodes/configure.in                                  |     181 -
 gnu/dist/opcodes/d10v-dis.c                                    |     300 -
 gnu/dist/opcodes/d10v-opc.c                                    |     334 -
 gnu/dist/opcodes/dep-in.sed                                    |      20 -
 gnu/dist/opcodes/dis-buf.c                                     |      80 -
 gnu/dist/opcodes/disassemble.c                                 |     220 -
 gnu/dist/opcodes/h8300-dis.c                                   |     456 -
 gnu/dist/opcodes/h8500-dis.c                                   |     344 -
 gnu/dist/opcodes/h8500-opc.h                                   |    3836 -
 gnu/dist/opcodes/hppa-dis.c                                    |     620 -
 gnu/dist/opcodes/i386-dis.c                                    |    2300 -
 gnu/dist/opcodes/i960-dis.c                                    |     914 -
 gnu/dist/opcodes/m10200-dis.c                                  |     335 -
 gnu/dist/opcodes/m10200-opc.c                                  |     360 -
 gnu/dist/opcodes/m10300-dis.c                                  |     540 -
 gnu/dist/opcodes/m10300-opc.c                                  |     514 -
 gnu/dist/opcodes/m32r-asm.c                                    |     778 -
 gnu/dist/opcodes/m32r-dis.c                                    |     627 -
 gnu/dist/opcodes/m32r-opc.c                                    |    2105 -
 gnu/dist/opcodes/m32r-opc.h                                    |     261 -
 gnu/dist/opcodes/m68k-dis.c                                    |    1233 -
 gnu/dist/opcodes/m68k-opc.c                                    |    2097 -
 gnu/dist/opcodes/m88k-dis.c                                    |     328 -
 gnu/dist/opcodes/makefile.vms                                  |      35 -
 gnu/dist/opcodes/mips-dis.c                                    |     997 -
 gnu/dist/opcodes/mips-opc.c                                    |     759 -
 gnu/dist/opcodes/mips16-opc.c                                  |     225 -
 gnu/dist/opcodes/ns32k-dis.c                                   |     888 -
 gnu/dist/opcodes/ppc-dis.c                                     |     238 -
 gnu/dist/opcodes/ppc-opc.c                                     |    3031 -
 gnu/dist/opcodes/sh-dis.c                                      |     387 -
 gnu/dist/opcodes/sh-opc.h                                      |     573 -
 gnu/dist/opcodes/sparc-dis.c                                   |     961 -
 gnu/dist/opcodes/sparc-opc.c                                   |    1920 -
 gnu/dist/opcodes/stamp-h.in                                    |       1 -
 gnu/dist/opcodes/sysdep.h                                      |      42 -
 gnu/dist/opcodes/tic30-dis.c                                   |     711 -
 gnu/dist/opcodes/v850-dis.c                                    |     253 -
 gnu/dist/opcodes/v850-opc.c                                    |     494 -
 gnu/dist/opcodes/vax-dis.c                                     |     421 -
 gnu/dist/opcodes/w65-dis.c                                     |     118 -
 gnu/dist/opcodes/w65-opc.h                                     |     548 -
 gnu/dist/opcodes/z8k-dis.c                                     |     574 -
 gnu/dist/opcodes/z8k-opc.h                                     |    4438 -
 gnu/dist/opcodes/z8kgen.c                                      |    1313 -
 gnu/dist/readline/doc/inc-hist.texi                            |     159 -
 gnu/dist/readline/doc/rluser.texinfo                           |     566 -
 gnu/dist/sim/Makefile.in                                       |     164 -
 gnu/dist/sim/arm/COPYING                                       |     339 -
 gnu/dist/sim/arm/Makefile.in                                   |     165 -
 gnu/dist/sim/arm/README.Cygnus                                 |      27 -
 gnu/dist/sim/arm/armcopro.c                                    |     357 -
 gnu/dist/sim/arm/armdefs.h                                     |     343 -
 gnu/dist/sim/arm/armemu.c                                      |    2642 -
 gnu/dist/sim/arm/armemu.h                                      |     381 -
 gnu/dist/sim/arm/armfpe.h                                      |    1351 -
 gnu/dist/sim/arm/arminit.c                                     |     293 -
 gnu/dist/sim/arm/armopts.h                                     |      30 -
 gnu/dist/sim/arm/armos.c                                       |     851 -
 gnu/dist/sim/arm/armos.h                                       |      66 -
 gnu/dist/sim/arm/armrdi.c                                      |    1044 -
 gnu/dist/sim/arm/armsupp.c                                     |     709 -
 gnu/dist/sim/arm/armvirt.c                                     |     477 -
 gnu/dist/sim/arm/bag.c                                         |     141 -
 gnu/dist/sim/arm/bag.h                                         |      42 -
 gnu/dist/sim/arm/communicate.c                                 |     221 -
 gnu/dist/sim/arm/communicate.h                                 |      37 -
 gnu/dist/sim/arm/configure                                     |     964 -
 gnu/dist/sim/arm/configure.in                                  |      18 -
 gnu/dist/sim/arm/dbg_conf.h                                    |      48 -
 gnu/dist/sim/arm/dbg_cp.h                                      |      62 -
 gnu/dist/sim/arm/dbg_hif.h                                     |      47 -
 gnu/dist/sim/arm/dbg_rdi.h                                     |     323 -
 gnu/dist/sim/arm/gdbhost.c                                     |     107 -
 gnu/dist/sim/arm/gdbhost.h                                     |      23 -
 gnu/dist/sim/arm/kid.c                                         |     510 -
 gnu/dist/sim/arm/main.c                                        |     183 -
 gnu/dist/sim/arm/parent.c                                      |     483 -
 gnu/dist/sim/arm/run.c                                         |     157 -
 gnu/dist/sim/arm/wrapper.c                                     |     310 -
 gnu/dist/sim/common/run.1                                      |     107 -
 gnu/dist/sim/common/run.c                                      |     160 -
 gnu/dist/sim/configure                                         |    1461 -
 gnu/dist/sim/configure.in                                      |      62 -
 gnu/dist/sim/h8300/Makefile.in                                 |     130 -
 gnu/dist/sim/h8300/compile.c                                   |    1863 -
 gnu/dist/sim/h8300/config.in                                   |       7 -
 gnu/dist/sim/h8300/configure                                   |    1142 -
 gnu/dist/sim/h8300/configure.in                                |      23 -
 gnu/dist/sim/h8300/inst.h                                      |      76 -
 gnu/dist/sim/h8300/run.c                                       |     135 -
 gnu/dist/sim/h8300/writecode.c                                 |    1033 -
 gnu/dist/sim/h8500/Makefile.in                                 |     131 -
 gnu/dist/sim/h8500/compile.c                                   |    2446 -
 gnu/dist/sim/h8500/config.in                                   |       7 -
 gnu/dist/sim/h8500/configure                                   |    1142 -
 gnu/dist/sim/h8500/configure.in                                |      23 -
 gnu/dist/sim/h8500/inst.h                                      |     101 -
 gnu/dist/sim/h8500/run.c                                       |     148 -
 gnu/dist/sim/ppc/.gdbinit                                      |       2 -
 gnu/dist/sim/ppc/BUGS                                          |     123 -
 gnu/dist/sim/ppc/COPYING                                       |     340 -
 gnu/dist/sim/ppc/COPYING.LIB                                   |     481 -
 gnu/dist/sim/ppc/INSTALL                                       |     812 -
 gnu/dist/sim/ppc/Makefile.in                                   |     653 -
 gnu/dist/sim/ppc/README                                        |     353 -
 gnu/dist/sim/ppc/RUN                                           |     949 -
 gnu/dist/sim/ppc/basics.h                                      |     139 -
 gnu/dist/sim/ppc/bits.c                                        |     114 -
 gnu/dist/sim/ppc/bits.h                                        |     257 -
 gnu/dist/sim/ppc/cap.c                                         |     134 -
 gnu/dist/sim/ppc/cap.h                                         |      60 -
 gnu/dist/sim/ppc/config.in                                     |     259 -
 gnu/dist/sim/ppc/configure                                     |    3359 -
 gnu/dist/sim/ppc/configure.in                                  |     737 -
 gnu/dist/sim/ppc/corefile-n.h                                  |      97 -
 gnu/dist/sim/ppc/corefile.c                                    |     405 -
 gnu/dist/sim/ppc/corefile.h                                    |     227 -
 gnu/dist/sim/ppc/cpu.c                                         |     404 -
 gnu/dist/sim/ppc/cpu.h                                         |     254 -
 gnu/dist/sim/ppc/dc-complex                                    |      58 -
 gnu/dist/sim/ppc/dc-simple                                     |      25 -
 gnu/dist/sim/ppc/dc-stupid                                     |      58 -
 gnu/dist/sim/ppc/dc-test.01                                    |      24 -
 gnu/dist/sim/ppc/dc-test.02                                    |      24 -
 gnu/dist/sim/ppc/debug.c                                       |     153 -
 gnu/dist/sim/ppc/debug.h                                       |     172 -
 gnu/dist/sim/ppc/device.c                                      |    1998 -
 gnu/dist/sim/ppc/device.h                                      |     797 -
 gnu/dist/sim/ppc/device_table.c                                |     310 -
 gnu/dist/sim/ppc/device_table.h                                |     323 -
 gnu/dist/sim/ppc/dgen.c                                        |     336 -
 gnu/dist/sim/ppc/double.c                                      |      42 -
 gnu/dist/sim/ppc/dp-bit.c                                      |    1307 -
 gnu/dist/sim/ppc/emul_bugapi.c                                 |     581 -
 gnu/dist/sim/ppc/emul_bugapi.h                                 |      27 -
 gnu/dist/sim/ppc/emul_chirp.c                                  |    2008 -
 gnu/dist/sim/ppc/emul_chirp.h                                  |      75 -
 gnu/dist/sim/ppc/emul_generic.c                                |     344 -
 gnu/dist/sim/ppc/emul_generic.h                                |     178 -
 gnu/dist/sim/ppc/emul_netbsd.c                                 |    1424 -
 gnu/dist/sim/ppc/emul_netbsd.h                                 |      27 -
 gnu/dist/sim/ppc/emul_unix.c                                   |    2809 -
 gnu/dist/sim/ppc/emul_unix.h                                   |      28 -
 gnu/dist/sim/ppc/events.c                                      |     369 -
 gnu/dist/sim/ppc/events.h                                      |      79 -
 gnu/dist/sim/ppc/filter.c                                      |     150 -
 gnu/dist/sim/ppc/filter.h                                      |      43 -
 gnu/dist/sim/ppc/filter_filename.c                             |      38 -
 gnu/dist/sim/ppc/filter_filename.h                             |      27 -
 gnu/dist/sim/ppc/gen-icache.c                                  |     675 -
 gnu/dist/sim/ppc/gen-icache.h                                  |      68 -
 gnu/dist/sim/ppc/gen-idecode.c                                 |    1545 -
 gnu/dist/sim/ppc/gen-idecode.h                                 |      40 -
 gnu/dist/sim/ppc/gen-itable.c                                  |     122 -
 gnu/dist/sim/ppc/gen-itable.h                                  |      28 -
 gnu/dist/sim/ppc/gen-model.c                                   |     393 -
 gnu/dist/sim/ppc/gen-model.h                                   |      30 -
 gnu/dist/sim/ppc/gen-semantics.c                               |     250 -
 gnu/dist/sim/ppc/gen-semantics.h                               |      81 -
 gnu/dist/sim/ppc/gen-support.c                                 |     132 -
 gnu/dist/sim/ppc/gen-support.h                                 |      29 -
 gnu/dist/sim/ppc/hw_com.c                                      |     559 -
 gnu/dist/sim/ppc/hw_core.c                                     |     143 -
 gnu/dist/sim/ppc/hw_cpu.c                                      |     167 -
 gnu/dist/sim/ppc/hw_cpu.h                                      |      34 -
 gnu/dist/sim/ppc/hw_disk.c                                     |     557 -
 gnu/dist/sim/ppc/hw_eeprom.c                                   |     839 -
 gnu/dist/sim/ppc/hw_glue.c                                     |     371 -
 gnu/dist/sim/ppc/hw_htab.c                                     |     683 -
 gnu/dist/sim/ppc/hw_ide.c                                      |     869 -
 gnu/dist/sim/ppc/hw_init.c                                     |     721 -
 gnu/dist/sim/ppc/hw_iobus.c                                    |     100 -
 gnu/dist/sim/ppc/hw_memory.c                                   |     538 -
 gnu/dist/sim/ppc/hw_nvram.c                                    |     261 -
 gnu/dist/sim/ppc/hw_opic.c                                     |    1827 -
 gnu/dist/sim/ppc/hw_pal.c                                      |     366 -
 gnu/dist/sim/ppc/hw_phb.c                                      |    1068 -
 gnu/dist/sim/ppc/hw_phb.h                                      |      40 -
 gnu/dist/sim/ppc/hw_register.c                                 |     131 -
 gnu/dist/sim/ppc/hw_trace.c                                    |     103 -
 gnu/dist/sim/ppc/hw_vm.c                                       |     275 -
 gnu/dist/sim/ppc/idecode_branch.h                              |      62 -
 gnu/dist/sim/ppc/idecode_expression.h                          |     410 -
 gnu/dist/sim/ppc/idecode_fields.h                              |     105 -
 gnu/dist/sim/ppc/igen.c                                        |     496 -
 gnu/dist/sim/ppc/igen.h                                        |     199 -
 gnu/dist/sim/ppc/inline.c                                      |      98 -
 gnu/dist/sim/ppc/inline.h                                      |     490 -
 gnu/dist/sim/ppc/interrupts.c                                  |     532 -
 gnu/dist/sim/ppc/interrupts.h                                  |     169 -
 gnu/dist/sim/ppc/ld-cache.c                                    |     115 -
 gnu/dist/sim/ppc/ld-cache.h                                    |      81 -
 gnu/dist/sim/ppc/ld-decode.c                                   |     155 -
 gnu/dist/sim/ppc/ld-decode.h                                   |     143 -
 gnu/dist/sim/ppc/ld-insn.c                                     |     925 -
 gnu/dist/sim/ppc/ld-insn.h                                     |     281 -
 gnu/dist/sim/ppc/lf.c                                          |     440 -
 gnu/dist/sim/ppc/lf.h                                          |     129 -
 gnu/dist/sim/ppc/main.c                                        |     324 -
 gnu/dist/sim/ppc/misc.c                                        |     215 -
 gnu/dist/sim/ppc/misc.h                                        |      94 -
 gnu/dist/sim/ppc/mkinstalldirs                                 |      36 -
 gnu/dist/sim/ppc/mon.c                                         |     445 -
 gnu/dist/sim/ppc/mon.h                                         |     108 -
 gnu/dist/sim/ppc/options.c                                     |     247 -
 gnu/dist/sim/ppc/options.h                                     |      30 -
 gnu/dist/sim/ppc/os_emul.c                                     |     146 -
 gnu/dist/sim/ppc/os_emul.h                                     |      60 -
 gnu/dist/sim/ppc/pk_disklabel.c                                |     401 -
 gnu/dist/sim/ppc/ppc-cache-rules                               |      65 -
 gnu/dist/sim/ppc/ppc-instructions                              |    4836 -
 gnu/dist/sim/ppc/ppc-opcode-complex                            |      95 -
 gnu/dist/sim/ppc/ppc-opcode-flat                               |      95 -
 gnu/dist/sim/ppc/ppc-opcode-simple                             |      92 -
 gnu/dist/sim/ppc/ppc-opcode-stupid                             |      96 -
 gnu/dist/sim/ppc/ppc-opcode-test-1                             |      95 -
 gnu/dist/sim/ppc/ppc-opcode-test-2                             |      95 -
 gnu/dist/sim/ppc/ppc-spr-table                                 |      69 -
 gnu/dist/sim/ppc/ppc.mt                                        |       3 -
 gnu/dist/sim/ppc/psim.c                                        |    1021 -
 gnu/dist/sim/ppc/psim.h                                        |     182 -
 gnu/dist/sim/ppc/psim.texinfo                                  |    1105 -
 gnu/dist/sim/ppc/registers.c                                   |     164 -
 gnu/dist/sim/ppc/registers.h                                   |     324 -
 gnu/dist/sim/ppc/sim-endian-n.h                                |     134 -
 gnu/dist/sim/ppc/sim-endian.c                                  |      74 -
 gnu/dist/sim/ppc/sim-endian.h                                  |     409 -
 gnu/dist/sim/ppc/sim_callbacks.h                               |     105 -
 gnu/dist/sim/ppc/sim_calls.c                                   |     408 -
 gnu/dist/sim/ppc/std-config.h                                  |     672 -
 gnu/dist/sim/ppc/table.c                                       |     273 -
 gnu/dist/sim/ppc/table.h                                       |      60 -
 gnu/dist/sim/ppc/tree.c                                        |    1256 -
 gnu/dist/sim/ppc/tree.h                                        |     139 -
 gnu/dist/sim/ppc/vm.c                                          |    1198 -
 gnu/dist/sim/ppc/vm.h                                          |     155 -
 gnu/dist/sim/ppc/vm_n.h                                        |     134 -
 gnu/dist/sim/ppc/words.h                                       |     107 -
 gnu/dist/sim/sh/Makefile.in                                    |     152 -
 gnu/dist/sim/sh/configure                                      |     999 -
 gnu/dist/sim/sh/configure.in                                   |      27 -
 gnu/dist/sim/sh/gencode.c                                      |     825 -
 gnu/dist/sim/sh/interp.c                                       |    1255 -
 gnu/dist/sim/sh/syscall.h                                      |      33 -
 gnu/dist/sim/w65/Makefile.in                                   |     239 -
 gnu/dist/sim/w65/acconfig.h                                    |       2 -
 gnu/dist/sim/w65/config.in                                     |      13 -
 gnu/dist/sim/w65/configure                                     |    1209 -
 gnu/dist/sim/w65/configure.in                                  |      42 -
 gnu/dist/sim/w65/gencode.c                                     |     991 -
 gnu/dist/sim/w65/interp.c                                      |     383 -
 gnu/dist/sim/w65/interp.h                                      |     194 -
 gnu/dist/sim/w65/run.c                                         |     131 -
 gnu/dist/sim/z8k/Makefile.in                                   |     179 -
 gnu/dist/sim/z8k/comped1.c                                     |      31 -
 gnu/dist/sim/z8k/comped2.c                                     |      25 -
 gnu/dist/sim/z8k/comped3.c                                     |      28 -
 gnu/dist/sim/z8k/compedb3.c                                    |      29 -
 gnu/dist/sim/z8k/config.in                                     |      16 -
 gnu/dist/sim/z8k/configure                                     |    1177 -
 gnu/dist/sim/z8k/configure.in                                  |      32 -
 gnu/dist/sim/z8k/iface.c                                       |     193 -
 gnu/dist/sim/z8k/inlines.h                                     |     486 -
 gnu/dist/sim/z8k/list.c                                        |   11266 -
 gnu/dist/sim/z8k/mem.c                                         |     126 -
 gnu/dist/sim/z8k/mem.h                                         |       8 -
 gnu/dist/sim/z8k/quick.c                                       |     783 -
 gnu/dist/sim/z8k/run.c                                         |     115 -
 gnu/dist/sim/z8k/sim.h                                         |       9 -
 gnu/dist/sim/z8k/support.c                                     |     783 -
 gnu/dist/sim/z8k/syscall.h                                     |      43 -
 gnu/dist/sim/z8k/tm.h                                          |     193 -
 gnu/dist/sim/z8k/writecode.c                                   |    2011 -
 gnu/dist/symlink-tree                                          |      46 -
 gnu/dist/texinfo/ABOUT-NLS                                     |     225 -
 gnu/dist/texinfo/AUTHORS                                       |       3 -
 gnu/dist/texinfo/COPYING                                       |     340 -
 gnu/dist/texinfo/ChangeLog                                     |    3463 -
 gnu/dist/texinfo/INSTALL                                       |     181 -
 gnu/dist/texinfo/INTRODUCTION                                  |     111 -
 gnu/dist/texinfo/Makefile.am                                   |      16 -
 gnu/dist/texinfo/Makefile.in                                   |     347 -
 gnu/dist/texinfo/NEWS                                          |     335 -
 gnu/dist/texinfo/README                                        |     127 -
 gnu/dist/texinfo/TODO                                          |      79 -
 gnu/dist/texinfo/acconfig.h                                    |      51 -
 gnu/dist/texinfo/aclocal.m4                                    |     513 -
 gnu/dist/texinfo/config.guess                                  |     890 -
 gnu/dist/texinfo/config.h.in                                   |     257 -
 gnu/dist/texinfo/config.sub                                    |     952 -
 gnu/dist/texinfo/configure                                     |    4182 -
 gnu/dist/texinfo/configure.in                                  |      80 -
 gnu/dist/texinfo/dir-example                                   |     341 -
 gnu/dist/texinfo/doc/Makefile.am                               |      57 -
 gnu/dist/texinfo/doc/Makefile.in                               |     332 -
 gnu/dist/texinfo/doc/README                                    |      27 -
 gnu/dist/texinfo/doc/epsf.tex                                  |     546 -
 gnu/dist/texinfo/doc/info-stnd.texi                            |    1373 -
 gnu/dist/texinfo/doc/info.texi                                 |     911 -
 gnu/dist/texinfo/doc/macro.texi                                |     177 -
 gnu/dist/texinfo/doc/texinfo.tex                               |    4977 -
 gnu/dist/texinfo/doc/texinfo.txi                               |   17280 -
 gnu/dist/texinfo/doc/userdoc.texi                              |    1270 -
 gnu/dist/texinfo/gpl.texinfo                                   |     398 -
 gnu/dist/texinfo/info/Makefile.am                              |      45 -
 gnu/dist/texinfo/info/Makefile.in                              |     435 -
 gnu/dist/texinfo/info/README                                   |      26 -
 gnu/dist/texinfo/info/dir.c                                    |     293 -
 gnu/dist/texinfo/info/display.c                                |     557 -
 gnu/dist/texinfo/info/display.h                                |      77 -
 gnu/dist/texinfo/info/doc.c                                    |     129 -
 gnu/dist/texinfo/info/doc.h                                    |      50 -
 gnu/dist/texinfo/info/dribble.c                                |      71 -
 gnu/dist/texinfo/info/dribble.h                                |      41 -
 gnu/dist/texinfo/info/echo-area.c                              |    1503 -
 gnu/dist/texinfo/info/echo-area.h                              |      64 -
 gnu/dist/texinfo/info/filesys.c                                |     584 -
 gnu/dist/texinfo/info/filesys.h                                |      85 -
 gnu/dist/texinfo/info/footnotes.c                              |     261 -
 gnu/dist/texinfo/info/footnotes.h                              |      46 -
 gnu/dist/texinfo/info/funs.h                                   |     111 -
 gnu/dist/texinfo/info/gc.c                                     |      95 -
 gnu/dist/texinfo/info/gc.h                                     |      37 -
 gnu/dist/texinfo/info/indices.c                                |     727 -
 gnu/dist/texinfo/info/indices.h                                |      42 -
 gnu/dist/texinfo/info/info-utils.c                             |     665 -
 gnu/dist/texinfo/info/info-utils.h                             |     140 -
 gnu/dist/texinfo/info/info.c                                   |     628 -
 gnu/dist/texinfo/info/info.h                                   |     165 -
 gnu/dist/texinfo/info/infodoc.c                                |     770 -
 gnu/dist/texinfo/info/infomap.c                                |     368 -
 gnu/dist/texinfo/info/infomap.h                                |      82 -
 gnu/dist/texinfo/info/m-x.c                                    |     190 -
 gnu/dist/texinfo/info/makedoc.c                                |     466 -
 gnu/dist/texinfo/info/man.c                                    |     634 -
 gnu/dist/texinfo/info/man.h                                    |      37 -
 gnu/dist/texinfo/info/nodemenu.c                               |     339 -
 gnu/dist/texinfo/info/nodes.c                                  |    1185 -
 gnu/dist/texinfo/info/nodes.h                                  |     169 -
 gnu/dist/texinfo/info/search.c                                 |     519 -
 gnu/dist/texinfo/info/search.h                                 |      75 -
 gnu/dist/texinfo/info/session.c                                |    4252 -
 gnu/dist/texinfo/info/session.h                                |     146 -
 gnu/dist/texinfo/info/signals.c                                |     172 -
 gnu/dist/texinfo/info/signals.h                                |      96 -
 gnu/dist/texinfo/info/termdep.h                                |      57 -
 gnu/dist/texinfo/info/terminal.c                               |     843 -
 gnu/dist/texinfo/info/terminal.h                               |     125 -
 gnu/dist/texinfo/info/tilde.c                                  |     366 -
 gnu/dist/texinfo/info/tilde.h                                  |      56 -
 gnu/dist/texinfo/info/variables.c                              |     275 -
 gnu/dist/texinfo/info/variables.h                              |      65 -
 gnu/dist/texinfo/info/window.c                                 |    1480 -
 gnu/dist/texinfo/info/window.h                                 |     231 -
 gnu/dist/texinfo/install-sh                                    |     250 -
 gnu/dist/texinfo/intl/ChangeLog                                |    1022 -
 gnu/dist/texinfo/intl/Makefile.in                              |     214 -
 gnu/dist/texinfo/intl/VERSION                                  |       1 -
 gnu/dist/texinfo/intl/bindtextdom.c                            |     199 -
 gnu/dist/texinfo/intl/cat-compat.c                             |     262 -
 gnu/dist/texinfo/intl/dcgettext.c                              |     593 -
 gnu/dist/texinfo/intl/dgettext.c                               |      59 -
 gnu/dist/texinfo/intl/explodename.c                            |     181 -
 gnu/dist/texinfo/intl/finddomain.c                             |     189 -
 gnu/dist/texinfo/intl/gettext.c                                |      70 -
 gnu/dist/texinfo/intl/gettext.h                                |     105 -
 gnu/dist/texinfo/intl/gettextP.h                               |      73 -
 gnu/dist/texinfo/intl/hash-string.h                            |      63 -
 gnu/dist/texinfo/intl/intl-compat.c                            |      76 -
 gnu/dist/texinfo/intl/l10nflist.c                              |     409 -
 gnu/dist/texinfo/intl/libgettext.h                             |     182 -
 gnu/dist/texinfo/intl/linux-msg.sed                            |     100 -
 gnu/dist/texinfo/intl/loadinfo.h                               |      58 -
 gnu/dist/texinfo/intl/loadmsgcat.c                             |     199 -
 gnu/dist/texinfo/intl/localealias.c                            |     378 -
 gnu/dist/texinfo/intl/po2tbl.sed.in                            |     102 -
 gnu/dist/texinfo/intl/textdomain.c                             |     106 -
 gnu/dist/texinfo/intl/xopen-msg.sed                            |     110 -
 gnu/dist/texinfo/lgpl.texinfo                                  |     548 -
 gnu/dist/texinfo/lib/Makefile.am                               |      15 -
 gnu/dist/texinfo/lib/Makefile.in                               |     273 -
 gnu/dist/texinfo/lib/README                                    |       4 -
 gnu/dist/texinfo/lib/alloca.c                                  |     504 -
 gnu/dist/texinfo/lib/getopt.c                                  |    1048 -
 gnu/dist/texinfo/lib/getopt.h                                  |     133 -
 gnu/dist/texinfo/lib/getopt1.c                                 |     189 -
 gnu/dist/texinfo/lib/memcpy.c                                  |      20 -
 gnu/dist/texinfo/lib/memmove.c                                 |      24 -
 gnu/dist/texinfo/lib/strdup.c                                  |      43 -
 gnu/dist/texinfo/lib/strerror.c                                |      43 -
 gnu/dist/texinfo/lib/system.h                                  |     102 -
 gnu/dist/texinfo/lib/xmalloc.c                                 |      80 -
 gnu/dist/texinfo/lib/xstrdup.c                                 |      42 -
 gnu/dist/texinfo/makeinfo/Makefile.am                          |      13 -
 gnu/dist/texinfo/makeinfo/Makefile.in                          |     289 -
 gnu/dist/texinfo/makeinfo/README                               |       8 -
 gnu/dist/texinfo/makeinfo/makeinfo.c                           |    9587 -
 gnu/dist/texinfo/makeinfo/makeinfo.h                           |     195 -
 gnu/dist/texinfo/makeinfo/multi.c                              |     434 -
 gnu/dist/texinfo/missing                                       |     142 -
 gnu/dist/texinfo/mkinstalldirs                                 |      40 -
 gnu/dist/texinfo/po/Makefile.in.in                             |     247 -
 gnu/dist/texinfo/po/POTFILES.in                                |      22 -
 gnu/dist/texinfo/po/cat-id-tbl.c                               |     505 -
 gnu/dist/texinfo/po/de.gmo                                     |     Bin 
 gnu/dist/texinfo/po/de.po                                      |    2089 -
 gnu/dist/texinfo/po/fr.gmo                                     |     Bin 
 gnu/dist/texinfo/po/fr.po                                      |    2091 -
 gnu/dist/texinfo/po/stamp-cat-id                               |       1 -
 gnu/dist/texinfo/po/texinfo.pot                                |    1847 -
 gnu/dist/texinfo/stamp-h.in                                    |       1 -
 gnu/dist/texinfo/texinfo.tex                                   |    4800 -
 gnu/dist/texinfo/util/Makefile.am                              |      13 -
 gnu/dist/texinfo/util/Makefile.in                              |     321 -
 gnu/dist/texinfo/util/README                                   |       4 -
 gnu/dist/texinfo/util/deref.c                                  |     238 -
 gnu/dist/texinfo/util/fixfonts                                 |      84 -
 gnu/dist/texinfo/util/gen-dir-node                             |     181 -
 gnu/dist/texinfo/util/install-info.c                           |    1192 -
 gnu/dist/texinfo/util/tex3patch                                |      71 -
 gnu/dist/texinfo/util/texi2dvi                                 |     367 -
 gnu/dist/texinfo/util/texindex.c                               |    1761 -
 gnu/dist/texinfo/util/update-info                              |     875 -
 gnu/lib/Makefile                                               |       5 -
 gnu/lib/libbfd/Makefile                                        |     204 -
 gnu/lib/libbfd/bfd-h.sed                                       |      25 -
 gnu/lib/libbfd/config.h                                        |     289 -
 gnu/lib/libbfd/lib_bfd.c                                       |       4 -
 gnu/lib/libbfd/shlib_version                                   |       3 -
 gnu/lib/libg2c/Makefile                                        |     126 -
 gnu/lib/libg2c/config.h                                        |     109 -
 gnu/lib/libg2c/g2ctypes.c                                      |      27 -
 gnu/lib/libg2c/shlib_version                                   |       3 -
 gnu/lib/libgcc/Makefile                                        |      67 -
 gnu/lib/libmalloc/COPYING.LIB                                  |     481 -
 gnu/lib/libmalloc/ChangeLog                                    |     291 -
 gnu/lib/libmalloc/Makefile                                     |      13 -
 gnu/lib/libmalloc/Makefile.gnu                                 |      57 -
 gnu/lib/libmalloc/OChangeLog                                   |      34 -
 gnu/lib/libmalloc/README                                       |      12 -
 gnu/lib/libmalloc/VERSION                                      |       2 -
 gnu/lib/libmalloc/calloc.c                                     |      39 -
 gnu/lib/libmalloc/cfree.c                                      |      43 -
 gnu/lib/libmalloc/combined.c                                   |      12 -
 gnu/lib/libmalloc/free.c                                       |     210 -
 gnu/lib/libmalloc/getpagesize.h                                |      39 -
 gnu/lib/libmalloc/gmalloc-head.c                               |       6 -
 gnu/lib/libmalloc/malloc.c                                     |     318 -
 gnu/lib/libmalloc/malloc.h                                     |     265 -
 gnu/lib/libmalloc/mcheck.c                                     |     133 -
 gnu/lib/libmalloc/mem-limits.h                                 |     132 -
 gnu/lib/libmalloc/memalign.c                                   |      61 -
 gnu/lib/libmalloc/morecore.c                                   |      44 -
 gnu/lib/libmalloc/mstats.c                                     |      39 -
 gnu/lib/libmalloc/mtrace.awk                                   |      36 -
 gnu/lib/libmalloc/mtrace.c                                     |     150 -
 gnu/lib/libmalloc/ralloc.c                                     |     514 -
 gnu/lib/libmalloc/realloc.c                                    |     146 -
 gnu/lib/libmalloc/shlib_version                                |       3 -
 gnu/lib/libmalloc/valloc.c                                     |      44 -
 gnu/lib/libmalloc/vm-limit.c                                   |     134 -
 gnu/lib/libobjc/Makefile                                       |      53 -
 gnu/lib/libobjc/shlib_version                                  |       3 -
 gnu/lib/libstdc++/Makefile                                     |      80 -
 gnu/lib/libstdc++/_G_config.h                                  |       5 -
 gnu/lib/libstdc++/config/Makefile                              |      21 -
 gnu/lib/libstdc++/io/Makefile                                  |      13 -
 gnu/lib/libstdc++/shlib_version                                |       3 -
 gnu/lib/libstdc++/std/Makefile                                 |      12 -
 gnu/lib/libstdc++/stl/Makefile                                 |      25 -
 gnu/libexec/Makefile                                           |       5 -
 gnu/libexec/Makefile.inc                                       |       4 -
 gnu/libexec/uucp/COPYING                                       |     339 -
 gnu/libexec/uucp/ChangeLog                                     |    5070 -
 gnu/libexec/uucp/Makefile                                      |      13 -
 gnu/libexec/uucp/Makefile.inc                                  |      23 -
 gnu/libexec/uucp/NEWS                                          |     154 -
 gnu/libexec/uucp/README                                        |     173 -
 gnu/libexec/uucp/TODO                                          |     777 -
 gnu/libexec/uucp/VERSION                                       |       4 -
 gnu/libexec/uucp/common_sources/chat.c                         |    1466 -
 gnu/libexec/uucp/common_sources/config.h                       |     472 -
 gnu/libexec/uucp/common_sources/conn.c                         |     587 -
 gnu/libexec/uucp/common_sources/conn.h                         |     319 -
 gnu/libexec/uucp/common_sources/copy.c                         |     236 -
 gnu/libexec/uucp/common_sources/cu.h                           |      80 -
 gnu/libexec/uucp/common_sources/getopt.h                       |     133 -
 gnu/libexec/uucp/common_sources/log.c                          |     778 -
 gnu/libexec/uucp/common_sources/policy.h                       |     698 -
 gnu/libexec/uucp/common_sources/prot.c                         |     241 -
 gnu/libexec/uucp/common_sources/prot.h                         |     270 -
 gnu/libexec/uucp/common_sources/sysdep.h                       |     563 -
 gnu/libexec/uucp/common_sources/system.h                       |     994 -
 gnu/libexec/uucp/common_sources/trans.h                        |     288 -
 gnu/libexec/uucp/common_sources/util.c                         |     184 -
 gnu/libexec/uucp/common_sources/uuconf.h                       |    1557 -
 gnu/libexec/uucp/common_sources/uucp.h                         |     398 -
 gnu/libexec/uucp/common_sources/uudefs.h                       |     450 -
 gnu/libexec/uucp/contrib/Dial.Hayes                            |     108 -
 gnu/libexec/uucp/contrib/Hangup.Hayes                          |      57 -
 gnu/libexec/uucp/contrib/Login.LAT                             |     137 -
 gnu/libexec/uucp/contrib/Login.PortSel                         |     133 -
 gnu/libexec/uucp/contrib/Login.VMS                             |      96 -
 gnu/libexec/uucp/contrib/Makefile.uurt                         |      40 -
 gnu/libexec/uucp/contrib/Makefile.xchat                        |      31 -
 gnu/libexec/uucp/contrib/README                                |      82 -
 gnu/libexec/uucp/contrib/README-UURATE                         |      21 -
 gnu/libexec/uucp/contrib/README-XCHAT                          |      42 -
 gnu/libexec/uucp/contrib/amiga.c                               |      43 -
 gnu/libexec/uucp/contrib/dialHDB.c                             |     187 -
 gnu/libexec/uucp/contrib/savelog.man                           |     130 -
 gnu/libexec/uucp/contrib/savelog.sh                            |     247 -
 gnu/libexec/uucp/contrib/stats.sh                              |      27 -
 gnu/libexec/uucp/contrib/tstout.c                              |     158 -
 gnu/libexec/uucp/contrib/uuclean                               |      25 -
 gnu/libexec/uucp/contrib/uucomp.shar                           |     552 -
 gnu/libexec/uucp/contrib/uudemon.shar                          |      82 -
 gnu/libexec/uucp/contrib/uupoll.shar                           |    2696 -
 gnu/libexec/uucp/contrib/uuq.sh                                |     125 -
 gnu/libexec/uucp/contrib/uurate.c                              |    1857 -
 gnu/libexec/uucp/contrib/uurate.man                            |     280 -
 gnu/libexec/uucp/contrib/uureroute.perl                        |      91 -
 gnu/libexec/uucp/contrib/uusnap.c                              |     321 -
 gnu/libexec/uucp/contrib/uutraf                                |     210 -
 gnu/libexec/uucp/contrib/uutry                                 |      43 -
 gnu/libexec/uucp/contrib/uuxconv                               |      50 -
 gnu/libexec/uucp/contrib/xc-conf.h-dist                        |      38 -
 gnu/libexec/uucp/contrib/xchat.c                               |    1473 -
 gnu/libexec/uucp/contrib/xchat.man                             |     628 -
 gnu/libexec/uucp/cu/Makefile                                   |      17 -
 gnu/libexec/uucp/cu/cu.1                                       |     310 -
 gnu/libexec/uucp/cu/cu.c                                       |    2186 -
 gnu/libexec/uucp/doc/Makefile                                  |       5 -
 gnu/libexec/uucp/doc/uucp.texi                                 |    8367 -
 gnu/libexec/uucp/libunix/MANIFEST                              |      84 -
 gnu/libexec/uucp/libunix/Makefile                              |      27 -
 gnu/libexec/uucp/libunix/access.c                              |      83 -
 gnu/libexec/uucp/libunix/addbas.c                              |      50 -
 gnu/libexec/uucp/libunix/app3.c                                |      32 -
 gnu/libexec/uucp/libunix/app4.c                                |      36 -
 gnu/libexec/uucp/libunix/basnam.c                              |      22 -
 gnu/libexec/uucp/libunix/bytfre.c                              |      27 -
 gnu/libexec/uucp/libunix/chmod.c                               |      25 -
 gnu/libexec/uucp/libunix/cohtty.c                              |     257 -
 gnu/libexec/uucp/libunix/corrup.c                              |      33 -
 gnu/libexec/uucp/libunix/cusub.c                               |    1214 -
 gnu/libexec/uucp/libunix/cwd.c                                 |      58 -
 gnu/libexec/uucp/libunix/detach.c                              |     181 -
 gnu/libexec/uucp/libunix/dirent.c                              |     123 -
 gnu/libexec/uucp/libunix/dup2.c                                |      69 -
 gnu/libexec/uucp/libunix/efopen.c                              |     132 -
 gnu/libexec/uucp/libunix/epopen.c                              |      85 -
 gnu/libexec/uucp/libunix/exists.c                              |      16 -
 gnu/libexec/uucp/libunix/failed.c                              |      26 -
 gnu/libexec/uucp/libunix/filnam.c                              |     586 -
 gnu/libexec/uucp/libunix/fsusg.c                               |     335 -
 gnu/libexec/uucp/libunix/fsusg.h                               |      31 -
 gnu/libexec/uucp/libunix/ftw.c                                 |     256 -
 gnu/libexec/uucp/libunix/getcwd.c                              |      59 -
 gnu/libexec/uucp/libunix/indir.c                               |     133 -
 gnu/libexec/uucp/libunix/init.c                                |     400 -
 gnu/libexec/uucp/libunix/isdir.c                               |      18 -
 gnu/libexec/uucp/libunix/isfork.c                              |      25 -
 gnu/libexec/uucp/libunix/iswait.c                              |     159 -
 gnu/libexec/uucp/libunix/jobid.c                               |     169 -
 gnu/libexec/uucp/libunix/lcksys.c                              |      62 -
 gnu/libexec/uucp/libunix/link.c                                |      38 -
 gnu/libexec/uucp/libunix/locfil.c                              |     103 -
 gnu/libexec/uucp/libunix/lock.c                                |     692 -
 gnu/libexec/uucp/libunix/loctim.c                              |      29 -
 gnu/libexec/uucp/libunix/mail.c                                |     123 -
 gnu/libexec/uucp/libunix/mkdir.c                               |      58 -
 gnu/libexec/uucp/libunix/mkdirs.c                              |      57 -
 gnu/libexec/uucp/libunix/mode.c                                |      33 -
 gnu/libexec/uucp/libunix/move.c                                |     162 -
 gnu/libexec/uucp/libunix/opensr.c                              |     254 -
 gnu/libexec/uucp/libunix/pause.c                               |     101 -
 gnu/libexec/uucp/libunix/picksb.c                              |     236 -
 gnu/libexec/uucp/libunix/pipe.c                                |     294 -
 gnu/libexec/uucp/libunix/portnm.c                              |      53 -
 gnu/libexec/uucp/libunix/priv.c                                |      24 -
 gnu/libexec/uucp/libunix/proctm.c                              |     199 -
 gnu/libexec/uucp/libunix/recep.c                               |     201 -
 gnu/libexec/uucp/libunix/remove.c                              |      13 -
 gnu/libexec/uucp/libunix/rename.c                              |      27 -
 gnu/libexec/uucp/libunix/rmdir.c                               |      43 -
 gnu/libexec/uucp/libunix/run.c                                 |     113 -
 gnu/libexec/uucp/libunix/seq.c                                 |     126 -
 gnu/libexec/uucp/libunix/serial.c                              |    3403 -
 gnu/libexec/uucp/libunix/signal.c                              |     208 -
 gnu/libexec/uucp/libunix/sindir.c                              |      29 -
 gnu/libexec/uucp/libunix/size.c                                |      27 -
 gnu/libexec/uucp/libunix/sleep.c                               |      26 -
 gnu/libexec/uucp/libunix/spawn.c                               |     453 -
 gnu/libexec/uucp/libunix/splcmd.c                              |     161 -
 gnu/libexec/uucp/libunix/splnam.c                              |      19 -
 gnu/libexec/uucp/libunix/spool.c                               |     427 -
 gnu/libexec/uucp/libunix/srmdir.c                              |     112 -
 gnu/libexec/uucp/libunix/statsb.c                              |     634 -
 gnu/libexec/uucp/libunix/status.c                              |     248 -
 gnu/libexec/uucp/libunix/strerr.c                              |      24 -
 gnu/libexec/uucp/libunix/sync.c                                |      42 -
 gnu/libexec/uucp/libunix/tcp.c                                 |     444 -
 gnu/libexec/uucp/libunix/time.c                                |      34 -
 gnu/libexec/uucp/libunix/tli.c                                 |     628 -
 gnu/libexec/uucp/libunix/tmpfil.c                              |      84 -
 gnu/libexec/uucp/libunix/trunc.c                               |     159 -
 gnu/libexec/uucp/libunix/uacces.c                              |     209 -
 gnu/libexec/uucp/libunix/ufopen.c                              |     135 -
 gnu/libexec/uucp/libunix/uid.c                                 |     116 -
 gnu/libexec/uucp/libunix/ultspl.c                              |      21 -
 gnu/libexec/uucp/libunix/unknwn.c                              |      43 -
 gnu/libexec/uucp/libunix/uuto.c                                |      31 -
 gnu/libexec/uucp/libunix/walk.c                                |      58 -
 gnu/libexec/uucp/libunix/wldcrd.c                              |     213 -
 gnu/libexec/uucp/libunix/work.c                                |     791 -
 gnu/libexec/uucp/libunix/xqtfil.c                              |     298 -
 gnu/libexec/uucp/libunix/xqtsub.c                              |     711 -
 gnu/libexec/uucp/libuuconf/COPYING.LIB                         |     481 -
 gnu/libexec/uucp/libuuconf/MANIFEST                            |      94 -
 gnu/libexec/uucp/libuuconf/Makefile                            |      31 -
 gnu/libexec/uucp/libuuconf/README                              |     113 -
 gnu/libexec/uucp/libuuconf/addblk.c                            |      56 -
 gnu/libexec/uucp/libuuconf/addstr.c                            |     139 -
 gnu/libexec/uucp/libuuconf/allblk.c                            |      51 -
 gnu/libexec/uucp/libuuconf/alloc.c                             |      82 -
 gnu/libexec/uucp/libuuconf/alloc.h                             |      71 -
 gnu/libexec/uucp/libuuconf/base.c                              |      54 -
 gnu/libexec/uucp/libuuconf/bool.c                              |      64 -
 gnu/libexec/uucp/libuuconf/callin.c                            |     195 -
 gnu/libexec/uucp/libuuconf/calout.c                            |      93 -
 gnu/libexec/uucp/libuuconf/chatc.c                             |     202 -
 gnu/libexec/uucp/libuuconf/cmdarg.c                            |     187 -
 gnu/libexec/uucp/libuuconf/cmdfil.c                            |     106 -
 gnu/libexec/uucp/libuuconf/cmdlin.c                            |     145 -
 gnu/libexec/uucp/libuuconf/debfil.c                            |      43 -
 gnu/libexec/uucp/libuuconf/deblev.c                            |      43 -
 gnu/libexec/uucp/libuuconf/diacod.c                            |     129 -
 gnu/libexec/uucp/libuuconf/dial.c                              |      61 -
 gnu/libexec/uucp/libuuconf/diasub.c                            |      63 -
 gnu/libexec/uucp/libuuconf/dnams.c                             |     103 -
 gnu/libexec/uucp/libuuconf/errno.c                             |      46 -
 gnu/libexec/uucp/libuuconf/errstr.c                            |     241 -
 gnu/libexec/uucp/libuuconf/filnam.c                            |      44 -
 gnu/libexec/uucp/libuuconf/freblk.c                            |      63 -
 gnu/libexec/uucp/libuuconf/fredia.c                            |      44 -
 gnu/libexec/uucp/libuuconf/free.c                              |      68 -
 gnu/libexec/uucp/libuuconf/freprt.c                            |      44 -
 gnu/libexec/uucp/libuuconf/fresys.c                            |      44 -
 gnu/libexec/uucp/libuuconf/grdcmp.c                            |      76 -
 gnu/libexec/uucp/libuuconf/hdial.c                             |     187 -
 gnu/libexec/uucp/libuuconf/hdnams.c                            |     109 -
 gnu/libexec/uucp/libuuconf/hinit.c                             |     295 -
 gnu/libexec/uucp/libuuconf/hlocnm.c                            |      84 -
 gnu/libexec/uucp/libuuconf/hport.c                             |     360 -
 gnu/libexec/uucp/libuuconf/hrmunk.c                            |      55 -
 gnu/libexec/uucp/libuuconf/hsinfo.c                            |     637 -
 gnu/libexec/uucp/libuuconf/hsnams.c                            |     142 -
 gnu/libexec/uucp/libuuconf/hsys.c                              |      49 -
 gnu/libexec/uucp/libuuconf/hunk.c                              |     142 -
 gnu/libexec/uucp/libuuconf/iniglb.c                            |     180 -
 gnu/libexec/uucp/libuuconf/init.c                              |      74 -
 gnu/libexec/uucp/libuuconf/int.c                               |      59 -
 gnu/libexec/uucp/libuuconf/lckdir.c                            |      43 -
 gnu/libexec/uucp/libuuconf/lineno.c                            |      44 -
 gnu/libexec/uucp/libuuconf/llocnm.c                            |      73 -
 gnu/libexec/uucp/libuuconf/local.c                             |      70 -
 gnu/libexec/uucp/libuuconf/locnm.c                             |      46 -
 gnu/libexec/uucp/libuuconf/logfil.c                            |      43 -
 gnu/libexec/uucp/libuuconf/maxuxq.c                            |      86 -
 gnu/libexec/uucp/libuuconf/mrgblk.c                            |      50 -
 gnu/libexec/uucp/libuuconf/paramc.c                            |     175 -
 gnu/libexec/uucp/libuuconf/port.c                              |      77 -
 gnu/libexec/uucp/libuuconf/prtsub.c                            |      54 -
 gnu/libexec/uucp/libuuconf/pubdir.c                            |      43 -
 gnu/libexec/uucp/libuuconf/rdlocs.c                            |     305 -
 gnu/libexec/uucp/libuuconf/rdperm.c                            |     452 -
 gnu/libexec/uucp/libuuconf/reliab.c                            |     123 -
 gnu/libexec/uucp/libuuconf/remunk.c                            |      54 -
 gnu/libexec/uucp/libuuconf/runuxq.c                            |      77 -
 gnu/libexec/uucp/libuuconf/sinfo.c                             |     112 -
 gnu/libexec/uucp/libuuconf/snams.c                             |     133 -
 gnu/libexec/uucp/libuuconf/split.c                             |     106 -
 gnu/libexec/uucp/libuuconf/spool.c                             |      43 -
 gnu/libexec/uucp/libuuconf/stafil.c                            |      43 -
 gnu/libexec/uucp/libuuconf/strip.c                             |      50 -
 gnu/libexec/uucp/libuuconf/syshdr.h                            |     140 -
 gnu/libexec/uucp/libuuconf/syshdr.unx                          |     140 -
 gnu/libexec/uucp/libuuconf/syssub.c                            |     524 -
 gnu/libexec/uucp/libuuconf/tcalou.c                            |     207 -
 gnu/libexec/uucp/libuuconf/tdial.c                             |     227 -
 gnu/libexec/uucp/libuuconf/tdialc.c                            |     211 -
 gnu/libexec/uucp/libuuconf/tdnams.c                            |     119 -
 gnu/libexec/uucp/libuuconf/tgcmp.c                             |      42 -
 gnu/libexec/uucp/libuuconf/thread.c                            |      70 -
 gnu/libexec/uucp/libuuconf/time.c                              |     407 -
 gnu/libexec/uucp/libuuconf/tinit.c                             |     465 -
 gnu/libexec/uucp/libuuconf/tlocnm.c                            |     112 -
 gnu/libexec/uucp/libuuconf/tport.c                             |     299 -
 gnu/libexec/uucp/libuuconf/tportc.c                            |     505 -
 gnu/libexec/uucp/libuuconf/tsinfo.c                            |     954 -
 gnu/libexec/uucp/libuuconf/tsnams.c                            |      84 -
 gnu/libexec/uucp/libuuconf/tsys.c                              |      49 -
 gnu/libexec/uucp/libuuconf/tval.c                              |      71 -
 gnu/libexec/uucp/libuuconf/ugtlin.c                            |     110 -
 gnu/libexec/uucp/libuuconf/unk.c                               |      70 -
 gnu/libexec/uucp/libuuconf/uucnfi.h                            |     380 -
 gnu/libexec/uucp/libuuconf/val.c                               |      46 -
 gnu/libexec/uucp/libuuconf/vinit.c                             |     112 -
 gnu/libexec/uucp/libuuconf/vport.c                             |     254 -
 gnu/libexec/uucp/libuuconf/vsinfo.c                            |     610 -
 gnu/libexec/uucp/libuuconf/vsnams.c                            |     106 -
 gnu/libexec/uucp/libuuconf/vsys.c                              |      49 -
 gnu/libexec/uucp/libuucp/MANIFEST                              |      28 -
 gnu/libexec/uucp/libuucp/Makefile                              |      18 -
 gnu/libexec/uucp/libuucp/bsrch.c                               |      54 -
 gnu/libexec/uucp/libuucp/buffer.c                              |     127 -
 gnu/libexec/uucp/libuucp/bzero.c                               |      15 -
 gnu/libexec/uucp/libuucp/crc.c                                 |     112 -
 gnu/libexec/uucp/libuucp/debug.c                               |     173 -
 gnu/libexec/uucp/libuucp/escape.c                              |      98 -
 gnu/libexec/uucp/libuucp/getlin.c                              |      81 -
 gnu/libexec/uucp/libuucp/getop1.c                              |     144 -
 gnu/libexec/uucp/libuucp/getopt.c                              |     623 -
 gnu/libexec/uucp/libuucp/memchr.c                              |     149 -
 gnu/libexec/uucp/libuucp/memcmp.c                              |      19 -
 gnu/libexec/uucp/libuucp/memcpy.c                              |      18 -
 gnu/libexec/uucp/libuucp/parse.c                               |     219 -
 gnu/libexec/uucp/libuucp/spool.c                               |      30 -
 gnu/libexec/uucp/libuucp/status.c                              |      38 -
 gnu/libexec/uucp/libuucp/strcas.c                              |      33 -
 gnu/libexec/uucp/libuucp/strchr.c                              |      16 -
 gnu/libexec/uucp/libuucp/strdup.c                              |      18 -
 gnu/libexec/uucp/libuucp/strncs.c                              |      39 -
 gnu/libexec/uucp/libuucp/strrch.c                              |      24 -
 gnu/libexec/uucp/libuucp/strstr.c                              |      55 -
 gnu/libexec/uucp/libuucp/strtol.c                              |     175 -
 gnu/libexec/uucp/libuucp/strtou.c                              |      21 -
 gnu/libexec/uucp/libuucp/xfree.c                               |      15 -
 gnu/libexec/uucp/libuucp/xmall.c                               |      18 -
 gnu/libexec/uucp/libuucp/xreall.c                              |      23 -
 gnu/libexec/uucp/sample/call                                   |      20 -
 gnu/libexec/uucp/sample/config                                 |      88 -
 gnu/libexec/uucp/sample/dial                                   |      35 -
 gnu/libexec/uucp/sample/dialcode                               |      19 -
 gnu/libexec/uucp/sample/passwd                                 |      18 -
 gnu/libexec/uucp/sample/port                                   |      41 -
 gnu/libexec/uucp/sample/sys1                                   |      44 -
 gnu/libexec/uucp/sample/sys2                                   |      51 -
 gnu/libexec/uucp/tstuu.c                                       |    1603 -
 gnu/libexec/uucp/uuchk/Makefile                                |      17 -
 gnu/libexec/uucp/uuchk/uuchk.c                                 |    1127 -
 gnu/libexec/uucp/uucico/Makefile                               |      21 -
 gnu/libexec/uucp/uucico/prote.c                                |     397 -
 gnu/libexec/uucp/uucico/protf.c                                |     848 -
 gnu/libexec/uucp/uucico/protg.c                                |    1978 -
 gnu/libexec/uucp/uucico/proti.c                                |    1699 -
 gnu/libexec/uucp/uucico/protj.c                                |     672 -
 gnu/libexec/uucp/uucico/prott.c                                |     331 -
 gnu/libexec/uucp/uucico/proty.c                                |     661 -
 gnu/libexec/uucp/uucico/protz.c                                |    2626 -
 gnu/libexec/uucp/uucico/rec.c                                  |    1309 -
 gnu/libexec/uucp/uucico/send.c                                 |    1387 -
 gnu/libexec/uucp/uucico/time.c                                 |     134 -
 gnu/libexec/uucp/uucico/trans.c                                |    1489 -
 gnu/libexec/uucp/uucico/uucico.8                               |     291 -
 gnu/libexec/uucp/uucico/uucico.c                               |    3074 -
 gnu/libexec/uucp/uucico/xcmd.c                                 |     401 -
 gnu/libexec/uucp/uuconv/Makefile                               |      18 -
 gnu/libexec/uucp/uuconv/uuconv.c                               |    2106 -
 gnu/libexec/uucp/uucp/Makefile                                 |      17 -
 gnu/libexec/uucp/uucp/uucp.1                                   |     212 -
 gnu/libexec/uucp/uucp/uucp.c                                   |    1268 -
 gnu/libexec/uucp/uulog/Makefile                                |      17 -
 gnu/libexec/uucp/uulog/uulog.c                                 |     492 -
 gnu/libexec/uucp/uuname/Makefile                               |      19 -
 gnu/libexec/uucp/uuname/uuname.c                               |     202 -
 gnu/libexec/uucp/uupick/Makefile                               |      17 -
 gnu/libexec/uucp/uupick/uupick.c                               |     369 -
 gnu/libexec/uucp/uusched/Makefile                              |      17 -
 gnu/libexec/uucp/uusched/uusched.in                            |      13 -
 gnu/libexec/uucp/uustat/Makefile                               |      18 -
 gnu/libexec/uucp/uustat/uustat.1                               |     551 -
 gnu/libexec/uucp/uustat/uustat.c                               |    2441 -
 gnu/libexec/uucp/uuto/Makefile                                 |      17 -
 gnu/libexec/uucp/uuto/uuto.in                                  |      16 -
 gnu/libexec/uucp/uux/Makefile                                  |      17 -
 gnu/libexec/uucp/uux/uux.1                                     |     255 -
 gnu/libexec/uucp/uux/uux.c                                     |    1626 -
 gnu/libexec/uucp/uuxqt/Makefile                                |      20 -
 gnu/libexec/uucp/uuxqt/uuxqt.8                                 |     103 -
 gnu/libexec/uucp/uuxqt/uuxqt.c                                 |    1766 -
 gnu/usr.bin/Makefile                                           |      30 -
 gnu/usr.bin/Makefile.inc                                       |       3 -
 gnu/usr.bin/bc/Makefile                                        |      15 -
 gnu/usr.bin/bc/config.h                                        |      72 -
 gnu/usr.bin/binutils/Makefile                                  |      14 -
 gnu/usr.bin/binutils/Makefile.inc                              |      24 -
 gnu/usr.bin/binutils/addr2line/Makefile                        |       7 -
 gnu/usr.bin/binutils/ar/Makefile                               |       7 -
 gnu/usr.bin/binutils/c++filt/Makefile                          |      14 -
 gnu/usr.bin/binutils/c++filt/underscore.c                      |       7 -
 gnu/usr.bin/binutils/common/Makefile                           |      20 -
 gnu/usr.bin/binutils/common/config.h                           |      87 -
 gnu/usr.bin/binutils/nm/Makefile                               |       7 -
 gnu/usr.bin/binutils/objcopy/Makefile                          |       7 -
 gnu/usr.bin/binutils/objdump/Makefile                          |       7 -
 gnu/usr.bin/binutils/ranlib/Makefile                           |       7 -
 gnu/usr.bin/binutils/size/Makefile                             |       7 -
 gnu/usr.bin/binutils/strings/Makefile                          |       7 -
 gnu/usr.bin/binutils/strip/Makefile                            |      17 -
 gnu/usr.bin/cpio/COPYING                                       |     339 -
 gnu/usr.bin/cpio/COPYING.LIB                                   |     481 -
 gnu/usr.bin/cpio/ChangeLog                                     |     781 -
 gnu/usr.bin/cpio/Makefile                                      |      11 -
 gnu/usr.bin/cpio/NEWS                                          |      55 -
 gnu/usr.bin/cpio/README                                        |      56 -
 gnu/usr.bin/cpio/VERSION                                       |       2 -
 gnu/usr.bin/cpio/alloca.c                                      |     475 -
 gnu/usr.bin/cpio/copyin.c                                      |    1335 -
 gnu/usr.bin/cpio/copyout.c                                     |     838 -
 gnu/usr.bin/cpio/copypass.c                                    |     468 -
 gnu/usr.bin/cpio/cpio.1                                        |     310 -
 gnu/usr.bin/cpio/cpio.h                                        |      69 -
 gnu/usr.bin/cpio/cpiohdr.h                                     |      90 -
 gnu/usr.bin/cpio/defer.c                                       |      43 -
 gnu/usr.bin/cpio/defer.h                                       |       8 -
 gnu/usr.bin/cpio/dirname.c                                     |      66 -
 gnu/usr.bin/cpio/dstring.c                                     |     114 -
 gnu/usr.bin/cpio/dstring.h                                     |      49 -
 gnu/usr.bin/cpio/error.c                                       |     106 -
 gnu/usr.bin/cpio/extern.h                                      |     176 -
 gnu/usr.bin/cpio/filemode.c                                    |     229 -
 gnu/usr.bin/cpio/filetypes.h                                   |      84 -
 gnu/usr.bin/cpio/fnmatch.c                                     |     200 -
 gnu/usr.bin/cpio/fnmatch.h                                     |      64 -
 gnu/usr.bin/cpio/getopt.c                                      |     744 -
 gnu/usr.bin/cpio/getopt.h                                      |     129 -
 gnu/usr.bin/cpio/getopt1.c                                     |     176 -
 gnu/usr.bin/cpio/global.c                                      |     168 -
 gnu/usr.bin/cpio/idcache.c                                     |     206 -
 gnu/usr.bin/cpio/main.c                                        |     479 -
 gnu/usr.bin/cpio/makepath.c                                    |     297 -
 gnu/usr.bin/cpio/rmt.h                                         |      98 -
 gnu/usr.bin/cpio/rtapelib.c                                    |     582 -
 gnu/usr.bin/cpio/stripslash.c                                  |      39 -
 gnu/usr.bin/cpio/system.h                                      |     139 -
 gnu/usr.bin/cpio/tar.c                                         |     522 -
 gnu/usr.bin/cpio/tar.h                                         |     112 -
 gnu/usr.bin/cpio/tarhdr.h                                      |      62 -
 gnu/usr.bin/cpio/tcexparg.c                                    |     240 -
 gnu/usr.bin/cpio/userspec.c                                    |     180 -
 gnu/usr.bin/cpio/util.c                                        |    1102 -
 gnu/usr.bin/cpio/version.c                                     |       2 -
 gnu/usr.bin/cpio/xmalloc.c                                     |      65 -
 gnu/usr.bin/cpio/xstrdup.c                                     |      32 -
 gnu/usr.bin/dc/Makefile                                        |      15 -
 gnu/usr.bin/diff/Makefile                                      |      16 -
 gnu/usr.bin/diff/config.h                                      |     118 -
 gnu/usr.bin/diff/diff.1                                        |     473 -
 gnu/usr.bin/diff/diff3.1                                       |     207 -
 gnu/usr.bin/diff/sdiff.1                                       |     198 -
 gnu/usr.bin/diff3/Makefile                                     |      11 -
 gnu/usr.bin/egcs/Makefile                                      |      16 -
 gnu/usr.bin/egcs/Makefile.cc1                                  |      18 -
 gnu/usr.bin/egcs/Makefile.inc                                  |      68 -
 gnu/usr.bin/egcs/arch/alpha/tconfig.h                          |       3 -
 gnu/usr.bin/egcs/arch/alpha/tm.h                               |       4 -
 gnu/usr.bin/egcs/arch/arm32/tconfig.h                          |       3 -
 gnu/usr.bin/egcs/arch/arm32/tm.h                               |       3 -
 gnu/usr.bin/egcs/arch/auto-host.h                              |     205 -
 gnu/usr.bin/egcs/arch/config.h                                 |       4 -
 gnu/usr.bin/egcs/arch/hconfig.h                                |       3 -
 gnu/usr.bin/egcs/arch/i386/tconfig.h                           |       3 -
 gnu/usr.bin/egcs/arch/i386/tm.h                                |       7 -
 gnu/usr.bin/egcs/arch/m68k/tconfig.h                           |       3 -
 gnu/usr.bin/egcs/arch/m68k/tm.h                                |       7 -
 gnu/usr.bin/egcs/arch/mips/tconfig.h                           |       3 -
 gnu/usr.bin/egcs/arch/mips/tm.h                                |       3 -
 gnu/usr.bin/egcs/arch/multilib.h                               |      12 -
 gnu/usr.bin/egcs/arch/ns32k/tconfig.h                          |       3 -
 gnu/usr.bin/egcs/arch/ns32k/tm.h                               |       3 -
 gnu/usr.bin/egcs/arch/options.h                                |       4 -
 gnu/usr.bin/egcs/arch/powerpc/tconfig.h                        |       3 -
 gnu/usr.bin/egcs/arch/powerpc/tm.h                             |       3 -
 gnu/usr.bin/egcs/arch/sh3/tconfig.h                            |       3 -
 gnu/usr.bin/egcs/arch/sh3/tm.h                                 |       7 -
 gnu/usr.bin/egcs/arch/sparc/tconfig.h                          |       3 -
 gnu/usr.bin/egcs/arch/sparc/tm.h                               |       7 -
 gnu/usr.bin/egcs/arch/sparc64/config2.h                        |       1 -
 gnu/usr.bin/egcs/arch/sparc64/hconfig.h                        |       1 -
 gnu/usr.bin/egcs/arch/sparc64/tconfig.h                        |       1 -
 gnu/usr.bin/egcs/arch/sparc64/tm.h                             |       1 -
 gnu/usr.bin/egcs/arch/specs.h                                  |       4 -
 gnu/usr.bin/egcs/arch/underscore.c                             |       7 -
 gnu/usr.bin/egcs/arch/vax/tconfig.h                            |       3 -
 gnu/usr.bin/egcs/arch/vax/tm.h                                 |       3 -
 gnu/usr.bin/egcs/c89/Makefile                                  |      10 -
 gnu/usr.bin/egcs/c89/c89.1                                     |      87 -
 gnu/usr.bin/egcs/c89/c89.sh                                    |      33 -
 gnu/usr.bin/egcs/cc/Makefile                                   |      14 -
 gnu/usr.bin/egcs/cc1/Makefile                                  |      10 -
 gnu/usr.bin/egcs/cc1obj/Makefile                               |      15 -
 gnu/usr.bin/egcs/cc1plus/Makefile                              |      27 -
 gnu/usr.bin/egcs/collect2/Makefile                             |      11 -
 gnu/usr.bin/egcs/common/Makefile                               |     124 -
 gnu/usr.bin/egcs/cpp/Makefile                                  |      28 -
 gnu/usr.bin/egcs/cpp/usr.bin.cpp.sh                            |     105 -
 gnu/usr.bin/egcs/f771/Makefile                                 |      29 -
 gnu/usr.bin/egcs/g++/Makefile                                  |      18 -
 gnu/usr.bin/egcs/g77/Makefile                                  |      21 -
 gnu/usr.bin/egcs/gcov/Makefile                                 |       7 -
 gnu/usr.bin/egcs/gcov/gcov.1                                   |     127 -
 gnu/usr.bin/gas.new/Makefile                                   |      35 -
 gnu/usr.bin/gas.new/arch/alpha/Makefile.inc                    |       5 -
 gnu/usr.bin/gas.new/arch/alpha/config.h                        |     146 -
 gnu/usr.bin/gas.new/arch/alpha/obj-format.h                    |       3 -
 gnu/usr.bin/gas.new/arch/alpha/targ-cpu.h                      |       3 -
 gnu/usr.bin/gas.new/arch/alpha/targ-env.h                      |       3 -
 gnu/usr.bin/gas.new/arch/arm32/Makefile.inc                    |       5 -
 gnu/usr.bin/gas.new/arch/arm32/config.h                        |     146 -
 gnu/usr.bin/gas.new/arch/arm32/obj-format.h                    |       1 -
 gnu/usr.bin/gas.new/arch/arm32/targ-cpu.h                      |       1 -
 gnu/usr.bin/gas.new/arch/arm32/targ-env.h                      |       1 -
 gnu/usr.bin/gas.new/arch/i386/Makefile.inc                     |      10 -
 gnu/usr.bin/gas.new/arch/i386/config.h                         |     146 -
 gnu/usr.bin/gas.new/arch/i386/obj-format.h                     |       5 -
 gnu/usr.bin/gas.new/arch/i386/targ-cpu.h                       |       1 -
 gnu/usr.bin/gas.new/arch/i386/targ-env.h                       |       1 -
 gnu/usr.bin/gas.new/arch/m68k/Makefile.inc                     |      12 -
 gnu/usr.bin/gas.new/arch/m68k/config.h                         |     146 -
 gnu/usr.bin/gas.new/arch/m68k/obj-format.h                     |       5 -
 gnu/usr.bin/gas.new/arch/m68k/targ-cpu.h                       |       1 -
 gnu/usr.bin/gas.new/arch/m68k/targ-env.h                       |       1 -
 gnu/usr.bin/gas.new/arch/mips/Makefile.inc                     |      18 -
 gnu/usr.bin/gas.new/arch/mips/config.h                         |     146 -
 gnu/usr.bin/gas.new/arch/mips/itbl-cpu.h                       |       3 -
 gnu/usr.bin/gas.new/arch/mips/obj-format.h                     |       3 -
 gnu/usr.bin/gas.new/arch/mips/targ-cpu.h                       |       3 -
 gnu/usr.bin/gas.new/arch/mips/targ-env.h                       |       3 -
 gnu/usr.bin/gas.new/arch/ns32k/Makefile.inc                    |       5 -
 gnu/usr.bin/gas.new/arch/ns32k/config.h                        |     146 -
 gnu/usr.bin/gas.new/arch/ns32k/obj-format.h                    |       1 -
 gnu/usr.bin/gas.new/arch/ns32k/targ-cpu.h                      |       1 -
 gnu/usr.bin/gas.new/arch/ns32k/targ-env.h                      |       1 -
 gnu/usr.bin/gas.new/arch/powerpc/Makefile.inc                  |       5 -
 gnu/usr.bin/gas.new/arch/powerpc/config.h                      |     146 -
 gnu/usr.bin/gas.new/arch/powerpc/obj-format.h                  |       3 -
 gnu/usr.bin/gas.new/arch/powerpc/targ-cpu.h                    |       3 -
 gnu/usr.bin/gas.new/arch/powerpc/targ-env.h                    |       3 -
 gnu/usr.bin/gas.new/arch/sh3/Makefile.inc                      |      10 -
 gnu/usr.bin/gas.new/arch/sh3/config.h                          |     150 -
 gnu/usr.bin/gas.new/arch/sh3/obj-format.h                      |       7 -
 gnu/usr.bin/gas.new/arch/sh3/targ-cpu.h                        |       3 -
 gnu/usr.bin/gas.new/arch/sh3/targ-env.h                        |       3 -
 gnu/usr.bin/gas.new/arch/sparc/Makefile.inc                    |      10 -
 gnu/usr.bin/gas.new/arch/sparc/config.h                        |     146 -
 gnu/usr.bin/gas.new/arch/sparc/obj-format.h                    |       5 -
 gnu/usr.bin/gas.new/arch/sparc/targ-cpu.h                      |       1 -
 gnu/usr.bin/gas.new/arch/sparc/targ-env.h                      |       1 -
 gnu/usr.bin/gas.new/arch/sparc64/Makefile.inc                  |       5 -
 gnu/usr.bin/gas.new/arch/sparc64/config.h                      |     146 -
 gnu/usr.bin/gas.new/arch/sparc64/obj-format.h                  |       1 -
 gnu/usr.bin/gas.new/arch/sparc64/targ-cpu.h                    |       1 -
 gnu/usr.bin/gas.new/arch/sparc64/targ-env.h                    |       1 -
 gnu/usr.bin/gas.new/arch/vax/Makefile.inc                      |       5 -
 gnu/usr.bin/gas.new/arch/vax/config.h                          |     146 -
 gnu/usr.bin/gas.new/arch/vax/obj-format.h                      |       1 -
 gnu/usr.bin/gas.new/arch/vax/targ-cpu.h                        |       1 -
 gnu/usr.bin/gas.new/arch/vax/targ-env.h                        |       1 -
 gnu/usr.bin/gas/CONTRIBUTORS                                   |      11 -
 gnu/usr.bin/gas/COPYING                                        |     339 -
 gnu/usr.bin/gas/ChangeLog                                      |     429 -
 gnu/usr.bin/gas/Makefile                                       |      85 -
 gnu/usr.bin/gas/Makefile.in                                    |     409 -
 gnu/usr.bin/gas/NOTES                                          |      16 -
 gnu/usr.bin/gas/NOTES.config                                   |      52 -
 gnu/usr.bin/gas/NOTES.xcc                                      |      23 -
 gnu/usr.bin/gas/README                                         |     212 -
 gnu/usr.bin/gas/README-vms                                     |     248 -
 gnu/usr.bin/gas/README.coff                                    |      79 -
 gnu/usr.bin/gas/README.pic                                     |      25 -
 gnu/usr.bin/gas/README.rich                                    |     144 -
 gnu/usr.bin/gas/VERSION                                        |       1 -
 gnu/usr.bin/gas/app.c                                          |     746 -
 gnu/usr.bin/gas/as.1                                           |     280 -
 gnu/usr.bin/gas/as.c                                           |     428 -
 gnu/usr.bin/gas/as.h                                           |     426 -
 gnu/usr.bin/gas/atof-generic.c                                 |     526 -
 gnu/usr.bin/gas/bignum-copy.c                                  |      76 -
 gnu/usr.bin/gas/bignum.h                                       |      64 -
 gnu/usr.bin/gas/bit_fix.h                                      |      54 -
 gnu/usr.bin/gas/cond.c                                         |     219 -
 gnu/usr.bin/gas/config-gas.com                                 |      76 -
 gnu/usr.bin/gas/config/Makefile.i386                           |       5 -
 gnu/usr.bin/gas/config/Makefile.m68k                           |       5 -
 gnu/usr.bin/gas/config/Makefile.ns32k                          |       4 -
 gnu/usr.bin/gas/config/Makefile.powerpc                        |       4 -
 gnu/usr.bin/gas/config/Makefile.sparc                          |       5 -
 gnu/usr.bin/gas/config/Makefile.vax                            |       5 -
 gnu/usr.bin/gas/config/aout.h                                  |     442 -
 gnu/usr.bin/gas/config/atof-ieee.c                             |     524 -
 gnu/usr.bin/gas/config/atof-ns32k.c                            |     437 -
 gnu/usr.bin/gas/config/atof-tahoe.c                            |     428 -
 gnu/usr.bin/gas/config/atof-vax.c                              |     497 -
 gnu/usr.bin/gas/config/coff.h                                  |     783 -
 gnu/usr.bin/gas/config/cplus-dem.c                             |     927 -
 gnu/usr.bin/gas/config/ho-ansi.h                               |      29 -
 gnu/usr.bin/gas/config/ho-decstation.h                         |      29 -
 gnu/usr.bin/gas/config/ho-generic.h                            |      30 -
 gnu/usr.bin/gas/config/ho-hpux.h                               |      34 -
 gnu/usr.bin/gas/config/ho-i386.h                               |      30 -
 gnu/usr.bin/gas/config/ho-i386aix.h                            |      24 -
 gnu/usr.bin/gas/config/ho-rs6000.h                             |      22 -
 gnu/usr.bin/gas/config/ho-sun3.h                               |       3 -
 gnu/usr.bin/gas/config/ho-sun386.h                             |       5 -
 gnu/usr.bin/gas/config/ho-sun4.h                               |       3 -
 gnu/usr.bin/gas/config/ho-sunos.h                              |      81 -
 gnu/usr.bin/gas/config/ho-sysv.h                               |      27 -
 gnu/usr.bin/gas/config/ho-vax.h                                |      27 -
 gnu/usr.bin/gas/config/ho-vms.h                                |      30 -
 gnu/usr.bin/gas/config/mh-i386                                 |       1 -
 gnu/usr.bin/gas/config/mh-i386aix                              |       5 -
 gnu/usr.bin/gas/config/mh-i386v4                               |       1 -
 gnu/usr.bin/gas/config/mt-ebmon29k                             |       6 -
 gnu/usr.bin/gas/config/mt-h8300                                |       5 -
 gnu/usr.bin/gas/config/mt-h8300hds                             |       4 -
 gnu/usr.bin/gas/config/mt-i386aix                              |       3 -
 gnu/usr.bin/gas/config/mt-mips                                 |       1 -
 gnu/usr.bin/gas/config/mt-rs6000                               |       1 -
 gnu/usr.bin/gas/config/obj-aout.c                              |     663 -
 gnu/usr.bin/gas/config/obj-aout.h                              |     281 -
 gnu/usr.bin/gas/config/obj-bfd-sunos.c                         |      71 -
 gnu/usr.bin/gas/config/obj-bfd-sunos.h                         |      69 -
 gnu/usr.bin/gas/config/obj-bout.c                              |     476 -
 gnu/usr.bin/gas/config/obj-bout.h                              |     313 -
 gnu/usr.bin/gas/config/obj-coff.c                              |    1978 -
 gnu/usr.bin/gas/config/obj-coff.h                              |     598 -
 gnu/usr.bin/gas/config/obj-coffbfd.c                           |    2182 -
 gnu/usr.bin/gas/config/obj-coffbfd.h                           |     516 -
 gnu/usr.bin/gas/config/obj-generic.c                           |      41 -
 gnu/usr.bin/gas/config/obj-generic.h                           |      78 -
 gnu/usr.bin/gas/config/obj-ieee.c                              |     539 -
 gnu/usr.bin/gas/config/obj-ieee.h                              |      46 -
 gnu/usr.bin/gas/config/obj-vms.c                               |    5484 -
 gnu/usr.bin/gas/config/obj-vms.h                               |     474 -
 gnu/usr.bin/gas/config/tc-a29k.c                               |    1113 -
 gnu/usr.bin/gas/config/tc-a29k.h                               |      40 -
 gnu/usr.bin/gas/config/tc-generic.h                            |      37 -
 gnu/usr.bin/gas/config/tc-h8300.c                              |    1295 -
 gnu/usr.bin/gas/config/tc-h8300.h                              |      38 -
 gnu/usr.bin/gas/config/tc-i386.c                               |    2344 -
 gnu/usr.bin/gas/config/tc-i386.h                               |     251 -
 gnu/usr.bin/gas/config/tc-i860.c                               |    1295 -
 gnu/usr.bin/gas/config/tc-i860.h                               |      24 -
 gnu/usr.bin/gas/config/tc-i960.c                               |    2759 -
 gnu/usr.bin/gas/config/tc-i960.h                               |     281 -
 gnu/usr.bin/gas/config/tc-m68k.c                               |    4090 -
 gnu/usr.bin/gas/config/tc-m68k.h                               |      61 -
 gnu/usr.bin/gas/config/tc-m68kmote.h                           |      64 -
 gnu/usr.bin/gas/config/tc-m88k.c                               |    1435 -
 gnu/usr.bin/gas/config/tc-m88k.h                               |      35 -
 gnu/usr.bin/gas/config/tc-ns32k.c                              |    2015 -
 gnu/usr.bin/gas/config/tc-ns32k.h                              |      66 -
 gnu/usr.bin/gas/config/tc-powerpc.c                            |    1312 -
 gnu/usr.bin/gas/config/tc-powerpc.h                            |      54 -
 gnu/usr.bin/gas/config/tc-sparc.c                              |    1803 -
 gnu/usr.bin/gas/config/tc-sparc.h                              |      52 -
 gnu/usr.bin/gas/config/tc-tahoe.c                              |    1924 -
 gnu/usr.bin/gas/config/tc-tahoe.h                              |      36 -
 gnu/usr.bin/gas/config/tc-vax.c                                |    3084 -
 gnu/usr.bin/gas/config/tc-vax.h                                |      26 -
 gnu/usr.bin/gas/config/te-dpx2.h                               |       8 -
 gnu/usr.bin/gas/config/te-generic.h                            |      25 -
 gnu/usr.bin/gas/config/te-hpux.h                               |      99 -
 gnu/usr.bin/gas/config/te-i386aix.h                            |      19 -
 gnu/usr.bin/gas/config/te-ic960.h                              |      46 -
 gnu/usr.bin/gas/config/te-sco386.h                             |       7 -
 gnu/usr.bin/gas/config/te-sequent.h                            |      32 -
 gnu/usr.bin/gas/config/te-sun3.h                               |      49 -
 gnu/usr.bin/gas/config/te-sysv32.h                             |       4 -
 gnu/usr.bin/gas/config/vax-inst.h                              |      77 -
 gnu/usr.bin/gas/configdos.bat                                  |      14 -
 gnu/usr.bin/gas/configure.in                                   |     204 -
 gnu/usr.bin/gas/debug.c                                        |     104 -
 gnu/usr.bin/gas/doc/Makefile                                   |     187 -
 gnu/usr.bin/gas/doc/Makefile.in                                |     172 -
 gnu/usr.bin/gas/doc/a29k-coff.m4                               |      14 -
 gnu/usr.bin/gas/doc/a29k.m4                                    |       9 -
 gnu/usr.bin/gas/doc/all.m4                                     |      20 -
 gnu/usr.bin/gas/doc/as.texinfo                                 |    6730 -
 gnu/usr.bin/gas/doc/config.status                              |       5 -
 gnu/usr.bin/gas/doc/configure.in                               |      34 -
 gnu/usr.bin/gas/doc/gen.m4                                     |      14 -
 gnu/usr.bin/gas/doc/h8.m4                                      |      15 -
 gnu/usr.bin/gas/doc/i80386.m4                                  |      12 -
 gnu/usr.bin/gas/doc/i960.m4                                    |      16 -
 gnu/usr.bin/gas/doc/m680x0.m4                                  |       8 -
 gnu/usr.bin/gas/doc/none.m4                                    |      57 -
 gnu/usr.bin/gas/doc/pretex.m4                                  |     268 -
 gnu/usr.bin/gas/doc/sparc.m4                                   |       8 -
 gnu/usr.bin/gas/doc/vax.m4                                     |       7 -
 gnu/usr.bin/gas/doc/vintage.m4                                 |      11 -
 gnu/usr.bin/gas/expr.c                                         |    1005 -
 gnu/usr.bin/gas/expr.h                                         |      85 -
 gnu/usr.bin/gas/flo-const.c                                    |     161 -
 gnu/usr.bin/gas/flo-copy.c                                     |      70 -
 gnu/usr.bin/gas/flonum-mult.c                                  |     203 -
 gnu/usr.bin/gas/flonum.h                                       |     125 -
 gnu/usr.bin/gas/frags.c                                        |     296 -
 gnu/usr.bin/gas/frags.h                                        |      89 -
 gnu/usr.bin/gas/gas-format.el                                  |      79 -
 gnu/usr.bin/gas/hash.c                                         |     992 -
 gnu/usr.bin/gas/hash.h                                         |      65 -
 gnu/usr.bin/gas/hex-value.c                                    |      61 -
 gnu/usr.bin/gas/input-file.c                                   |     327 -
 gnu/usr.bin/gas/input-file.h                                   |      88 -
 gnu/usr.bin/gas/input-scrub.c                                  |     420 -
 gnu/usr.bin/gas/link.cmd                                       |      10 -
 gnu/usr.bin/gas/listing.c                                      |    1079 -
 gnu/usr.bin/gas/listing.h                                      |     115 -
 gnu/usr.bin/gas/make-gas.com                                   |      86 -
 gnu/usr.bin/gas/makefile.dos                                   |     593 -
 gnu/usr.bin/gas/messages.c                                     |     593 -
 gnu/usr.bin/gas/obj.h                                          |      77 -
 gnu/usr.bin/gas/obstack.c                                      |     374 -
 gnu/usr.bin/gas/obstack.h                                      |     448 -
 gnu/usr.bin/gas/opcode/ChangeLog                               |      56 -
 gnu/usr.bin/gas/opcode/a29k.h                                  |     327 -
 gnu/usr.bin/gas/opcode/h8300.h                                 |     266 -
 gnu/usr.bin/gas/opcode/i386.h                                  |     876 -
 gnu/usr.bin/gas/opcode/i860.h                                  |     495 -
 gnu/usr.bin/gas/opcode/i960.h                                  |     434 -
 gnu/usr.bin/gas/opcode/m68k.h                                  |    1998 -
 gnu/usr.bin/gas/opcode/m88k.h                                  |     282 -
 gnu/usr.bin/gas/opcode/mips.h                                  |     363 -
 gnu/usr.bin/gas/opcode/np1.h                                   |     422 -
 gnu/usr.bin/gas/opcode/ns32k.h                                 |     491 -
 gnu/usr.bin/gas/opcode/pn.h                                    |     282 -
 gnu/usr.bin/gas/opcode/ppc.h                                   |    3073 -
 gnu/usr.bin/gas/opcode/pyr.h                                   |     287 -
 gnu/usr.bin/gas/opcode/sparc.h                                 |     886 -
 gnu/usr.bin/gas/opcode/tahoe.h                                 |     247 -
 gnu/usr.bin/gas/opcode/vax.h                                   |     382 -
 gnu/usr.bin/gas/output-file.c                                  |     122 -
 gnu/usr.bin/gas/output-file.h                                  |      40 -
 gnu/usr.bin/gas/read.c                                         |    2396 -
 gnu/usr.bin/gas/read.h                                         |     158 -
 gnu/usr.bin/gas/struc-symbol.h                                 |     134 -
 gnu/usr.bin/gas/subsegs.c                                      |     313 -
 gnu/usr.bin/gas/subsegs.h                                      |      93 -
 gnu/usr.bin/gas/symbols.c                                      |     654 -
 gnu/usr.bin/gas/symbols.h                                      |      82 -
 gnu/usr.bin/gas/tc.h                                           |     112 -
 gnu/usr.bin/gas/testscripts/doboth                             |      20 -
 gnu/usr.bin/gas/testscripts/doobjcmp                           |      89 -
 gnu/usr.bin/gas/testscripts/dostriptest                        |      15 -
 gnu/usr.bin/gas/testscripts/dotest                             |      44 -
 gnu/usr.bin/gas/testscripts/dounsortreloc                      |       9 -
 gnu/usr.bin/gas/testscripts/dounsortsymbols                    |       9 -
 gnu/usr.bin/gas/version.c                                      |      30 -
 gnu/usr.bin/gas/write.c                                        |    1222 -
 gnu/usr.bin/gas/write.h                                        |     120 -
 gnu/usr.bin/gas/xmalloc.c                                      |      75 -
 gnu/usr.bin/gas/xrealloc.c                                     |      74 -
 gnu/usr.bin/gasp/Makefile                                      |      30 -
 gnu/usr.bin/gawk/Makefile                                      |      30 -
 gnu/usr.bin/gawk/config.h                                      |     207 -
 gnu/usr.bin/gdb/.gdbinit                                       |      27 -
 gnu/usr.bin/gdb/GDBvn.texi                                     |       2 -
 gnu/usr.bin/gdb/Makefile                                       |     118 -
 gnu/usr.bin/gdb/config.h                                       |     152 -
 gnu/usr.bin/gdb/gdb-cfg.texi                                   |       2 -
 gnu/usr.bin/gdb/mkinit.sh                                      |      50 -
 gnu/usr.bin/gdb/version.c                                      |       5 -
 gnu/usr.bin/gdb/xm.h                                           |       3 -
 gnu/usr.bin/gprof/Makefile                                     |      23 -
 gnu/usr.bin/gprof/gconfig.h                                    |      14 -
 gnu/usr.bin/grep/Makefile                                      |      42 -
 gnu/usr.bin/grep/config.h                                      |     186 -
 gnu/usr.bin/grep/libintl.h                                     |       3 -
 gnu/usr.bin/groff/BUG-REPORT                                   |      55 -
 gnu/usr.bin/groff/COPYING                                      |     339 -
 gnu/usr.bin/groff/ChangeLog                                    |    5717 -
 gnu/usr.bin/groff/Makefile                                     |      25 -
 gnu/usr.bin/groff/Makefile.cfg                                 |      42 -
 gnu/usr.bin/groff/NEWS                                         |     729 -
 gnu/usr.bin/groff/PROBLEMS                                     |     548 -
 gnu/usr.bin/groff/PROJECTS                                     |      17 -
 gnu/usr.bin/groff/README.gnu                                   |      36 -
 gnu/usr.bin/groff/TODO                                         |      26 -
 gnu/usr.bin/groff/VERSION                                      |       1 -
 gnu/usr.bin/groff/addftinfo/Makefile                           |      11 -
 gnu/usr.bin/groff/addftinfo/addftinfo.1                        |     102 -
 gnu/usr.bin/groff/addftinfo/addftinfo.cc                       |     196 -
 gnu/usr.bin/groff/addftinfo/guess.cc                           |     490 -
 gnu/usr.bin/groff/addftinfo/guess.h                            |      44 -
 gnu/usr.bin/groff/afmtodit/Makefile                            |       8 -
 gnu/usr.bin/groff/afmtodit/afmtodit.1                          |     221 -
 gnu/usr.bin/groff/afmtodit/afmtodit.pl                         |     326 -
 gnu/usr.bin/groff/devices/Makefile                             |       6 -
 gnu/usr.bin/groff/devices/Makefile.dev                         |      44 -
 gnu/usr.bin/groff/devices/Makefile.tty                         |      53 -
 gnu/usr.bin/groff/devices/devX100-12/CB                        |     306 -
 gnu/usr.bin/groff/devices/devX100-12/CBI                       |     306 -
 gnu/usr.bin/groff/devices/devX100-12/CI                        |     306 -
 gnu/usr.bin/groff/devices/devX100-12/CR                        |     306 -
 gnu/usr.bin/groff/devices/devX100-12/DESC                      |       9 -
 gnu/usr.bin/groff/devices/devX100-12/HB                        |     306 -
 gnu/usr.bin/groff/devices/devX100-12/HBI                       |     306 -
 gnu/usr.bin/groff/devices/devX100-12/HI                        |     306 -
 gnu/usr.bin/groff/devices/devX100-12/HR                        |     306 -
 gnu/usr.bin/groff/devices/devX100-12/Makefile                  |      10 -
 gnu/usr.bin/groff/devices/devX100-12/NB                        |     306 -
 gnu/usr.bin/groff/devices/devX100-12/NBI                       |     306 -
 gnu/usr.bin/groff/devices/devX100-12/NI                        |     306 -
 gnu/usr.bin/groff/devices/devX100-12/NR                        |     306 -
 gnu/usr.bin/groff/devices/devX100-12/S                         |     226 -
 gnu/usr.bin/groff/devices/devX100-12/TB                        |     306 -
 gnu/usr.bin/groff/devices/devX100-12/TBI                       |     306 -
 gnu/usr.bin/groff/devices/devX100-12/TI                        |     306 -
 gnu/usr.bin/groff/devices/devX100-12/TR                        |     306 -
 gnu/usr.bin/groff/devices/devX100/CB                           |     306 -
 gnu/usr.bin/groff/devices/devX100/CBI                          |     306 -
 gnu/usr.bin/groff/devices/devX100/CI                           |     306 -
 gnu/usr.bin/groff/devices/devX100/CR                           |     306 -
 gnu/usr.bin/groff/devices/devX100/DESC                         |       9 -
 gnu/usr.bin/groff/devices/devX100/HB                           |     306 -
 gnu/usr.bin/groff/devices/devX100/HBI                          |     306 -
 gnu/usr.bin/groff/devices/devX100/HI                           |     306 -
 gnu/usr.bin/groff/devices/devX100/HR                           |     306 -
 gnu/usr.bin/groff/devices/devX100/Makefile                     |      10 -
 gnu/usr.bin/groff/devices/devX100/NB                           |     306 -
 gnu/usr.bin/groff/devices/devX100/NBI                          |     306 -
 gnu/usr.bin/groff/devices/devX100/NI                           |     306 -
 gnu/usr.bin/groff/devices/devX100/NR                           |     306 -
 gnu/usr.bin/groff/devices/devX100/S                            |     226 -
 gnu/usr.bin/groff/devices/devX100/TB                           |     306 -
 gnu/usr.bin/groff/devices/devX100/TBI                          |     306 -
 gnu/usr.bin/groff/devices/devX100/TI                           |     306 -
 gnu/usr.bin/groff/devices/devX100/TR                           |     306 -
 gnu/usr.bin/groff/devices/devX75-12/CB                         |     306 -
 gnu/usr.bin/groff/devices/devX75-12/CBI                        |     306 -
 gnu/usr.bin/groff/devices/devX75-12/CI                         |     306 -
 gnu/usr.bin/groff/devices/devX75-12/CR                         |     306 -
 gnu/usr.bin/groff/devices/devX75-12/DESC                       |       9 -
 gnu/usr.bin/groff/devices/devX75-12/HB                         |     306 -
 gnu/usr.bin/groff/devices/devX75-12/HBI                        |     306 -
 gnu/usr.bin/groff/devices/devX75-12/HI                         |     306 -
 gnu/usr.bin/groff/devices/devX75-12/HR                         |     306 -
 gnu/usr.bin/groff/devices/devX75-12/Makefile                   |      10 -
 gnu/usr.bin/groff/devices/devX75-12/NB                         |     306 -
 gnu/usr.bin/groff/devices/devX75-12/NBI                        |     306 -
 gnu/usr.bin/groff/devices/devX75-12/NI                         |     306 -
 gnu/usr.bin/groff/devices/devX75-12/NR                         |     306 -
 gnu/usr.bin/groff/devices/devX75-12/S                          |     226 -
 gnu/usr.bin/groff/devices/devX75-12/TB                         |     306 -
 gnu/usr.bin/groff/devices/devX75-12/TBI                        |     306 -
 gnu/usr.bin/groff/devices/devX75-12/TI                         |     306 -
 gnu/usr.bin/groff/devices/devX75-12/TR                         |     306 -
 gnu/usr.bin/groff/devices/devX75/CB                            |     306 -
 gnu/usr.bin/groff/devices/devX75/CBI                           |     306 -
 gnu/usr.bin/groff/devices/devX75/CI                            |     306 -
 gnu/usr.bin/groff/devices/devX75/CR                            |     306 -
 gnu/usr.bin/groff/devices/devX75/DESC                          |       9 -
 gnu/usr.bin/groff/devices/devX75/HB                            |     306 -
 gnu/usr.bin/groff/devices/devX75/HBI                           |     306 -
 gnu/usr.bin/groff/devices/devX75/HI                            |     306 -
 gnu/usr.bin/groff/devices/devX75/HR                            |     306 -
 gnu/usr.bin/groff/devices/devX75/Makefile                      |      10 -
 gnu/usr.bin/groff/devices/devX75/NB                            |     306 -
 gnu/usr.bin/groff/devices/devX75/NBI                           |     306 -
 gnu/usr.bin/groff/devices/devX75/NI                            |     306 -
 gnu/usr.bin/groff/devices/devX75/NR                            |     306 -
 gnu/usr.bin/groff/devices/devX75/S                             |     226 -
 gnu/usr.bin/groff/devices/devX75/TB                            |     306 -
 gnu/usr.bin/groff/devices/devX75/TBI                           |     306 -
 gnu/usr.bin/groff/devices/devX75/TI                            |     306 -
 gnu/usr.bin/groff/devices/devX75/TR                            |     306 -
 gnu/usr.bin/groff/devices/devascii/DESC.proto                  |       8 -
 gnu/usr.bin/groff/devices/devascii/Makefile                    |       6 -
 gnu/usr.bin/groff/devices/devascii/R.proto                     |     165 -
 gnu/usr.bin/groff/devices/devdvi/B                             |     347 -
 gnu/usr.bin/groff/devices/devdvi/BI                            |     352 -
 gnu/usr.bin/groff/devices/devdvi/CW                            |     158 -
 gnu/usr.bin/groff/devices/devdvi/DESC                          |      11 -
 gnu/usr.bin/groff/devices/devdvi/EX                            |     144 -
 gnu/usr.bin/groff/devices/devdvi/H                             |     302 -
 gnu/usr.bin/groff/devices/devdvi/HB                            |     302 -
 gnu/usr.bin/groff/devices/devdvi/HI                            |     303 -
 gnu/usr.bin/groff/devices/devdvi/I                             |     353 -
 gnu/usr.bin/groff/devices/devdvi/MI                            |     136 -
 gnu/usr.bin/groff/devices/devdvi/Makefile                      |      14 -
 gnu/usr.bin/groff/devices/devdvi/R                             |     430 -
 gnu/usr.bin/groff/devices/devdvi/S                             |     152 -
 gnu/usr.bin/groff/devices/devdvi/SA                            |     143 -
 gnu/usr.bin/groff/devices/devdvi/SB                            |     132 -
 gnu/usr.bin/groff/devices/devdvi/generate/CompileFonts         |      15 -
 gnu/usr.bin/groff/devices/devdvi/generate/Makefile             |      95 -
 gnu/usr.bin/groff/devices/devdvi/generate/cork.map             |     206 -
 gnu/usr.bin/groff/devices/devdvi/generate/msam.map             |     127 -
 gnu/usr.bin/groff/devices/devdvi/generate/msbm.map             |     121 -
 gnu/usr.bin/groff/devices/devdvi/generate/texb.map             |     127 -
 gnu/usr.bin/groff/devices/devdvi/generate/texex.map            |     100 -
 gnu/usr.bin/groff/devices/devdvi/generate/texi.map             |     127 -
 gnu/usr.bin/groff/devices/devdvi/generate/texmi.map            |      32 -
 gnu/usr.bin/groff/devices/devdvi/generate/texr.map             |     127 -
 gnu/usr.bin/groff/devices/devdvi/generate/texsy.map            |     100 -
 gnu/usr.bin/groff/devices/devdvi/generate/textt.map            |     126 -
 gnu/usr.bin/groff/devices/devlatin1/DESC.proto                 |       8 -
 gnu/usr.bin/groff/devices/devlatin1/Makefile                   |       6 -
 gnu/usr.bin/groff/devices/devlatin1/R.proto                    |     353 -
 gnu/usr.bin/groff/devices/devlj4/ALBB                          |     773 -
 gnu/usr.bin/groff/devices/devlj4/ALBR                          |     788 -
 gnu/usr.bin/groff/devices/devlj4/AOB                           |     744 -
 gnu/usr.bin/groff/devices/devlj4/AOI                           |     797 -
 gnu/usr.bin/groff/devices/devlj4/AOR                           |     720 -
 gnu/usr.bin/groff/devices/devlj4/CB                            |     347 -
 gnu/usr.bin/groff/devices/devlj4/CBI                           |     348 -
 gnu/usr.bin/groff/devices/devlj4/CI                            |     348 -
 gnu/usr.bin/groff/devices/devlj4/CLARENDON                     |     348 -
 gnu/usr.bin/groff/devices/devlj4/CORONET                       |     348 -
 gnu/usr.bin/groff/devices/devlj4/CR                            |     347 -
 gnu/usr.bin/groff/devices/devlj4/DESC                          |      10 -
 gnu/usr.bin/groff/devices/devlj4/GB                            |     732 -
 gnu/usr.bin/groff/devices/devlj4/GBI                           |     736 -
 gnu/usr.bin/groff/devices/devlj4/GI                            |     669 -
 gnu/usr.bin/groff/devices/devlj4/GR                            |     853 -
 gnu/usr.bin/groff/devices/devlj4/LGB                           |     347 -
 gnu/usr.bin/groff/devices/devlj4/LGI                           |     348 -
 gnu/usr.bin/groff/devices/devlj4/LGR                           |     347 -
 gnu/usr.bin/groff/devices/devlj4/MARIGOLD                      |     348 -
 gnu/usr.bin/groff/devices/devlj4/Makefile                      |      13 -
 gnu/usr.bin/groff/devices/devlj4/OB                            |     797 -
 gnu/usr.bin/groff/devices/devlj4/OBI                           |     793 -
 gnu/usr.bin/groff/devices/devlj4/OI                            |     905 -
 gnu/usr.bin/groff/devices/devlj4/OR                            |     876 -
 gnu/usr.bin/groff/devices/devlj4/S                             |     195 -
 gnu/usr.bin/groff/devices/devlj4/TB                            |     971 -
 gnu/usr.bin/groff/devices/devlj4/TBI                           |    1023 -
 gnu/usr.bin/groff/devices/devlj4/TI                            |    1106 -
 gnu/usr.bin/groff/devices/devlj4/TR                            |     860 -
 gnu/usr.bin/groff/devices/devlj4/UB                            |     809 -
 gnu/usr.bin/groff/devices/devlj4/UBI                           |     759 -
 gnu/usr.bin/groff/devices/devlj4/UCB                           |     774 -
 gnu/usr.bin/groff/devices/devlj4/UCBI                          |     683 -
 gnu/usr.bin/groff/devices/devlj4/UCI                           |     822 -
 gnu/usr.bin/groff/devices/devlj4/UCR                           |     742 -
 gnu/usr.bin/groff/devices/devlj4/UI                            |     917 -
 gnu/usr.bin/groff/devices/devlj4/UR                            |     858 -
 gnu/usr.bin/groff/devices/devlj4/generate/Makefile             |     163 -
 gnu/usr.bin/groff/devices/devlj4/generate/special.map          |     178 -
 gnu/usr.bin/groff/devices/devlj4/generate/text.map             |     341 -
 gnu/usr.bin/groff/devices/devps/AB                             |     559 -
 gnu/usr.bin/groff/devices/devps/ABI                            |     560 -
 gnu/usr.bin/groff/devices/devps/AI                             |     559 -
 gnu/usr.bin/groff/devices/devps/AR                             |     558 -
 gnu/usr.bin/groff/devices/devps/BMB                            |     438 -
 gnu/usr.bin/groff/devices/devps/BMBI                           |     441 -
 gnu/usr.bin/groff/devices/devps/BMI                            |     434 -
 gnu/usr.bin/groff/devices/devps/BMR                            |     430 -
 gnu/usr.bin/groff/devices/devps/CB                             |     336 -
 gnu/usr.bin/groff/devices/devps/CBI                            |     337 -
 gnu/usr.bin/groff/devices/devps/CI                             |     337 -
 gnu/usr.bin/groff/devices/devps/CR                             |     336 -
 gnu/usr.bin/groff/devices/devps/DESC                           |      14 -
 gnu/usr.bin/groff/devices/devps/DESC-A4                        |      14 -
 gnu/usr.bin/groff/devices/devps/DESC-letter                    |      14 -
 gnu/usr.bin/groff/devices/devps/HB                             |     546 -
 gnu/usr.bin/groff/devices/devps/HBI                            |     547 -
 gnu/usr.bin/groff/devices/devps/HI                             |     617 -
 gnu/usr.bin/groff/devices/devps/HNB                            |     546 -
 gnu/usr.bin/groff/devices/devps/HNBI                           |     547 -
 gnu/usr.bin/groff/devices/devps/HNI                            |     617 -
 gnu/usr.bin/groff/devices/devps/HNR                            |     616 -
 gnu/usr.bin/groff/devices/devps/HR                             |     616 -
 gnu/usr.bin/groff/devices/devps/Makefile                       |      17 -
 gnu/usr.bin/groff/devices/devps/NB                             |     446 -
 gnu/usr.bin/groff/devices/devps/NBI                            |     447 -
 gnu/usr.bin/groff/devices/devps/NI                             |     447 -
 gnu/usr.bin/groff/devices/devps/NR                             |     447 -
 gnu/usr.bin/groff/devices/devps/PB                             |     449 -
 gnu/usr.bin/groff/devices/devps/PBI                            |     451 -
 gnu/usr.bin/groff/devices/devps/PI                             |     453 -
 gnu/usr.bin/groff/devices/devps/PR                             |     456 -
 gnu/usr.bin/groff/devices/devps/S                              |     227 -
 gnu/usr.bin/groff/devices/devps/SS                             |     194 -
 gnu/usr.bin/groff/devices/devps/TB                             |     533 -
 gnu/usr.bin/groff/devices/devps/TBI                            |     515 -
 gnu/usr.bin/groff/devices/devps/TI                             |     528 -
 gnu/usr.bin/groff/devices/devps/TR                             |     519 -
 gnu/usr.bin/groff/devices/devps/ZCMI                           |     477 -
 gnu/usr.bin/groff/devices/devps/ZD                             |     193 -
 gnu/usr.bin/groff/devices/devps/ZDR                            |     193 -
 gnu/usr.bin/groff/devices/devps/dingbatsmap                    |       2 -
 gnu/usr.bin/groff/devices/devps/download                       |       5 -
 gnu/usr.bin/groff/devices/devps/generate/Makefile              |     226 -
 gnu/usr.bin/groff/devices/devps/generate/afmname               |      44 -
 gnu/usr.bin/groff/devices/devps/generate/dingbatsmap           |       2 -
 gnu/usr.bin/groff/devices/devps/generate/dingbatsrmap          |       1 -
 gnu/usr.bin/groff/devices/devps/generate/lgreekmap             |      28 -
 gnu/usr.bin/groff/devices/devps/generate/symbol.sed            |      33 -
 gnu/usr.bin/groff/devices/devps/generate/symbolchars           |      60 -
 gnu/usr.bin/groff/devices/devps/generate/symbolsl.afm          |     203 -
 gnu/usr.bin/groff/devices/devps/generate/textmap               |     450 -
 gnu/usr.bin/groff/devices/devps/prologue                       |     155 -
 gnu/usr.bin/groff/devices/devps/psstrip.sed                    |       7 -
 gnu/usr.bin/groff/devices/devps/symbol.afm                     |     215 -
 gnu/usr.bin/groff/devices/devps/symbolmap                      |     510 -
 gnu/usr.bin/groff/devices/devps/symbolsl.pfa                   |      29 -
 gnu/usr.bin/groff/devices/devps/text.enc                       |     231 -
 gnu/usr.bin/groff/devices/devps/zapfdr.afm                     |     222 -
 gnu/usr.bin/groff/devices/devps/zapfdr.pfa                     |     218 -
 gnu/usr.bin/groff/doc/Makefile                                 |      55 -
 gnu/usr.bin/groff/doc/meintro.me                               |    2246 -
 gnu/usr.bin/groff/doc/meref.me                                 |    2194 -
 gnu/usr.bin/groff/eqn/Makefile                                 |      25 -
 gnu/usr.bin/groff/eqn/TODO                                     |      49 -
 gnu/usr.bin/groff/eqn/box.cc                                   |     611 -
 gnu/usr.bin/groff/eqn/box.h                                    |     277 -
 gnu/usr.bin/groff/eqn/delim.cc                                 |     381 -
 gnu/usr.bin/groff/eqn/eqn.1                                    |     879 -
 gnu/usr.bin/groff/eqn/eqn.h                                    |      51 -
 gnu/usr.bin/groff/eqn/eqn.y                                    |     331 -
 gnu/usr.bin/groff/eqn/lex.cc                                   |    1165 -
 gnu/usr.bin/groff/eqn/limit.cc                                 |     195 -
 gnu/usr.bin/groff/eqn/list.cc                                  |     237 -
 gnu/usr.bin/groff/eqn/main.cc                                  |     352 -
 gnu/usr.bin/groff/eqn/mark.cc                                  |     121 -
 gnu/usr.bin/groff/eqn/neqn.sh                                  |       5 -
 gnu/usr.bin/groff/eqn/other.cc                                 |     601 -
 gnu/usr.bin/groff/eqn/over.cc                                  |     196 -
 gnu/usr.bin/groff/eqn/pbox.h                                   |     141 -
 gnu/usr.bin/groff/eqn/pile.cc                                  |     293 -
 gnu/usr.bin/groff/eqn/script.cc                                |     221 -
 gnu/usr.bin/groff/eqn/special.cc                               |     115 -
 gnu/usr.bin/groff/eqn/sqrt.cc                                  |     179 -
 gnu/usr.bin/groff/eqn/text.cc                                  |     528 -
 gnu/usr.bin/groff/grodvi/Makefile                              |      11 -
 gnu/usr.bin/groff/grodvi/dvi.cc                                |     896 -
 gnu/usr.bin/groff/grodvi/grodvi.1                              |     171 -
 gnu/usr.bin/groff/groff/Makefile                               |      11 -
 gnu/usr.bin/groff/groff/groff.1                                |     402 -
 gnu/usr.bin/groff/groff/groff.cc                               |     605 -
 gnu/usr.bin/groff/groff/pipeline.c                             |     239 -
 gnu/usr.bin/groff/groff/pipeline.h                             |      30 -
 gnu/usr.bin/groff/grog/Makefile                                |       8 -
 gnu/usr.bin/groff/grog/grog.1                                  |      73 -
 gnu/usr.bin/groff/grog/grog.pl                                 |     150 -
 gnu/usr.bin/groff/grog/grog.sh                                 |      79 -
 gnu/usr.bin/groff/grolj4/Makefile                              |      11 -
 gnu/usr.bin/groff/grolj4/grolj4.1                              |     109 -
 gnu/usr.bin/groff/grolj4/lj4.cc                                |     675 -
 gnu/usr.bin/groff/grops/Makefile                               |      11 -
 gnu/usr.bin/groff/grops/TODO                                   |      29 -
 gnu/usr.bin/groff/grops/grops.1                                |     837 -
 gnu/usr.bin/groff/grops/ps.cc                                  |    1532 -
 gnu/usr.bin/groff/grops/ps.h                                   |     122 -
 gnu/usr.bin/groff/grops/psfig.diff                             |     106 -
 gnu/usr.bin/groff/grops/psrm.cc                                |    1099 -
 gnu/usr.bin/groff/grotty/Makefile                              |      11 -
 gnu/usr.bin/groff/grotty/TODO                                  |       3 -
 gnu/usr.bin/groff/grotty/grotty.1                              |     221 -
 gnu/usr.bin/groff/grotty/tty.cc                                |     443 -
 gnu/usr.bin/groff/hpftodit/Makefile                            |      11 -
 gnu/usr.bin/groff/hpftodit/hpftodit.1                          |     151 -
 gnu/usr.bin/groff/hpftodit/hpftodit.cc                         |     779 -
 gnu/usr.bin/groff/include/assert.h                             |      39 -
 gnu/usr.bin/groff/include/cmap.h                               |      56 -
 gnu/usr.bin/groff/include/cset.h                               |      75 -
 gnu/usr.bin/groff/include/defs.h                               |      10 -
 gnu/usr.bin/groff/include/device.h                             |      21 -
 gnu/usr.bin/groff/include/driver.h                             |      36 -
 gnu/usr.bin/groff/include/errarg.h                             |      46 -
 gnu/usr.bin/groff/include/error.h                              |      58 -
 gnu/usr.bin/groff/include/font.h                               |     113 -
 gnu/usr.bin/groff/include/index.h                              |      42 -
 gnu/usr.bin/groff/include/lib.h                                |     122 -
 gnu/usr.bin/groff/include/macropath.h                          |      21 -
 gnu/usr.bin/groff/include/posix.h                              |      49 -
 gnu/usr.bin/groff/include/printer.h                            |      66 -
 gnu/usr.bin/groff/include/ptable.h                             |     168 -
 gnu/usr.bin/groff/include/refid.h                              |      35 -
 gnu/usr.bin/groff/include/search.h                             |      96 -
 gnu/usr.bin/groff/include/searchpath.h                         |      29 -
 gnu/usr.bin/groff/include/stringclass.h                        |     195 -
 gnu/usr.bin/groff/indxbib/Makefile                             |      21 -
 gnu/usr.bin/groff/indxbib/dirnamemax.c                         |      49 -
 gnu/usr.bin/groff/indxbib/eign                                 |     133 -
 gnu/usr.bin/groff/indxbib/indxbib.1                            |     204 -
 gnu/usr.bin/groff/indxbib/indxbib.cc                           |     744 -
 gnu/usr.bin/groff/indxbib/signal.c                             |      63 -
 gnu/usr.bin/groff/libbib/Makefile                              |      15 -
 gnu/usr.bin/groff/libbib/common.cc                             |      38 -
 gnu/usr.bin/groff/libbib/index.cc                              |     623 -
 gnu/usr.bin/groff/libbib/linear.cc                             |     489 -
 gnu/usr.bin/groff/libbib/map.c                                 |      75 -
 gnu/usr.bin/groff/libbib/search.cc                             |     131 -
 gnu/usr.bin/groff/libdriver/Makefile                           |      15 -
 gnu/usr.bin/groff/libdriver/input.cc                           |     476 -
 gnu/usr.bin/groff/libdriver/printer.cc                         |     241 -
 gnu/usr.bin/groff/libgroff/Makefile                            |      25 -
 gnu/usr.bin/groff/libgroff/assert.cc                           |      34 -
 gnu/usr.bin/groff/libgroff/change_lf.cc                        |      37 -
 gnu/usr.bin/groff/libgroff/cmap.cc                             |      56 -
 gnu/usr.bin/groff/libgroff/cset.cc                             |     102 -
 gnu/usr.bin/groff/libgroff/device.cc                           |      36 -
 gnu/usr.bin/groff/libgroff/errarg.cc                           |     118 -
 gnu/usr.bin/groff/libgroff/error.cc                            |     137 -
 gnu/usr.bin/groff/libgroff/fatal.cc                            |      27 -
 gnu/usr.bin/groff/libgroff/filename.cc                         |       1 -
 gnu/usr.bin/groff/libgroff/fmod.c                              |      28 -
 gnu/usr.bin/groff/libgroff/font.cc                             |     911 -
 gnu/usr.bin/groff/libgroff/fontfile.cc                         |      64 -
 gnu/usr.bin/groff/libgroff/getcwd.c                            |      38 -
 gnu/usr.bin/groff/libgroff/iftoa.c                             |      65 -
 gnu/usr.bin/groff/libgroff/illegal.cc                          |      22 -
 gnu/usr.bin/groff/libgroff/itoa.c                              |      43 -
 gnu/usr.bin/groff/libgroff/lf.cc                               |      62 -
 gnu/usr.bin/groff/libgroff/lineno.cc                           |       1 -
 gnu/usr.bin/groff/libgroff/macropath.cc                        |      28 -
 gnu/usr.bin/groff/libgroff/matherr.c                           |      45 -
 gnu/usr.bin/groff/libgroff/nametoindex.cc                      |     118 -
 gnu/usr.bin/groff/libgroff/new.cc                              |      67 -
 gnu/usr.bin/groff/libgroff/prime.cc                            |      26 -
 gnu/usr.bin/groff/libgroff/progname.cc                         |       1 -
 gnu/usr.bin/groff/libgroff/ptable.cc                           |      52 -
 gnu/usr.bin/groff/libgroff/putenv.c                            |      96 -
 gnu/usr.bin/groff/libgroff/searchpath.cc                       |     117 -
 gnu/usr.bin/groff/libgroff/strerror.c                          |      37 -
 gnu/usr.bin/groff/libgroff/string.cc                           |     311 -
 gnu/usr.bin/groff/libgroff/strsave.cc                          |      31 -
 gnu/usr.bin/groff/libgroff/strtol.c                            |     131 -
 gnu/usr.bin/groff/libgroff/tmpfile.cc                          |      99 -
 gnu/usr.bin/groff/lkbib/Makefile                               |      11 -
 gnu/usr.bin/groff/lkbib/lkbib.1                                |     107 -
 gnu/usr.bin/groff/lkbib/lkbib.cc                               |     124 -
 gnu/usr.bin/groff/lookbib/Makefile                             |      11 -
 gnu/usr.bin/groff/lookbib/lookbib.1                            |      75 -
 gnu/usr.bin/groff/lookbib/lookbib.cc                           |     128 -
 gnu/usr.bin/groff/man/Makefile                                 |       6 -
 gnu/usr.bin/groff/man/groff_char.7                             |     563 -
 gnu/usr.bin/groff/man/groff_font.5                             |     368 -
 gnu/usr.bin/groff/man/groff_out.5                              |     232 -
 gnu/usr.bin/groff/mm/ChangeLog                                 |     347 -
 gnu/usr.bin/groff/mm/Makefile                                  |      29 -
 gnu/usr.bin/groff/mm/NOTES                                     |     103 -
 gnu/usr.bin/groff/mm/README                                    |      27 -
 gnu/usr.bin/groff/mm/groff_mm.7                                |    1732 -
 gnu/usr.bin/groff/mm/groff_mmse.7                              |      83 -
 gnu/usr.bin/groff/mm/mm/0.MT                                   |     146 -
 gnu/usr.bin/groff/mm/mm/4.MT                                   |      68 -
 gnu/usr.bin/groff/mm/mm/5.MT                                   |      34 -
 gnu/usr.bin/groff/mm/mm/Makefile                               |      26 -
 gnu/usr.bin/groff/mm/mm/ms.cov                                 |      84 -
 gnu/usr.bin/groff/mm/mm/se_ms.cov                              |       3 -
 gnu/usr.bin/groff/mm/tmac.m                                    |    3086 -
 gnu/usr.bin/groff/mm/tmac.mse                                  |     184 -
 gnu/usr.bin/groff/nroff/Makefile                               |       8 -
 gnu/usr.bin/groff/nroff/nroff.1                                |      91 -
 gnu/usr.bin/groff/nroff/nroff.sh                               |      61 -
 gnu/usr.bin/groff/nroff/psroff.sh                              |       2 -
 gnu/usr.bin/groff/pfbtops/Makefile                             |       9 -
 gnu/usr.bin/groff/pfbtops/pfbtops.1                            |      44 -
 gnu/usr.bin/groff/pfbtops/pfbtops.c                            |     112 -
 gnu/usr.bin/groff/pic/Makefile                                 |      15 -
 gnu/usr.bin/groff/pic/TODO                                     |      37 -
 gnu/usr.bin/groff/pic/common.cc                                |     497 -
 gnu/usr.bin/groff/pic/common.h                                 |      70 -
 gnu/usr.bin/groff/pic/lex.cc                                   |    1939 -
 gnu/usr.bin/groff/pic/main.cc                                  |     621 -
 gnu/usr.bin/groff/pic/object.cc                                |    1833 -
 gnu/usr.bin/groff/pic/object.h                                 |     217 -
 gnu/usr.bin/groff/pic/output.h                                 |      79 -
 gnu/usr.bin/groff/pic/pic.1                                    |     753 -
 gnu/usr.bin/groff/pic/pic.h                                    |     102 -
 gnu/usr.bin/groff/pic/pic.y                                    |    1795 -
 gnu/usr.bin/groff/pic/position.h                               |      47 -
 gnu/usr.bin/groff/pic/tex.cc                                   |     411 -
 gnu/usr.bin/groff/pic/text.h                                   |      28 -
 gnu/usr.bin/groff/pic/troff.cc                                 |     500 -
 gnu/usr.bin/groff/psbb/Makefile                                |       7 -
 gnu/usr.bin/groff/psbb/psbb.1                                  |      43 -
 gnu/usr.bin/groff/psbb/psbb.c                                  |     169 -
 gnu/usr.bin/groff/refer/Makefile                               |      13 -
 gnu/usr.bin/groff/refer/TODO                                   |     124 -
 gnu/usr.bin/groff/refer/command.cc                             |     807 -
 gnu/usr.bin/groff/refer/command.h                              |      36 -
 gnu/usr.bin/groff/refer/label.y                                |    1177 -
 gnu/usr.bin/groff/refer/ref.cc                                 |    1160 -
 gnu/usr.bin/groff/refer/ref.h                                  |     120 -
 gnu/usr.bin/groff/refer/refer.1                                |    1299 -
 gnu/usr.bin/groff/refer/refer.cc                               |    1227 -
 gnu/usr.bin/groff/refer/refer.h                                |      78 -
 gnu/usr.bin/groff/refer/token.cc                               |     378 -
 gnu/usr.bin/groff/refer/token.h                                |      88 -
 gnu/usr.bin/groff/soelim/Makefile                              |      11 -
 gnu/usr.bin/groff/soelim/TODO                                  |       1 -
 gnu/usr.bin/groff/soelim/soelim.1                              |      67 -
 gnu/usr.bin/groff/soelim/soelim.cc                             |     284 -
 gnu/usr.bin/groff/tbl/Makefile                                 |      11 -
 gnu/usr.bin/groff/tbl/main.cc                                  |    1511 -
 gnu/usr.bin/groff/tbl/table.cc                                 |    2778 -
 gnu/usr.bin/groff/tbl/table.h                                  |     152 -
 gnu/usr.bin/groff/tbl/tbl.1                                    |     178 -
 gnu/usr.bin/groff/tfmtodit/Makefile                            |      11 -
 gnu/usr.bin/groff/tfmtodit/tfmtodit.1                          |     167 -
 gnu/usr.bin/groff/tfmtodit/tfmtodit.cc                         |     851 -
 gnu/usr.bin/groff/tmac/Makefile                                |      26 -
 gnu/usr.bin/groff/tmac/TODO                                    |      38 -
 gnu/usr.bin/groff/tmac/eqnrc                                   |      60 -
 gnu/usr.bin/groff/tmac/fixmacros.sed                           |       6 -
 gnu/usr.bin/groff/tmac/groff_ms.7                              |     235 -
 gnu/usr.bin/groff/tmac/man.local                               |       2 -
 gnu/usr.bin/groff/tmac/msafer.7                                |      56 -
 gnu/usr.bin/groff/tmac/tmac.X                                  |      46 -
 gnu/usr.bin/groff/tmac/tmac.Xps                                |      44 -
 gnu/usr.bin/groff/tmac/tmac.a4                                 |       3 -
 gnu/usr.bin/groff/tmac/tmac.an                                 |     327 -
 gnu/usr.bin/groff/tmac/tmac.dvi                                |     135 -
 gnu/usr.bin/groff/tmac/tmac.latin1                             |     101 -
 gnu/usr.bin/groff/tmac/tmac.lj4                                |      18 -
 gnu/usr.bin/groff/tmac/tmac.pic                                |      10 -
 gnu/usr.bin/groff/tmac/tmac.ps                                 |      53 -
 gnu/usr.bin/groff/tmac/tmac.psatk                              |      61 -
 gnu/usr.bin/groff/tmac/tmac.psfig                              |      87 -
 gnu/usr.bin/groff/tmac/tmac.psnew                              |      26 -
 gnu/usr.bin/groff/tmac/tmac.psold                              |      60 -
 gnu/usr.bin/groff/tmac/tmac.pspic                              |      61 -
 gnu/usr.bin/groff/tmac/tmac.s                                  |    1870 -
 gnu/usr.bin/groff/tmac/tmac.safer                              |      10 -
 gnu/usr.bin/groff/tmac/tmac.trace                              |      10 -
 gnu/usr.bin/groff/tmac/tmac.tty                                |     118 -
 gnu/usr.bin/groff/tmac/tmac.tty-char                           |     198 -
 gnu/usr.bin/groff/tmac/troffrc                                 |      25 -
 gnu/usr.bin/groff/troff/Makefile                               |      31 -
 gnu/usr.bin/groff/troff/TODO                                   |     139 -
 gnu/usr.bin/groff/troff/charinfo.h                             |     165 -
 gnu/usr.bin/groff/troff/column.cc                              |     732 -
 gnu/usr.bin/groff/troff/dictionary.cc                          |     212 -
 gnu/usr.bin/groff/troff/dictionary.h                           |      92 -
 gnu/usr.bin/groff/troff/div.cc                                 |    1128 -
 gnu/usr.bin/groff/troff/div.h                                  |     150 -
 gnu/usr.bin/groff/troff/env.cc                                 |    3114 -
 gnu/usr.bin/groff/troff/env.h                                  |     333 -
 gnu/usr.bin/groff/troff/hvunits.h                              |     340 -
 gnu/usr.bin/groff/troff/hyphen.us                              |    4449 -
 gnu/usr.bin/groff/troff/input.cc                               |    6077 -
 gnu/usr.bin/groff/troff/node.cc                                |    4869 -
 gnu/usr.bin/groff/troff/node.h                                 |     497 -
 gnu/usr.bin/groff/troff/number.cc                              |     669 -
 gnu/usr.bin/groff/troff/reg.cc                                 |     458 -
 gnu/usr.bin/groff/troff/reg.h                                  |      73 -
 gnu/usr.bin/groff/troff/request.h                              |      81 -
 gnu/usr.bin/groff/troff/symbol.cc                              |     150 -
 gnu/usr.bin/groff/troff/symbol.h                               |      73 -
 gnu/usr.bin/groff/troff/token.h                                |     195 -
 gnu/usr.bin/groff/troff/troff.1                                |    2051 -
 gnu/usr.bin/groff/troff/troff.h                                |      83 -
 gnu/usr.bin/groff/xditview/ChangeLog                           |     287 -
 gnu/usr.bin/groff/xditview/DESC                                |       9 -
 gnu/usr.bin/groff/xditview/Dvi.c                               |     544 -
 gnu/usr.bin/groff/xditview/Dvi.h                               |      46 -
 gnu/usr.bin/groff/xditview/DviChar.c                           |     664 -
 gnu/usr.bin/groff/xditview/DviChar.h                           |      37 -
 gnu/usr.bin/groff/xditview/DviP.h                              |     233 -
 gnu/usr.bin/groff/xditview/FontMap                             |      17 -
 gnu/usr.bin/groff/xditview/GXditview.ad                        |      57 -
 gnu/usr.bin/groff/xditview/INSTALL                             |      20 -
 gnu/usr.bin/groff/xditview/Imakefile                           |      52 -
 gnu/usr.bin/groff/xditview/Makefile                            |      36 -
 gnu/usr.bin/groff/xditview/Menu.h                              |      46 -
 gnu/usr.bin/groff/xditview/README                              |      14 -
 gnu/usr.bin/groff/xditview/TODO                                |      15 -
 gnu/usr.bin/groff/xditview/XFontName.c                         |     256 -
 gnu/usr.bin/groff/xditview/XFontName.h                         |      45 -
 gnu/usr.bin/groff/xditview/device.c                            |     587 -
 gnu/usr.bin/groff/xditview/device.h                            |      21 -
 gnu/usr.bin/groff/xditview/draw.c                              |     721 -
 gnu/usr.bin/groff/xditview/font.c                              |     471 -
 gnu/usr.bin/groff/xditview/gxditview.1                         |     246 -
 gnu/usr.bin/groff/xditview/lex.c                               |     103 -
 gnu/usr.bin/groff/xditview/page.c                              |      88 -
 gnu/usr.bin/groff/xditview/parse.c                             |     334 -
 gnu/usr.bin/groff/xditview/xdit.bm                             |      14 -
 gnu/usr.bin/groff/xditview/xdit_mask.bm                        |      14 -
 gnu/usr.bin/groff/xditview/xditview.c                          |     588 -
 gnu/usr.bin/groff/xditview/xtotroff.c                          |     303 -
 gnu/usr.bin/gzip/COPYING                                       |     339 -
 gnu/usr.bin/gzip/ChangeLog                                     |     587 -
 gnu/usr.bin/gzip/Makefile                                      |      49 -
 gnu/usr.bin/gzip/NEWS                                          |     221 -
 gnu/usr.bin/gzip/README                                        |     144 -
 gnu/usr.bin/gzip/THANKS                                        |     276 -
 gnu/usr.bin/gzip/TODO                                          |      58 -
 gnu/usr.bin/gzip/VERSION                                       |       4 -
 gnu/usr.bin/gzip/algorithm.doc                                 |     164 -
 gnu/usr.bin/gzip/bits.c                                        |     205 -
 gnu/usr.bin/gzip/crypt.c                                       |       6 -
 gnu/usr.bin/gzip/crypt.h                                       |      14 -
 gnu/usr.bin/gzip/deflate.c                                     |     763 -
 gnu/usr.bin/gzip/getopt.c                                      |     755 -
 gnu/usr.bin/gzip/getopt.h                                      |     127 -
 gnu/usr.bin/gzip/gzexe                                         |     150 -
 gnu/usr.bin/gzip/gzexe.1                                       |      44 -
 gnu/usr.bin/gzip/gzip.1                                        |     479 -
 gnu/usr.bin/gzip/gzip.c                                        |    1751 -
 gnu/usr.bin/gzip/gzip.h                                        |     320 -
 gnu/usr.bin/gzip/inflate.c                                     |     954 -
 gnu/usr.bin/gzip/lzw.c                                         |      26 -
 gnu/usr.bin/gzip/lzw.h                                         |      42 -
 gnu/usr.bin/gzip/match.S                                       |     379 -
 gnu/usr.bin/gzip/revision.h                                    |      16 -
 gnu/usr.bin/gzip/tailor.h                                      |     328 -
 gnu/usr.bin/gzip/trees.c                                       |    1075 -
 gnu/usr.bin/gzip/unbzip2.c                                     |      81 -
 gnu/usr.bin/gzip/unlzh.c                                       |     401 -
 gnu/usr.bin/gzip/unlzw.c                                       |     377 -
 gnu/usr.bin/gzip/unpack.c                                      |     239 -
 gnu/usr.bin/gzip/unzip.c                                       |     199 -
 gnu/usr.bin/gzip/util.c                                        |     462 -
 gnu/usr.bin/gzip/zdiff                                         |      69 -
 gnu/usr.bin/gzip/zdiff.1                                       |      45 -
 gnu/usr.bin/gzip/zforce                                        |      41 -
 gnu/usr.bin/gzip/zforce.1                                      |      21 -
 gnu/usr.bin/gzip/zgrep                                         |      72 -
 gnu/usr.bin/gzip/zgrep.1                                       |      45 -
 gnu/usr.bin/gzip/zip.c                                         |     117 -
 gnu/usr.bin/gzip/zmore                                         |      51 -
 gnu/usr.bin/gzip/zmore.1                                       |     146 -
 gnu/usr.bin/gzip/znew                                          |     145 -
 gnu/usr.bin/gzip/znew.1                                        |      40 -
 gnu/usr.bin/ld.new/Makefile                                    |     141 -
 gnu/usr.bin/ld.new/config.h                                    |      53 -
 gnu/usr.bin/ld/Makefile                                        |       5 -
 gnu/usr.bin/ld/Makefile.inc                                    |       8 -
 gnu/usr.bin/ld/PORTING                                         |     205 -
 gnu/usr.bin/ld/ld/Makefile                                     |      19 -
 gnu/usr.bin/ld/ld/cplus-dem.c                                  |     977 -
 gnu/usr.bin/ld/ld/ld.1                                         |     310 -
 gnu/usr.bin/ld/ld/ld.c                                         |    4086 -
 gnu/usr.bin/ld/ld/ld_i.h                                       |     444 -
 gnu/usr.bin/ld/ld/lib.c                                        |     860 -
 gnu/usr.bin/ld/ld/rrs.c                                        |    1291 -
 gnu/usr.bin/ld/ld/symbol.c                                     |     157 -
 gnu/usr.bin/ld/ld/symseg.h                                     |     360 -
 gnu/usr.bin/ld/ld/warnings.c                                   |     774 -
 gnu/usr.bin/ld/ld/xbits.c                                      |     160 -
 gnu/usr.bin/rcs/COPYING                                        |     339 -
 gnu/usr.bin/rcs/Makefile                                       |       8 -
 gnu/usr.bin/rcs/Makefile.inc                                   |      11 -
 gnu/usr.bin/rcs/ci/Makefile                                    |       5 -
 gnu/usr.bin/rcs/ci/ci.1                                        |     901 -
 gnu/usr.bin/rcs/ci/ci.c                                        |    1324 -
 gnu/usr.bin/rcs/co/Makefile                                    |       5 -
 gnu/usr.bin/rcs/co/co.1                                        |     738 -
 gnu/usr.bin/rcs/co/co.c                                        |     832 -
 gnu/usr.bin/rcs/doc/rcs.ms                                     |    1520 -
 gnu/usr.bin/rcs/doc/rcs_func.ms                                |      97 -
 gnu/usr.bin/rcs/ident/Makefile                                 |       5 -
 gnu/usr.bin/rcs/ident/ident.1                                  |     184 -
 gnu/usr.bin/rcs/ident/ident.c                                  |     275 -
 gnu/usr.bin/rcs/lib/Makefile                                   |      27 -
 gnu/usr.bin/rcs/lib/conf.h                                     |     404 -
 gnu/usr.bin/rcs/lib/maketime.c                                 |     346 -
 gnu/usr.bin/rcs/lib/maketime.h                                 |      41 -
 gnu/usr.bin/rcs/lib/merger.c                                   |     150 -
 gnu/usr.bin/rcs/lib/partime.c                                  |     703 -
 gnu/usr.bin/rcs/lib/partime.h                                  |      73 -
 gnu/usr.bin/rcs/lib/rcsbase.h                                  |     773 -
 gnu/usr.bin/rcs/lib/rcsedit.c                                  |    1978 -
 gnu/usr.bin/rcs/lib/rcsfcmp.c                                  |     360 -
 gnu/usr.bin/rcs/lib/rcsfnms.c                                  |    1110 -
 gnu/usr.bin/rcs/lib/rcsgen.c                                   |     687 -
 gnu/usr.bin/rcs/lib/rcskeep.c                                  |     463 -
 gnu/usr.bin/rcs/lib/rcskeys.c                                  |     117 -
 gnu/usr.bin/rcs/lib/rcslex.c                                   |    1577 -
 gnu/usr.bin/rcs/lib/rcsmap.c                                   |      71 -
 gnu/usr.bin/rcs/lib/rcsrev.c                                   |     917 -
 gnu/usr.bin/rcs/lib/rcssyn.c                                   |     687 -
 gnu/usr.bin/rcs/lib/rcstime.c                                  |     193 -
 gnu/usr.bin/rcs/lib/rcsutil.c                                  |    1406 -
 gnu/usr.bin/rcs/lib/version.c                                  |       4 -
 gnu/usr.bin/rcs/merge/Makefile                                 |       5 -
 gnu/usr.bin/rcs/merge/merge.1                                  |     137 -
 gnu/usr.bin/rcs/merge/merge.c                                  |     115 -
 gnu/usr.bin/rcs/rcs/Makefile                                   |       6 -
 gnu/usr.bin/rcs/rcs/rcs.1                                      |     456 -
 gnu/usr.bin/rcs/rcs/rcs.c                                      |    1635 -
 gnu/usr.bin/rcs/rcs/rcsfile.5                                  |     427 -
 gnu/usr.bin/rcs/rcs/rcsintro.1                                 |     304 -
 gnu/usr.bin/rcs/rcsclean/Makefile                              |       5 -
 gnu/usr.bin/rcs/rcsclean/rcsclean.1                            |     205 -
 gnu/usr.bin/rcs/rcsclean/rcsclean.c                            |     335 -
 gnu/usr.bin/rcs/rcsdiff/Makefile                               |       5 -
 gnu/usr.bin/rcs/rcsdiff/rcsdiff.1                              |     160 -
 gnu/usr.bin/rcs/rcsdiff/rcsdiff.c                              |     492 -
 gnu/usr.bin/rcs/rcsfreeze/Makefile                             |       6 -
 gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1                          |      70 -
 gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh                         |     101 -
 gnu/usr.bin/rcs/rcsmerge/Makefile                              |       5 -
 gnu/usr.bin/rcs/rcsmerge/rcsmerge.1                            |     191 -
 gnu/usr.bin/rcs/rcsmerge/rcsmerge.c                            |     292 -
 gnu/usr.bin/rcs/rcstest                                        |     456 -
 gnu/usr.bin/rcs/rlog/Makefile                                  |       7 -
 gnu/usr.bin/rcs/rlog/rlog.1                                    |     316 -
 gnu/usr.bin/rcs/rlog/rlog.c                                    |    1281 -
 gnu/usr.bin/sdiff/Makefile                                     |      11 -
 gnu/usr.bin/send-pr/COPYING                                    |     339 -
 gnu/usr.bin/send-pr/ChangeLog                                  |     761 -
 gnu/usr.bin/send-pr/INSTALL                                    |      83 -
 gnu/usr.bin/send-pr/MANIFEST                                   |      20 -
 gnu/usr.bin/send-pr/Makefile                                   |     108 -
 gnu/usr.bin/send-pr/Makefile.in                                |     297 -
 gnu/usr.bin/send-pr/README                                     |      43 -
 gnu/usr.bin/send-pr/aclocal.m4                                 |      72 -
 gnu/usr.bin/send-pr/categ.texi                                 |     123 -
 gnu/usr.bin/send-pr/categories                                 |      33 -
 gnu/usr.bin/send-pr/configure                                  |     728 -
 gnu/usr.bin/send-pr/configure.in                               |      75 -
 gnu/usr.bin/send-pr/fields.texi                                |     519 -
 gnu/usr.bin/send-pr/install-sid.sh                             |      82 -
 gnu/usr.bin/send-pr/s-usage.texi                               |     519 -
 gnu/usr.bin/send-pr/send-pr-el.in                              |     798 -
 gnu/usr.bin/send-pr/send-pr.man                                |     332 -
 gnu/usr.bin/send-pr/send-pr.sh                                 |     549 -
 gnu/usr.bin/send-pr/send-pr.texi                               |     657 -
 gnu/usr.bin/send-pr/states.texi                                |      53 -
 gnu/usr.bin/send-pr/version.texi                               |       2 -
 gnu/usr.bin/sort/COPYING                                       |     249 -
 gnu/usr.bin/sort/Makefile                                      |       5 -
 gnu/usr.bin/sort/sort.1                                        |     186 -
 gnu/usr.bin/sort/sort.c                                        |    1862 -
 gnu/usr.bin/tar/COPYING                                        |     339 -
 gnu/usr.bin/tar/ChangeLog                                      |    1732 -
 gnu/usr.bin/tar/Makefile                                       |      22 -
 gnu/usr.bin/tar/Makefile.gnu                                   |     191 -
 gnu/usr.bin/tar/README                                         |      40 -
 gnu/usr.bin/tar/VERSION                                        |       1 -
 gnu/usr.bin/tar/buffer.c                                       |    1607 -
 gnu/usr.bin/tar/create.c                                       |    1462 -
 gnu/usr.bin/tar/diffarch.c                                     |     766 -
 gnu/usr.bin/tar/extract.c                                      |     964 -
 gnu/usr.bin/tar/fnmatch.c                                      |     177 -
 gnu/usr.bin/tar/fnmatch.h                                      |      65 -
 gnu/usr.bin/tar/getdate.y                                      |     969 -
 gnu/usr.bin/tar/getoldopt.c                                    |     100 -
 gnu/usr.bin/tar/getopt.c                                       |     716 -
 gnu/usr.bin/tar/getopt.h                                       |     128 -
 gnu/usr.bin/tar/getopt1.c                                      |     165 -
 gnu/usr.bin/tar/gnu.c                                          |     681 -
 gnu/usr.bin/tar/list.c                                         |     891 -
 gnu/usr.bin/tar/mangle.c                                       |     274 -
 gnu/usr.bin/tar/msd_dir.h                                      |      45 -
 gnu/usr.bin/tar/names.c                                        |     153 -
 gnu/usr.bin/tar/open3.h                                        |      70 -
 gnu/usr.bin/tar/pathmax.h                                      |      56 -
 gnu/usr.bin/tar/port.c                                         |    1260 -
 gnu/usr.bin/tar/port.h                                         |     218 -
 gnu/usr.bin/tar/regex.c                                        |    4936 -
 gnu/usr.bin/tar/regex.h                                        |     493 -
 gnu/usr.bin/tar/rmt.h                                          |     101 -
 gnu/usr.bin/tar/rtapelib.c                                     |     566 -
 gnu/usr.bin/tar/tar.1                                          |     434 -
 gnu/usr.bin/tar/tar.c                                          |    1549 -
 gnu/usr.bin/tar/tar.h                                          |     301 -
 gnu/usr.bin/tar/update.c                                       |     589 -
 gnu/usr.bin/tar/version.c                                      |       5 -
 gnu/usr.bin/texinfo/Makefile                                   |      28 -
 gnu/usr.bin/texinfo/Makefile.inc                               |      21 -
 gnu/usr.bin/texinfo/common/Makefile                            |      24 -
 gnu/usr.bin/texinfo/common/config.h                            |     258 -
 gnu/usr.bin/texinfo/common/libintl.h                           |       3 -
 gnu/usr.bin/texinfo/info/Makefile                              |      17 -
 gnu/usr.bin/texinfo/install-info/Makefile                      |      12 -
 gnu/usr.bin/texinfo/makeinfo/Makefile                          |      10 -
 gnu/usr.bin/texinfo/texi2dvi/Makefile                          |       8 -
 gnu/usr.bin/texinfo/texindex/Makefile                          |       9 -
 include/Makefile                                               |      36 -
 include/a.out.h                                                |      47 -
 include/ar.h                                                   |      69 -
 include/arpa/ftp.h                                             |     111 -
 include/arpa/inet.h                                            |      95 -
 include/arpa/nameser.h                                         |     392 -
 include/arpa/telnet.h                                          |     346 -
 include/arpa/tftp.h                                            |      82 -
 include/assert.h                                               |      89 -
 include/bitstring.h                                            |     138 -
 include/bm.h                                                   |      61 -
 include/cpio.h                                                 |      65 -
 include/ctype.h                                                |     133 -
 include/db.h                                                   |     240 -
 include/dirent.h                                               |     113 -
 include/disktab.h                                              |      53 -
 include/dlfcn.h                                                |      90 -
 include/err.h                                                  |      70 -
 include/errno.h                                                |      65 -
 include/fmtmsg.h                                               |      88 -
 include/fnmatch.h                                              |      54 -
 include/fstab.h                                                |      82 -
 include/fts.h                                                  |     149 -
 include/glob.h                                                 |     110 -
 include/grp.h                                                  |      77 -
 include/hesiod.h                                               |      96 -
 include/ieeefp.h                                               |      21 -
 include/iso646.h                                               |      23 -
 include/kvm.h                                                  |      75 -
 include/langinfo.h                                             |      75 -
 include/libgen.h                                               |      49 -
 include/limits.h                                               |      86 -
 include/link.h                                                 |      52 -
 include/link_aout.h                                            |     295 -
 include/link_elf.h                                             |      36 -
 include/locale.h                                               |      83 -
 include/malloc.h                                               |       3 -
 include/math.h                                                 |     294 -
 include/md4.h                                                  |      53 -
 include/memory.h                                               |      38 -
 include/mpool.h                                                |     106 -
 include/ndbm.h                                                 |      92 -
 include/netdb.h                                                |     287 -
 include/netgroup.h                                             |      75 -
 include/nl_types.h                                             |      97 -
 include/nlist.h                                                |      96 -
 include/nsswitch.h                                             |     190 -
 include/paths.h                                                |      91 -
 include/protocols/dumprestore.h                                |     114 -
 include/protocols/routed.h                                     |     177 -
 include/protocols/rwhod.h                                      |      70 -
 include/protocols/talkd.h                                      |     116 -
 include/protocols/timed.h                                      |     104 -
 include/pwd.h                                                  |     111 -
 include/ranlib.h                                               |      52 -
 include/re_comp.h                                              |      48 -
 include/regex.h                                                |     114 -
 include/regexp.h                                               |      78 -
 include/resolv.h                                               |     340 -
 include/rmt.h                                                  |      56 -
 include/rpc/auth.h                                             |     191 -
 include/rpc/auth_unix.h                                        |      83 -
 include/rpc/clnt.h                                             |     372 -
 include/rpc/pmap_clnt.h                                        |      86 -
 include/rpc/pmap_prot.h                                        |     105 -
 include/rpc/pmap_rmt.h                                         |      64 -
 include/rpc/rpc.h                                              |     103 -
 include/rpc/rpc_msg.h                                          |     213 -
 include/rpc/svc.h                                              |     325 -
 include/rpc/svc_auth.h                                         |      51 -
 include/rpc/types.h                                            |      63 -
 include/rpc/xdr.h                                              |     307 -
 include/rpcsvc/yp_prot.h                                       |     341 -
 include/rpcsvc/ypclnt.h                                        |      91 -
 include/search.h                                               |      65 -
 include/setjmp.h                                               |      92 -
 include/sgtty.h                                                |      52 -
 include/signal.h                                               |     192 -
 include/stab.h                                                 |      74 -
 include/stddef.h                                               |      61 -
 include/stdio.h                                                |     446 -
 include/stdlib.h                                               |     246 -
 include/string.h                                               |      98 -
 include/stringlist.h                                           |      55 -
 include/strings.h                                              |      73 -
 include/struct.h                                               |      53 -
 include/sysexits.h                                             |     120 -
 include/tar.h                                                  |      75 -
 include/time.h                                                 |     160 -
 include/ttyent.h                                               |      80 -
 include/tzfile.h                                               |     162 -
 include/ulimit.h                                               |      51 -
 include/unistd.h                                               |     348 -
 include/util.h                                                 |      91 -
 include/utime.h                                                |      59 -
 include/utmp.h                                                 |      67 -
 include/vis.h                                                  |      91 -
 lib/Makefile                                                   |      21 -
 lib/Makefile.inc                                               |       3 -
 lib/bumpversion                                                |     124 -
 lib/checkver                                                   |     224 -
 lib/checkvers                                                  |     217 -
 lib/csu/Makefile                                               |      15 -
 lib/csu/alpha/Makefile                                         |       5 -
 lib/csu/alpha/crt0.c                                           |      87 -
 lib/csu/arm32/Makefile                                         |      10 -
 lib/csu/arm32/c++rt0.c                                         |     163 -
 lib/csu/arm32/crt0.c                                           |     148 -
 lib/csu/c++/Makefile                                           |      17 -
 lib/csu/c++/c++rt0.c                                           |     113 -
 lib/csu/common_aout/Makefile.inc                               |      41 -
 lib/csu/common_aout/common.c                                   |     287 -
 lib/csu/common_aout/common.h                                   |     120 -
 lib/csu/common_elf/Makefile.inc                                |      50 -
 lib/csu/common_elf/common.c                                    |     134 -
 lib/csu/common_elf/common.h                                    |      92 -
 lib/csu/common_elf/crtbegin.c                                  |     123 -
 lib/csu/common_elf/crtend.c                                    |      10 -
 lib/csu/i386/Makefile                                          |       3 -
 lib/csu/i386/crt0.c                                            |     125 -
 lib/csu/i386_elf/Makefile                                      |       3 -
 lib/csu/i386_elf/crt0.c                                        |     103 -
 lib/csu/m68k/Makefile                                          |       3 -
 lib/csu/m68k/crt0.c                                            |     125 -
 lib/csu/m68k_elf/Makefile                                      |       3 -
 lib/csu/m68k_elf/crt0.c                                        |      99 -
 lib/csu/mips/Makefile                                          |       4 -
 lib/csu/mips/crt0.c                                            |     164 -
 lib/csu/ns32k/Makefile                                         |       3 -
 lib/csu/ns32k/crt0.c                                           |     145 -
 lib/csu/powerpc/Makefile                                       |       3 -
 lib/csu/powerpc/crt0.c                                         |      90 -
 lib/csu/sh3/Makefile                                           |       3 -
 lib/csu/sh3/crt0.c                                             |     118 -
 lib/csu/sh3_elf/Makefile                                       |       3 -
 lib/csu/sh3_elf/crt0.c                                         |      88 -
 lib/csu/sparc/Makefile                                         |       3 -
 lib/csu/sparc/crt0.c                                           |     228 -
 lib/csu/sparc64/Makefile                                       |       5 -
 lib/csu/sparc64/crt0.c                                         |     140 -
 lib/csu/sparc_elf/Makefile                                     |       3 -
 lib/csu/sparc_elf/crt0.c                                       |     105 -
 lib/csu/vax/Makefile                                           |       3 -
 lib/csu/vax/crt0.c                                             |     126 -
 lib/csu/vax_elf/Makefile                                       |       3 -
 lib/csu/vax_elf/crt0.c                                         |     100 -
 lib/libarch/Makefile                                           |      23 -
 lib/libarch/arm32/Makefile.inc                                 |       7 -
 lib/libarch/arm32/arm32_drain_writebuf.2                       |      56 -
 lib/libarch/arm32/arm32_drain_writebuf.c                       |      44 -
 lib/libarch/arm32/arm32_sync_icache.2                          |      71 -
 lib/libarch/arm32/arm32_sync_icache.c                          |      51 -
 lib/libarch/arm32/shlib_version                                |       4 -
 lib/libarch/i386/Makefile.inc                                  |      14 -
 lib/libarch/i386/i386_get_ioperm.2                             |     110 -
 lib/libarch/i386/i386_get_ioperm.c                             |      53 -
 lib/libarch/i386/i386_get_ldt.2                                |     101 -
 lib/libarch/i386/i386_get_ldt.c                                |      51 -
 lib/libarch/i386/i386_iopl.2                                   |      78 -
 lib/libarch/i386/i386_iopl.c                                   |      53 -
 lib/libarch/i386/i386_set_ioperm.c                             |      53 -
 lib/libarch/i386/i386_set_ldt.c                                |      51 -
 lib/libarch/i386/i386_vm86.2                                   |     106 -
 lib/libarch/i386/i386_vm86.c                                   |      52 -
 lib/libarch/i386/shlib_version                                 |       4 -
 lib/libarch/m68k/Makefile.inc                                  |       8 -
 lib/libarch/m68k/m68k_sync_icache.2                            |      72 -
 lib/libarch/m68k/m68k_sync_icache.S                            |      46 -
 lib/libarch/m68k/shlib_version                                 |       4 -
 lib/libbz2/LICENSE                                             |      40 -
 lib/libbz2/Makefile                                            |      10 -
 lib/libbz2/README                                              |     138 -
 lib/libbz2/blocksort.c                                         |     710 -
 lib/libbz2/bzip2.txt                                           |     355 -
 lib/libbz2/bzlib.c                                             |    1487 -
 lib/libbz2/bzlib.h                                             |     300 -
 lib/libbz2/bzlib_private.h                                     |     524 -
 lib/libbz2/compress.c                                          |     576 -
 lib/libbz2/crctable.c                                          |     145 -
 lib/libbz2/decompress.c                                        |     651 -
 lib/libbz2/huffman.c                                           |     229 -
 lib/libbz2/libbz2.def                                          |      25 -
 lib/libbz2/manual.ps                                           |    6748 -
 lib/libbz2/manual.texi                                         |    2101 -
 lib/libbz2/manual_1.html                                       |     122 -
 lib/libbz2/manual_2.html                                       |     367 -
 lib/libbz2/manual_3.html                                       |    1625 -
 lib/libbz2/manual_4.html                                       |     500 -
 lib/libbz2/manual_toc.html                                     |      76 -
 lib/libbz2/randtable.c                                         |     125 -
 lib/libbz2/shlib_version                                       |       5 -
 lib/libc/Makefile                                              |     117 -
 lib/libc/arch/alpha/Makefile.inc                               |      45 -
 lib/libc/arch/alpha/SYS.h                                      |      74 -
 lib/libc/arch/alpha/gen/Makefile.inc                           |      12 -
 lib/libc/arch/alpha/gen/__setjmp14.S                           |     125 -
 lib/libc/arch/alpha/gen/__sigsetjmp14.S                        |      62 -
 lib/libc/arch/alpha/gen/_setjmp.S                              |     123 -
 lib/libc/arch/alpha/gen/byte_swap_2.S                          |      44 -
 lib/libc/arch/alpha/gen/byte_swap_4.S                          |      50 -
 lib/libc/arch/alpha/gen/divrem.m4                              |     197 -
 lib/libc/arch/alpha/gen/fabs.S                                 |      35 -
 lib/libc/arch/alpha/gen/flt_rounds.c                           |      56 -
 lib/libc/arch/alpha/gen/fpgetmask.c                            |      41 -
 lib/libc/arch/alpha/gen/fpgetround.c                           |      49 -
 lib/libc/arch/alpha/gen/fpgetsticky.c                          |      49 -
 lib/libc/arch/alpha/gen/fpsetmask.c                            |      45 -
 lib/libc/arch/alpha/gen/fpsetround.c                           |      58 -
 lib/libc/arch/alpha/gen/fpsetsticky.c                          |      45 -
 lib/libc/arch/alpha/gen/frexp.c                                |      86 -
 lib/libc/arch/alpha/gen/infinity.c                             |      33 -
 lib/libc/arch/alpha/gen/isinf.c                                |      68 -
 lib/libc/arch/alpha/gen/isnan.c                                |      68 -
 lib/libc/arch/alpha/gen/ldexp.c                                |     154 -
 lib/libc/arch/alpha/gen/modf.c                                 |     104 -
 lib/libc/arch/alpha/gen/setjmp.S                               |     124 -
 lib/libc/arch/alpha/gen/sigsetjmp.S                            |      62 -
 lib/libc/arch/alpha/net/Makefile.inc                           |       8 -
 lib/libc/arch/alpha/stdlib/Makefile.inc                        |       3 -
 lib/libc/arch/alpha/string/Makefile.inc                        |       7 -
 lib/libc/arch/alpha/string/bcopy.S                             |     288 -
 lib/libc/arch/alpha/string/bzero.S                             |     110 -
 lib/libc/arch/alpha/string/ffs.S                               |      91 -
 lib/libc/arch/alpha/string/memcpy.S                            |       4 -
 lib/libc/arch/alpha/string/memmove.S                           |       4 -
 lib/libc/arch/alpha/sys/Ovfork.S                               |      38 -
 lib/libc/arch/alpha/sys/__semctl.S                             |      42 -
 lib/libc/arch/alpha/sys/__sigreturn14.S                        |      38 -
 lib/libc/arch/alpha/sys/__vfork14.S                            |      35 -
 lib/libc/arch/alpha/sys/brk.S                                  |      50 -
 lib/libc/arch/alpha/sys/cerror.S                               |      65 -
 lib/libc/arch/alpha/sys/exect.S                                |      35 -
 lib/libc/arch/alpha/sys/fork.S                                 |      35 -
 lib/libc/arch/alpha/sys/msgctl.S                               |      45 -
 lib/libc/arch/alpha/sys/pipe.S                                 |      37 -
 lib/libc/arch/alpha/sys/ptrace.S                               |      37 -
 lib/libc/arch/alpha/sys/sbrk.S                                 |      48 -
 lib/libc/arch/alpha/sys/setlogin.S                             |      37 -
 lib/libc/arch/alpha/sys/shmctl.S                               |      45 -
 lib/libc/arch/alpha/sys/sigaction.S                            |      45 -
 lib/libc/arch/alpha/sys/sigpending.S                           |      40 -
 lib/libc/arch/alpha/sys/sigprocmask.S                          |      47 -
 lib/libc/arch/alpha/sys/sigreturn.S                            |      41 -
 lib/libc/arch/alpha/sys/sigsuspend.S                           |      40 -
 lib/libc/arch/alpha/sys/syscall.S                              |      32 -
 lib/libc/arch/arm32/Makefile.inc                               |       7 -
 lib/libc/arch/arm32/SYS.h                                      |      78 -
 lib/libc/arch/arm32/fplib/Makefile.inc                         |      23 -
 lib/libc/arch/arm32/fplib/arm-gcc.h                            |      79 -
 lib/libc/arch/arm32/fplib/environment.h                        |      63 -
 lib/libc/arch/arm32/fplib/fplib_glue.S                         |     159 -
 lib/libc/arch/arm32/fplib/fplib_libc.c                         |      86 -
 lib/libc/arch/arm32/fplib/softfloat-macros.h                   |     754 -
 lib/libc/arch/arm32/fplib/softfloat-specialize.h               |     173 -
 lib/libc/arch/arm32/fplib/softfloat.c                          |    2505 -
 lib/libc/arch/arm32/fplib/softfloat.h                          |     166 -
 lib/libc/arch/arm32/gen/Makefile.inc                           |      13 -
 lib/libc/arch/arm32/gen/__setjmp14.S                           |     122 -
 lib/libc/arch/arm32/gen/__sigsetjmp14.S                        |      61 -
 lib/libc/arch/arm32/gen/_setjmp.S                              |     106 -
 lib/libc/arch/arm32/gen/alloca.S                               |      44 -
 lib/libc/arch/arm32/gen/byte_swap_2.S                          |      49 -
 lib/libc/arch/arm32/gen/byte_swap_4.S                          |      50 -
 lib/libc/arch/arm32/gen/divsi3.S                               |     377 -
 lib/libc/arch/arm32/gen/fabs.c                                 |      48 -
 lib/libc/arch/arm32/gen/flt_rounds.c                           |      76 -
 lib/libc/arch/arm32/gen/fpgetmask.S                            |      50 -
 lib/libc/arch/arm32/gen/fpgetround.c                           |      64 -
 lib/libc/arch/arm32/gen/fpgetsticky.S                          |      49 -
 lib/libc/arch/arm32/gen/fpsetmask.S                            |      53 -
 lib/libc/arch/arm32/gen/fpsetround.c                           |      71 -
 lib/libc/arch/arm32/gen/fpsetsticky.S                          |      53 -
 lib/libc/arch/arm32/gen/frexp.c                                |      86 -
 lib/libc/arch/arm32/gen/infinity.c                             |      38 -
 lib/libc/arch/arm32/gen/isinf.c                                |      68 -
 lib/libc/arch/arm32/gen/isnan.c                                |      68 -
 lib/libc/arch/arm32/gen/ldexp.c                                |     154 -
 lib/libc/arch/arm32/gen/modf.c                                 |     104 -
 lib/libc/arch/arm32/gen/setjmp.S                               |     129 -
 lib/libc/arch/arm32/gen/sigsetjmp.S                            |      61 -
 lib/libc/arch/arm32/net/Makefile.inc                           |       4 -
 lib/libc/arch/arm32/stdlib/Makefile.inc                        |       3 -
 lib/libc/arch/arm32/string/Makefile.inc                        |       8 -
 lib/libc/arch/arm32/string/_memcpy.S                           |     450 -
 lib/libc/arch/arm32/string/bcopy.S                             |      48 -
 lib/libc/arch/arm32/string/bzero.S                             |      44 -
 lib/libc/arch/arm32/string/memcpy.S                            |      44 -
 lib/libc/arch/arm32/string/memmove.S                           |      44 -
 lib/libc/arch/arm32/string/memset.S                            |     126 -
 lib/libc/arch/arm32/sys/Ovfork.S                               |      55 -
 lib/libc/arch/arm32/sys/__semctl.S                             |      42 -
 lib/libc/arch/arm32/sys/__sigreturn14.S                        |      45 -
 lib/libc/arch/arm32/sys/__vfork14.S                            |      52 -
 lib/libc/arch/arm32/sys/brk.S                                  |      98 -
 lib/libc/arch/arm32/sys/cerror.S                               |      65 -
 lib/libc/arch/arm32/sys/exect.S                                |      43 -
 lib/libc/arch/arm32/sys/fork.S                                 |      43 -
 lib/libc/arch/arm32/sys/msgctl.S                               |      45 -
 lib/libc/arch/arm32/sys/pipe.S                                 |      47 -
 lib/libc/arch/arm32/sys/ptrace.S                               |      67 -
 lib/libc/arch/arm32/sys/sbrk.S                                 |      86 -
 lib/libc/arch/arm32/sys/setlogin.S                             |      64 -
 lib/libc/arch/arm32/sys/shmctl.S                               |      45 -
 lib/libc/arch/arm32/sys/sigaction.S                            |      45 -
 lib/libc/arch/arm32/sys/sigpending.S                           |      49 -
 lib/libc/arch/arm32/sys/sigprocmask.S                          |      53 -
 lib/libc/arch/arm32/sys/sigreturn.S                            |      47 -
 lib/libc/arch/arm32/sys/sigsuspend.S                           |      48 -
 lib/libc/arch/arm32/sys/syscall.S                              |      43 -
 lib/libc/arch/i386/Makefile.inc                                |       5 -
 lib/libc/arch/i386/SYS.h                                       |      88 -
 lib/libc/arch/i386/gen/Makefile.inc                            |      27 -
 lib/libc/arch/i386/gen/__setjmp14.S                            |     113 -
 lib/libc/arch/i386/gen/__sigsetjmp14.S                         |     113 -
 lib/libc/arch/i386/gen/_setjmp.S                               |      81 -
 lib/libc/arch/i386/gen/alloca.S                                |      60 -
 lib/libc/arch/i386/gen/byte_swap_2.S                           |      51 -
 lib/libc/arch/i386/gen/byte_swap_4.S                           |      53 -
 lib/libc/arch/i386/gen/divsi3.S                                |      50 -
 lib/libc/arch/i386/gen/fabs.S                                  |      49 -
 lib/libc/arch/i386/gen/fixdfsi.S                               |      50 -
 lib/libc/arch/i386/gen/fixunsdfsi.S                            |      79 -
 lib/libc/arch/i386/gen/flt_rounds.S                            |      33 -
 lib/libc/arch/i386/gen/fpgetmask.S                             |      17 -
 lib/libc/arch/i386/gen/fpgetround.S                            |      17 -
 lib/libc/arch/i386/gen/fpgetsticky.S                           |      16 -
 lib/libc/arch/i386/gen/fpsetmask.S                             |      28 -
 lib/libc/arch/i386/gen/fpsetround.S                            |      29 -
 lib/libc/arch/i386/gen/fpsetsticky.S                           |      27 -
 lib/libc/arch/i386/gen/frexp.c                                 |      86 -
 lib/libc/arch/i386/gen/infinity.c                              |      13 -
 lib/libc/arch/i386/gen/isinf.c                                 |      68 -
 lib/libc/arch/i386/gen/isnan.c                                 |      68 -
 lib/libc/arch/i386/gen/ldexp.c                                 |      68 -
 lib/libc/arch/i386/gen/modf.S                                  |      78 -
 lib/libc/arch/i386/gen/setjmp.S                                |     105 -
 lib/libc/arch/i386/gen/sigsetjmp.S                             |     102 -
 lib/libc/arch/i386/gen/udivsi3.S                               |      50 -
 lib/libc/arch/i386/net/Makefile.inc                            |       8 -
 lib/libc/arch/i386/stdlib/Makefile.inc                         |       7 -
 lib/libc/arch/i386/stdlib/abs.S                                |      51 -
 lib/libc/arch/i386/stdlib/div.S                                |      19 -
 lib/libc/arch/i386/stdlib/labs.S                               |      51 -
 lib/libc/arch/i386/stdlib/ldiv.S                               |      19 -
 lib/libc/arch/i386/string/Makefile.inc                         |      21 -
 lib/libc/arch/i386/string/bcmp.S                               |      35 -
 lib/libc/arch/i386/string/bcopy.S                              |     105 -
 lib/libc/arch/i386/string/bzero.S                              |      46 -
 lib/libc/arch/i386/string/ffs.S                                |      20 -
 lib/libc/arch/i386/string/index.S                              |      31 -
 lib/libc/arch/i386/string/memchr.S                             |      29 -
 lib/libc/arch/i386/string/memcmp.S                             |      48 -
 lib/libc/arch/i386/string/memcpy.S                             |       4 -
 lib/libc/arch/i386/string/memmove.S                            |       4 -
 lib/libc/arch/i386/string/memset.S                             |      58 -
 lib/libc/arch/i386/string/rindex.S                             |      32 -
 lib/libc/arch/i386/string/strcat.S                             |      69 -
 lib/libc/arch/i386/string/strchr.S                             |       4 -
 lib/libc/arch/i386/string/strcmp.S                             |      84 -
 lib/libc/arch/i386/string/strcpy.S                             |      59 -
 lib/libc/arch/i386/string/strlen.S                             |      23 -
 lib/libc/arch/i386/string/strncmp.S                            |     116 -
 lib/libc/arch/i386/string/strrchr.S                            |       4 -
 lib/libc/arch/i386/string/swab.S                               |      70 -
 lib/libc/arch/i386/sys/Ovfork.S                                |      97 -
 lib/libc/arch/i386/sys/__semctl.S                              |      42 -
 lib/libc/arch/i386/sys/__sigreturn14.S                         |      64 -
 lib/libc/arch/i386/sys/__vfork14.S                             |      94 -
 lib/libc/arch/i386/sys/brk.S                                   |      97 -
 lib/libc/arch/i386/sys/cerror.S                                |      77 -
 lib/libc/arch/i386/sys/exect.S                                 |      62 -
 lib/libc/arch/i386/sys/fork.S                                  |      51 -
 lib/libc/arch/i386/sys/msgctl.S                                |      45 -
 lib/libc/arch/i386/sys/pipe.S                                  |      53 -
 lib/libc/arch/i386/sys/ptrace.S                                |      86 -
 lib/libc/arch/i386/sys/sbrk.S                                  |      89 -
 lib/libc/arch/i386/sys/setlogin.S                              |      59 -
 lib/libc/arch/i386/sys/shmctl.S                                |      45 -
 lib/libc/arch/i386/sys/sigaction.S                             |      45 -
 lib/libc/arch/i386/sys/sigpending.S                            |      55 -
 lib/libc/arch/i386/sys/sigprocmask.S                           |      76 -
 lib/libc/arch/i386/sys/sigreturn.S                             |      66 -
 lib/libc/arch/i386/sys/sigsuspend.S                            |      66 -
 lib/libc/arch/i386/sys/syscall.S                               |      62 -
 lib/libc/arch/m68k/DEFS.h                                      |       3 -
 lib/libc/arch/m68k/Makefile.inc                                |       9 -
 lib/libc/arch/m68k/SYS.h                                       |      92 -
 lib/libc/arch/m68k/gen/Makefile.inc                            |      25 -
 lib/libc/arch/m68k/gen/__setjmp14.S                            |     111 -
 lib/libc/arch/m68k/gen/__sigsetjmp14.S                         |      81 -
 lib/libc/arch/m68k/gen/_setjmp.S                               |      92 -
 lib/libc/arch/m68k/gen/adddf3.S                                |      59 -
 lib/libc/arch/m68k/gen/addsf3.S                                |      57 -
 lib/libc/arch/m68k/gen/alloca.S                                |      63 -
 lib/libc/arch/m68k/gen/ashlsi3.S                               |      55 -
 lib/libc/arch/m68k/gen/ashrsi3.S                               |      55 -
 lib/libc/arch/m68k/gen/bswap16.S                               |      34 -
 lib/libc/arch/m68k/gen/bswap32.S                               |      36 -
 lib/libc/arch/m68k/gen/bswap64.S                               |      40 -
 lib/libc/arch/m68k/gen/cmpdf2.S                                |      62 -
 lib/libc/arch/m68k/gen/cmpsf2.S                                |      62 -
 lib/libc/arch/m68k/gen/divdf3.S                                |      59 -
 lib/libc/arch/m68k/gen/divsf3.S                                |      57 -
 lib/libc/arch/m68k/gen/divsi3.S                                |      54 -
 lib/libc/arch/m68k/gen/extendsfdf2.S                           |      58 -
 lib/libc/arch/m68k/gen/fabs.S                                  |      52 -
 lib/libc/arch/m68k/gen/fixdfsi.S                               |      54 -
 lib/libc/arch/m68k/gen/fixunsdfsi.S                            |      61 -
 lib/libc/arch/m68k/gen/floatsidf.S                             |      59 -
 lib/libc/arch/m68k/gen/flt_rounds.S                            |      23 -
 lib/libc/arch/m68k/gen/fpgetmask.S                             |      13 -
 lib/libc/arch/m68k/gen/fpgetround.S                            |      13 -
 lib/libc/arch/m68k/gen/fpgetsticky.S                           |      13 -
 lib/libc/arch/m68k/gen/fpsetmask.S                             |      18 -
 lib/libc/arch/m68k/gen/fpsetround.S                            |      18 -
 lib/libc/arch/m68k/gen/fpsetsticky.S                           |      18 -
 lib/libc/arch/m68k/gen/frexp.c                                 |      86 -
 lib/libc/arch/m68k/gen/infinity.c                              |      13 -
 lib/libc/arch/m68k/gen/isinf.c                                 |      68 -
 lib/libc/arch/m68k/gen/isnan.c                                 |      68 -
 lib/libc/arch/m68k/gen/ldexp_040.c                             |     154 -
 lib/libc/arch/m68k/gen/ldexp_881.c                             |      62 -
 lib/libc/arch/m68k/gen/lshlsi3.S                               |      55 -
 lib/libc/arch/m68k/gen/lshrsi3.S                               |      55 -
 lib/libc/arch/m68k/gen/modf.S                                  |      65 -
 lib/libc/arch/m68k/gen/modsi3.S                                |      54 -
 lib/libc/arch/m68k/gen/muldf3.S                                |      59 -
 lib/libc/arch/m68k/gen/mulsf3.S                                |      57 -
 lib/libc/arch/m68k/gen/mulsi3.S                                |      54 -
 lib/libc/arch/m68k/gen/negdf2.S                                |      59 -
 lib/libc/arch/m68k/gen/negsf2.S                                |      58 -
 lib/libc/arch/m68k/gen/setjmp.S                                |      99 -
 lib/libc/arch/m68k/gen/sigsetjmp.S                             |      81 -
 lib/libc/arch/m68k/gen/subdf3.S                                |      59 -
 lib/libc/arch/m68k/gen/subsf3.S                                |      57 -
 lib/libc/arch/m68k/gen/truncdfsf2.S                            |      56 -
 lib/libc/arch/m68k/gen/udivsi3.S                               |      54 -
 lib/libc/arch/m68k/gen/umodsi3.S                               |      54 -
 lib/libc/arch/m68k/gen/umulsi3.S                               |      54 -
 lib/libc/arch/m68k/net/Makefile.inc                            |       3 -
 lib/libc/arch/m68k/net/htonl.S                                 |      54 -
 lib/libc/arch/m68k/net/htons.S                                 |      55 -
 lib/libc/arch/m68k/net/ntohl.S                                 |      54 -
 lib/libc/arch/m68k/net/ntohs.S                                 |      55 -
 lib/libc/arch/m68k/quad/ashldi3.S                              |      67 -
 lib/libc/arch/m68k/quad/ashrdi3.S                              |      68 -
 lib/libc/arch/m68k/quad/lshrdi3.S                              |      67 -
 lib/libc/arch/m68k/stdlib/Makefile.inc                         |       3 -
 lib/libc/arch/m68k/stdlib/abs.S                                |      57 -
 lib/libc/arch/m68k/string/Makefile.inc                         |       7 -
 lib/libc/arch/m68k/string/bcmp.S                               |     166 -
 lib/libc/arch/m68k/string/bcopy.S                              |     243 -
 lib/libc/arch/m68k/string/bzero.S                              |     152 -
 lib/libc/arch/m68k/string/ffs.S                                |      60 -
 lib/libc/arch/m68k/string/index.S                              |      69 -
 lib/libc/arch/m68k/string/memcmp.S                             |     104 -
 lib/libc/arch/m68k/string/memcpy.S                             |       4 -
 lib/libc/arch/m68k/string/memmove.S                            |       4 -
 lib/libc/arch/m68k/string/memset.S                             |     165 -
 lib/libc/arch/m68k/string/rindex.S                             |      66 -
 lib/libc/arch/m68k/string/strcat.S                             |      64 -
 lib/libc/arch/m68k/string/strchr.S                             |       4 -
 lib/libc/arch/m68k/string/strcmp.S                             |      79 -
 lib/libc/arch/m68k/string/strcpy.S                             |      60 -
 lib/libc/arch/m68k/string/strlen.S                             |      58 -
 lib/libc/arch/m68k/string/strncmp.S                            |      85 -
 lib/libc/arch/m68k/string/strncpy.S                            |      70 -
 lib/libc/arch/m68k/string/strrchr.S                            |       4 -
 lib/libc/arch/m68k/string/swab.S                               |      20 -
 lib/libc/arch/m68k/sys/Ovfork.S                                |     114 -
 lib/libc/arch/m68k/sys/__semctl.S                              |      42 -
 lib/libc/arch/m68k/sys/__sigreturn14.S                         |      63 -
 lib/libc/arch/m68k/sys/__vfork14.S                             |     111 -
 lib/libc/arch/m68k/sys/brk.S                                   |      93 -
 lib/libc/arch/m68k/sys/cerror.S                                |      87 -
 lib/libc/arch/m68k/sys/exect.S                                 |      54 -
 lib/libc/arch/m68k/sys/fork.S                                  |      53 -
 lib/libc/arch/m68k/sys/msgctl.S                                |      45 -
 lib/libc/arch/m68k/sys/pipe.S                                  |      55 -
 lib/libc/arch/m68k/sys/ptrace.S                                |      90 -
 lib/libc/arch/m68k/sys/sbrk.S                                  |      87 -
 lib/libc/arch/m68k/sys/setlogin.S                              |      62 -
 lib/libc/arch/m68k/sys/shmctl.S                                |      45 -
 lib/libc/arch/m68k/sys/sigaction.S                             |      45 -
 lib/libc/arch/m68k/sys/sigpending.S                            |      57 -
 lib/libc/arch/m68k/sys/sigprocmask.S                           |      74 -
 lib/libc/arch/m68k/sys/sigreturn.S                             |      69 -
 lib/libc/arch/m68k/sys/sigsuspend.S                            |      62 -
 lib/libc/arch/m68k/sys/syscall.S                               |      56 -
 lib/libc/arch/mips/:errfix                                     |       5 -
 lib/libc/arch/mips/Makefile.inc                                |      10 -
 lib/libc/arch/mips/SYS.h                                       |     134 -
 lib/libc/arch/mips/fplib/Makefile.inc                          |      16 -
 lib/libc/arch/mips/fplib/environment.h                         |      52 -
 lib/libc/arch/mips/fplib/fplib_glue.c                          |     133 -
 lib/libc/arch/mips/fplib/fplib_libc.c                          |      86 -
 lib/libc/arch/mips/fplib/hpcmips-gcc.h                         |      96 -
 lib/libc/arch/mips/fplib/softfloat-macros.h                    |     742 -
 lib/libc/arch/mips/fplib/softfloat-specialize.h                |     496 -
 lib/libc/arch/mips/fplib/softfloat.c                           |    5411 -
 lib/libc/arch/mips/fplib/softfloat.h                           |     290 -
 lib/libc/arch/mips/gen/Makefile.inc                            |      22 -
 lib/libc/arch/mips/gen/__setjmp14.S                            |     158 -
 lib/libc/arch/mips/gen/__sigsetjmp14.S                         |      92 -
 lib/libc/arch/mips/gen/_setjmp.S                               |     161 -
 lib/libc/arch/mips/gen/byte_swap_2.S                           |      68 -
 lib/libc/arch/mips/gen/byte_swap_4.S                           |      71 -
 lib/libc/arch/mips/gen/cacheflush.c                            |      54 -
 lib/libc/arch/mips/gen/fabs.S                                  |      61 -
 lib/libc/arch/mips/gen/flt_rounds.c                            |      24 -
 lib/libc/arch/mips/gen/fpgetmask.c                             |      17 -
 lib/libc/arch/mips/gen/fpgetround.c                            |      17 -
 lib/libc/arch/mips/gen/fpgetsticky.c                           |      17 -
 lib/libc/arch/mips/gen/fpsetmask.c                             |      26 -
 lib/libc/arch/mips/gen/fpsetround.c                            |      26 -
 lib/libc/arch/mips/gen/fpsetsticky.c                           |      26 -
 lib/libc/arch/mips/gen/frexp.c                                 |      86 -
 lib/libc/arch/mips/gen/ieee.h                                  |     115 -
 lib/libc/arch/mips/gen/infinity.c                              |      15 -
 lib/libc/arch/mips/gen/isinf.c                                 |      68 -
 lib/libc/arch/mips/gen/isnan.c                                 |      68 -
 lib/libc/arch/mips/gen/ldexp.S                                 |     222 -
 lib/libc/arch/mips/gen/modf.S                                  |      85 -
 lib/libc/arch/mips/gen/setjmp.S                                |     150 -
 lib/libc/arch/mips/gen/sf_fabs.c                               |      48 -
 lib/libc/arch/mips/gen/sf_flt_rounds.c                         |      76 -
 lib/libc/arch/mips/gen/sf_fpgetmask.c                          |      14 -
 lib/libc/arch/mips/gen/sf_fpgetround.c                         |      64 -
 lib/libc/arch/mips/gen/sf_fpgetsticky.c                        |      14 -
 lib/libc/arch/mips/gen/sf_fpsetmask.c                          |      20 -
 lib/libc/arch/mips/gen/sf_fpsetround.c                         |      71 -
 lib/libc/arch/mips/gen/sf_fpsetsticky.c                        |      19 -
 lib/libc/arch/mips/gen/sf_isinf.c                              |      61 -
 lib/libc/arch/mips/gen/sf_ldexp.c                              |     155 -
 lib/libc/arch/mips/gen/sf_modf.c                               |     104 -
 lib/libc/arch/mips/gen/sigsetjmp.S                             |      92 -
 lib/libc/arch/mips/net/Makefile.inc                            |       8 -
 lib/libc/arch/mips/stdlib/Makefile.inc                         |       3 -
 lib/libc/arch/mips/string/Makefile.inc                         |       6 -
 lib/libc/arch/mips/string/bcmp.S                               |     129 -
 lib/libc/arch/mips/string/bcopy.S                              |     196 -
 lib/libc/arch/mips/string/bzero.S                              |      84 -
 lib/libc/arch/mips/string/ffs.S                                |      62 -
 lib/libc/arch/mips/string/index.S                              |      61 -
 lib/libc/arch/mips/string/memset.S                             |      51 -
 lib/libc/arch/mips/string/rindex.S                             |      60 -
 lib/libc/arch/mips/string/strcmp.S                             |      71 -
 lib/libc/arch/mips/string/strlen.S                             |      58 -
 lib/libc/arch/mips/sys/Ovfork.S                                |      76 -
 lib/libc/arch/mips/sys/__semctl.S                              |      42 -
 lib/libc/arch/mips/sys/__sigreturn14.S                         |      54 -
 lib/libc/arch/mips/sys/__vfork14.S                             |      73 -
 lib/libc/arch/mips/sys/brk.S                                   |      78 -
 lib/libc/arch/mips/sys/cerror.S                                |      60 -
 lib/libc/arch/mips/sys/exect.S                                 |      62 -
 lib/libc/arch/mips/sys/fork.S                                  |      66 -
 lib/libc/arch/mips/sys/msgctl.S                                |      45 -
 lib/libc/arch/mips/sys/pipe.S                                  |      66 -
 lib/libc/arch/mips/sys/ptrace.S                                |      64 -
 lib/libc/arch/mips/sys/sbrk.S                                  |      75 -
 lib/libc/arch/mips/sys/setlogin.S                              |      64 -
 lib/libc/arch/mips/sys/shmctl.S                                |      45 -
 lib/libc/arch/mips/sys/sigaction.S                             |      45 -
 lib/libc/arch/mips/sys/sigpending.S                            |      68 -
 lib/libc/arch/mips/sys/sigprocmask.S                           |      76 -
 lib/libc/arch/mips/sys/sigreturn.S                             |      57 -
 lib/libc/arch/mips/sys/sigsuspend.S                            |      68 -
 lib/libc/arch/mips/sys/syscall.S                               |      52 -
 lib/libc/arch/ns32k/Makefile.inc                               |      10 -
 lib/libc/arch/ns32k/SYS.h                                      |      81 -
 lib/libc/arch/ns32k/gen/Makefile.inc                           |      16 -
 lib/libc/arch/ns32k/gen/__setjmp14.S                           |      79 -
 lib/libc/arch/ns32k/gen/__sigsetjmp14.S                        |      94 -
 lib/libc/arch/ns32k/gen/_setjmp.S                              |      66 -
 lib/libc/arch/ns32k/gen/alloca.S                               |      41 -
 lib/libc/arch/ns32k/gen/byte_swap_2.S                          |      47 -
 lib/libc/arch/ns32k/gen/byte_swap_4.S                          |      49 -
 lib/libc/arch/ns32k/gen/fabs.S                                 |      32 -
 lib/libc/arch/ns32k/gen/flt_rounds.c                           |      31 -
 lib/libc/arch/ns32k/gen/fpgetmask.c                            |      26 -
 lib/libc/arch/ns32k/gen/fpgetround.c                           |      23 -
 lib/libc/arch/ns32k/gen/fpgetsticky.c                          |      32 -
 lib/libc/arch/ns32k/gen/fpsetmask.c                            |      34 -
 lib/libc/arch/ns32k/gen/fpsetround.c                           |      32 -
 lib/libc/arch/ns32k/gen/fpsetsticky.c                          |      47 -
 lib/libc/arch/ns32k/gen/frexp.c                                |      86 -
 lib/libc/arch/ns32k/gen/infinity.c                             |      11 -
 lib/libc/arch/ns32k/gen/isinf.c                                |      68 -
 lib/libc/arch/ns32k/gen/isnan.c                                |      68 -
 lib/libc/arch/ns32k/gen/ldexp.c                                |     154 -
 lib/libc/arch/ns32k/gen/modf.S                                 |      72 -
 lib/libc/arch/ns32k/gen/setjmp.S                               |      73 -
 lib/libc/arch/ns32k/gen/sigsetjmp.S                            |      86 -
 lib/libc/arch/ns32k/net/Makefile.inc                           |       6 -
 lib/libc/arch/ns32k/stdlib/Makefile.inc                        |       7 -
 lib/libc/arch/ns32k/stdlib/abs.S                               |      32 -
 lib/libc/arch/ns32k/string/Makefile.inc                        |      10 -
 lib/libc/arch/ns32k/string/bcmp.S                              |      30 -
 lib/libc/arch/ns32k/string/bcopy.S                             |       4 -
 lib/libc/arch/ns32k/string/bzero.S                             |       4 -
 lib/libc/arch/ns32k/string/ffs.S                               |      21 -
 lib/libc/arch/ns32k/string/index.S                             |       4 -
 lib/libc/arch/ns32k/string/memccpy.S                           |      31 -
 lib/libc/arch/ns32k/string/memchr.S                            |      29 -
 lib/libc/arch/ns32k/string/memcmp.S                            |      39 -
 lib/libc/arch/ns32k/string/memcpy.S                            |     140 -
 lib/libc/arch/ns32k/string/memmove.S                           |       4 -
 lib/libc/arch/ns32k/string/memset.S                            |     141 -
 lib/libc/arch/ns32k/string/rindex.S                            |       4 -
 lib/libc/arch/ns32k/string/strcat.S                            |      31 -
 lib/libc/arch/ns32k/string/strchr.S                            |     141 -
 lib/libc/arch/ns32k/string/strcmp.S                            |       4 -
 lib/libc/arch/ns32k/string/strcpy.S                            |     121 -
 lib/libc/arch/ns32k/string/strlen.S                            |     114 -
 lib/libc/arch/ns32k/string/strncat.S                           |      33 -
 lib/libc/arch/ns32k/string/strncmp.S                           |      48 -
 lib/libc/arch/ns32k/string/strncpy.S                           |      34 -
 lib/libc/arch/ns32k/string/strrchr.S                           |     140 -
 lib/libc/arch/ns32k/sys/Ovfork.S                               |      52 -
 lib/libc/arch/ns32k/sys/__semctl.S                             |      42 -
 lib/libc/arch/ns32k/sys/__sigreturn14.S                        |      36 -
 lib/libc/arch/ns32k/sys/__vfork14.S                            |      47 -
 lib/libc/arch/ns32k/sys/brk.S                                  |      44 -
 lib/libc/arch/ns32k/sys/cerror.S                               |      42 -
 lib/libc/arch/ns32k/sys/exect.S                                |      30 -
 lib/libc/arch/ns32k/sys/fork.S                                 |      36 -
 lib/libc/arch/ns32k/sys/msgctl.S                               |      45 -
 lib/libc/arch/ns32k/sys/pipe.S                                 |      35 -
 lib/libc/arch/ns32k/sys/ptrace.S                               |      35 -
 lib/libc/arch/ns32k/sys/sbrk.S                                 |      42 -
 lib/libc/arch/ns32k/sys/setlogin.S                             |      34 -
 lib/libc/arch/ns32k/sys/shmctl.S                               |      45 -
 lib/libc/arch/ns32k/sys/sigaction.S                            |      45 -
 lib/libc/arch/ns32k/sys/sigpending.S                           |      36 -
 lib/libc/arch/ns32k/sys/sigprocmask.S                          |      48 -
 lib/libc/arch/ns32k/sys/sigreturn.S                            |      39 -
 lib/libc/arch/ns32k/sys/sigsuspend.S                           |      38 -
 lib/libc/arch/ns32k/sys/syscall.S                              |      33 -
 lib/libc/arch/powerpc/Makefile.inc                             |       4 -
 lib/libc/arch/powerpc/SYS.h                                    |      38 -
 lib/libc/arch/powerpc/gen/Makefile.inc                         |      11 -
 lib/libc/arch/powerpc/gen/__setjmp14.S                         |      52 -
 lib/libc/arch/powerpc/gen/__sigsetjmp14.S                      |      48 -
 lib/libc/arch/powerpc/gen/_setjmp.S                            |      38 -
 lib/libc/arch/powerpc/gen/fabs.S                               |       7 -
 lib/libc/arch/powerpc/gen/flt_rounds.c                         |      20 -
 lib/libc/arch/powerpc/gen/fpgetmask.c                          |      49 -
 lib/libc/arch/powerpc/gen/fpgetround.c                         |      49 -
 lib/libc/arch/powerpc/gen/fpgetsticky.c                        |      49 -
 lib/libc/arch/powerpc/gen/fpsetmask.c                          |      54 -
 lib/libc/arch/powerpc/gen/fpsetround.c                         |      54 -
 lib/libc/arch/powerpc/gen/fpsetsticky.c                        |      54 -
 lib/libc/arch/powerpc/gen/frexp.c                              |      86 -
 lib/libc/arch/powerpc/gen/infinity.c                           |      13 -
 lib/libc/arch/powerpc/gen/isinf.c                              |      68 -
 lib/libc/arch/powerpc/gen/isnan.c                              |      68 -
 lib/libc/arch/powerpc/gen/ldexp.c                              |     154 -
 lib/libc/arch/powerpc/gen/modf.c                               |     104 -
 lib/libc/arch/powerpc/gen/setjmp.S                             |      51 -
 lib/libc/arch/powerpc/gen/sigsetjmp.S                          |      47 -
 lib/libc/arch/powerpc/gen/syncicache.c                         |      92 -
 lib/libc/arch/powerpc/net/Makefile.inc                         |       1 -
 lib/libc/arch/powerpc/stdlib/Makefile.inc                      |       3 -
 lib/libc/arch/powerpc/string/Makefile.inc                      |       6 -
 lib/libc/arch/powerpc/sys/Ovfork.S                             |      18 -
 lib/libc/arch/powerpc/sys/__semctl.S                           |      42 -
 lib/libc/arch/powerpc/sys/__sigreturn14.S                      |       5 -
 lib/libc/arch/powerpc/sys/__vfork14.S                          |      15 -
 lib/libc/arch/powerpc/sys/brk.S                                |      44 -
 lib/libc/arch/powerpc/sys/cerror.S                             |      23 -
 lib/libc/arch/powerpc/sys/exect.S                              |       5 -
 lib/libc/arch/powerpc/sys/fork.S                               |      15 -
 lib/libc/arch/powerpc/sys/msgctl.S                             |       8 -
 lib/libc/arch/powerpc/sys/pipe.S                               |      15 -
 lib/libc/arch/powerpc/sys/ptrace.S                             |       5 -
 lib/libc/arch/powerpc/sys/sbrk.S                               |      38 -
 lib/libc/arch/powerpc/sys/setlogin.S                           |      21 -
 lib/libc/arch/powerpc/sys/shmctl.S                             |      45 -
 lib/libc/arch/powerpc/sys/sigaction.S                          |       8 -
 lib/libc/arch/powerpc/sys/sigpending.S                         |      17 -
 lib/libc/arch/powerpc/sys/sigprocmask.S                        |      29 -
 lib/libc/arch/powerpc/sys/sigreturn.S                          |       8 -
 lib/libc/arch/powerpc/sys/sigsuspend.S                         |      12 -
 lib/libc/arch/powerpc/sys/syscall.S                            |       5 -
 lib/libc/arch/sparc/Makefile.inc                               |      35 -
 lib/libc/arch/sparc/SYS.h                                      |     124 -
 lib/libc/arch/sparc/gen/Makefile.inc                           |      12 -
 lib/libc/arch/sparc/gen/__setjmp14.S                           |     120 -
 lib/libc/arch/sparc/gen/__sigsetjmp14.S                        |      78 -
 lib/libc/arch/sparc/gen/_setjmp.S                              |      79 -
 lib/libc/arch/sparc/gen/divrem.m4                              |     276 -
 lib/libc/arch/sparc/gen/fabs.S                                 |      58 -
 lib/libc/arch/sparc/gen/fixunsdfsi.S                           |      97 -
 lib/libc/arch/sparc/gen/flt_rounds.c                           |      25 -
 lib/libc/arch/sparc/gen/fpgetmask.c                            |      17 -
 lib/libc/arch/sparc/gen/fpgetround.c                           |      17 -
 lib/libc/arch/sparc/gen/fpgetsticky.c                          |      17 -
 lib/libc/arch/sparc/gen/fpsetmask.c                            |      26 -
 lib/libc/arch/sparc/gen/fpsetround.c                           |      26 -
 lib/libc/arch/sparc/gen/fpsetsticky.c                          |      26 -
 lib/libc/arch/sparc/gen/frexp.c                                |      86 -
 lib/libc/arch/sparc/gen/infinity.c                             |      13 -
 lib/libc/arch/sparc/gen/isinf.c                                |      68 -
 lib/libc/arch/sparc/gen/isnan.c                                |      68 -
 lib/libc/arch/sparc/gen/ldexp.c                                |     154 -
 lib/libc/arch/sparc/gen/modf.S                                 |     201 -
 lib/libc/arch/sparc/gen/mul.S                                  |     160 -
 lib/libc/arch/sparc/gen/saveregs.S                             |      65 -
 lib/libc/arch/sparc/gen/setjmp.S                               |     120 -
 lib/libc/arch/sparc/gen/sigsetjmp.S                            |      78 -
 lib/libc/arch/sparc/gen/umul.S                                 |     193 -
 lib/libc/arch/sparc/net/Makefile.inc                           |       3 -
 lib/libc/arch/sparc/net/htonl.S                                |      56 -
 lib/libc/arch/sparc/net/htons.S                                |      55 -
 lib/libc/arch/sparc/net/ntohl.S                                |      53 -
 lib/libc/arch/sparc/net/ntohs.S                                |      56 -
 lib/libc/arch/sparc/stdlib/Makefile.inc                        |       3 -
 lib/libc/arch/sparc/stdlib/abs.S                               |      59 -
 lib/libc/arch/sparc/string/Makefile.inc                        |       6 -
 lib/libc/arch/sparc/string/bzero.S                             |     150 -
 lib/libc/arch/sparc/string/ffs.S                               |     118 -
 lib/libc/arch/sparc/string/strlen.S                            |      59 -
 lib/libc/arch/sparc/sys/Ovfork.S                               |      66 -
 lib/libc/arch/sparc/sys/__semctl.S                             |      42 -
 lib/libc/arch/sparc/sys/__sigreturn14.S                        |      56 -
 lib/libc/arch/sparc/sys/__vfork14.S                            |      63 -
 lib/libc/arch/sparc/sys/brk.S                                  |      97 -
 lib/libc/arch/sparc/sys/cerror.S                               |      79 -
 lib/libc/arch/sparc/sys/exect.S                                |      56 -
 lib/libc/arch/sparc/sys/fork.S                                 |      56 -
 lib/libc/arch/sparc/sys/msgctl.S                               |      45 -
 lib/libc/arch/sparc/sys/pipe.S                                 |      63 -
 lib/libc/arch/sparc/sys/ptrace.S                               |      69 -
 lib/libc/arch/sparc/sys/sbrk.S                                 |      88 -
 lib/libc/arch/sparc/sys/setlogin.S                             |      65 -
 lib/libc/arch/sparc/sys/shmctl.S                               |      45 -
 lib/libc/arch/sparc/sys/sigaction.S                            |      45 -
 lib/libc/arch/sparc/sys/sigpending.S                           |      64 -
 lib/libc/arch/sparc/sys/sigprocmask.S                          |      76 -
 lib/libc/arch/sparc/sys/sigreturn.S                            |      59 -
 lib/libc/arch/sparc/sys/sigsuspend.S                           |      59 -
 lib/libc/arch/sparc/sys/syscall.S                              |      53 -
 lib/libc/arch/sparc64/Makefile.inc                             |      35 -
 lib/libc/arch/sparc64/SYS.h                                    |     117 -
 lib/libc/arch/sparc64/gen/Makefile.inc                         |      13 -
 lib/libc/arch/sparc64/gen/__setjmp14.S                         |     123 -
 lib/libc/arch/sparc64/gen/__sigsetjmp14.S                      |      77 -
 lib/libc/arch/sparc64/gen/_setjmp.S                            |      95 -
 lib/libc/arch/sparc64/gen/divrem.m4                            |     276 -
 lib/libc/arch/sparc64/gen/fabs.S                               |      58 -
 lib/libc/arch/sparc64/gen/fixunsdfsi.S                         |     137 -
 lib/libc/arch/sparc64/gen/flt_rounds.c                         |      25 -
 lib/libc/arch/sparc64/gen/fpgetmask.c                          |      17 -
 lib/libc/arch/sparc64/gen/fpgetround.c                         |      17 -
 lib/libc/arch/sparc64/gen/fpgetsticky.c                        |      17 -
 lib/libc/arch/sparc64/gen/fpsetmask.c                          |      26 -
 lib/libc/arch/sparc64/gen/fpsetround.c                         |      26 -
 lib/libc/arch/sparc64/gen/fpsetsticky.c                        |      26 -
 lib/libc/arch/sparc64/gen/frexp.c                              |      86 -
 lib/libc/arch/sparc64/gen/infinity.c                           |      13 -
 lib/libc/arch/sparc64/gen/isinf.c                              |      68 -
 lib/libc/arch/sparc64/gen/isnan.c                              |      68 -
 lib/libc/arch/sparc64/gen/ldexp.c                              |     154 -
 lib/libc/arch/sparc64/gen/modf.S                               |     201 -
 lib/libc/arch/sparc64/gen/mul.S                                |      68 -
 lib/libc/arch/sparc64/gen/saveregs.S                           |      65 -
 lib/libc/arch/sparc64/gen/setjmp.S                             |     123 -
 lib/libc/arch/sparc64/gen/sigsetjmp.S                          |      77 -
 lib/libc/arch/sparc64/gen/umul.S                               |      66 -
 lib/libc/arch/sparc64/net/Makefile.inc                         |       3 -
 lib/libc/arch/sparc64/net/htonl.S                              |      56 -
 lib/libc/arch/sparc64/net/htons.S                              |      56 -
 lib/libc/arch/sparc64/net/ntohl.S                              |      53 -
 lib/libc/arch/sparc64/net/ntohs.S                              |      58 -
 lib/libc/arch/sparc64/stdlib/Makefile.inc                      |       3 -
 lib/libc/arch/sparc64/stdlib/abs.S                             |      57 -
 lib/libc/arch/sparc64/string/Makefile.inc                      |       6 -
 lib/libc/arch/sparc64/string/bzero.S                           |     150 -
 lib/libc/arch/sparc64/string/ffs.S                             |     118 -
 lib/libc/arch/sparc64/string/strlen.S                          |      58 -
 lib/libc/arch/sparc64/sys/Ovfork.S                             |      66 -
 lib/libc/arch/sparc64/sys/__semctl.S                           |      42 -
 lib/libc/arch/sparc64/sys/__sigreturn14.S                      |      56 -
 lib/libc/arch/sparc64/sys/__vfork14.S                          |      63 -
 lib/libc/arch/sparc64/sys/brk.S                                |      97 -
 lib/libc/arch/sparc64/sys/cerror.S                             |      79 -
 lib/libc/arch/sparc64/sys/exect.S                              |      56 -
 lib/libc/arch/sparc64/sys/fork.S                               |      56 -
 lib/libc/arch/sparc64/sys/msgctl.S                             |      45 -
 lib/libc/arch/sparc64/sys/pipe.S                               |      63 -
 lib/libc/arch/sparc64/sys/ptrace.S                             |      69 -
 lib/libc/arch/sparc64/sys/sbrk.S                               |      89 -
 lib/libc/arch/sparc64/sys/setlogin.S                           |      65 -
 lib/libc/arch/sparc64/sys/shmctl.S                             |      45 -
 lib/libc/arch/sparc64/sys/sigaction.S                          |      45 -
 lib/libc/arch/sparc64/sys/sigpending.S                         |      64 -
 lib/libc/arch/sparc64/sys/sigprocmask.S                        |      76 -
 lib/libc/arch/sparc64/sys/sigreturn.S                          |      59 -
 lib/libc/arch/sparc64/sys/sigsuspend.S                         |      59 -
 lib/libc/arch/sparc64/sys/syscall.S                            |      53 -
 lib/libc/arch/vax/DEFS.h                                       |       4 -
 lib/libc/arch/vax/SYS.h                                        |      77 -
 lib/libc/arch/vax/gen/Makefile.inc                             |       8 -
 lib/libc/arch/vax/gen/__setjmp14.S                             |      99 -
 lib/libc/arch/vax/gen/__sigsetjmp14.S                          |      68 -
 lib/libc/arch/vax/gen/_setjmp.S                                |     102 -
 lib/libc/arch/vax/gen/alloca.S                                 |      50 -
 lib/libc/arch/vax/gen/bswap64.S                                |      19 -
 lib/libc/arch/vax/gen/byte_swap_2.S                            |      47 -
 lib/libc/arch/vax/gen/byte_swap_4.S                            |      47 -
 lib/libc/arch/vax/gen/fabs.S                                   |      48 -
 lib/libc/arch/vax/gen/frexp.c                                  |      73 -
 lib/libc/arch/vax/gen/infinity.c                               |      17 -
 lib/libc/arch/vax/gen/isinf.c                                  |      67 -
 lib/libc/arch/vax/gen/ldexp.S                                  |      90 -
 lib/libc/arch/vax/gen/modf.S                                   |      56 -
 lib/libc/arch/vax/gen/setjmp.S                                 |      97 -
 lib/libc/arch/vax/gen/sigsetjmp.S                              |      68 -
 lib/libc/arch/vax/gen/udiv.S                                   |      96 -
 lib/libc/arch/vax/gen/urem.S                                   |      96 -
 lib/libc/arch/vax/net/Makefile.inc                             |       4 -
 lib/libc/arch/vax/stdlib/Makefile.inc                          |       3 -
 lib/libc/arch/vax/string/Makefile.inc                          |       7 -
 lib/libc/arch/vax/string/bcmp.S                                |      62 -
 lib/libc/arch/vax/string/bcopy.S                               |      79 -
 lib/libc/arch/vax/string/bzero.S                               |      54 -
 lib/libc/arch/vax/string/ffs.S                                 |      49 -
 lib/libc/arch/vax/string/index.S                               |      63 -
 lib/libc/arch/vax/string/memcmp.S                              |      69 -
 lib/libc/arch/vax/string/memcpy.S                              |      94 -
 lib/libc/arch/vax/string/memmove.S                             |      94 -
 lib/libc/arch/vax/string/memset.S                              |      56 -
 lib/libc/arch/vax/sys/Ovfork.S                                 |      75 -
 lib/libc/arch/vax/sys/__semctl.S                               |      42 -
 lib/libc/arch/vax/sys/__sigreturn14.S                          |      52 -
 lib/libc/arch/vax/sys/__vfork14.S                              |      72 -
 lib/libc/arch/vax/sys/brk.S                                    |      57 -
 lib/libc/arch/vax/sys/cerror.S                                 |      48 -
 lib/libc/arch/vax/sys/exect.S                                  |      45 -
 lib/libc/arch/vax/sys/fork.S                                   |      45 -
 lib/libc/arch/vax/sys/msgctl.S                                 |      45 -
 lib/libc/arch/vax/sys/pipe.S                                   |      46 -
 lib/libc/arch/vax/sys/ptrace.S                                 |      47 -
 lib/libc/arch/vax/sys/sbrk.S                                   |      63 -
 lib/libc/arch/vax/sys/setlogin.S                               |      45 -
 lib/libc/arch/vax/sys/shmctl.S                                 |      45 -
 lib/libc/arch/vax/sys/sigaction.S                              |      45 -
 lib/libc/arch/vax/sys/sigpending.S                             |      47 -
 lib/libc/arch/vax/sys/sigprocmask.S                            |      61 -
 lib/libc/arch/vax/sys/sigreturn.S                              |      54 -
 lib/libc/arch/vax/sys/sigsuspend.S                             |      52 -
 lib/libc/arch/vax/sys/syscall.S                                |      53 -
 lib/libc/compat-43/Makefile.inc                                |      18 -
 lib/libc/compat-43/creat.3                                     |      69 -
 lib/libc/compat-43/creat.c                                     |      62 -
 lib/libc/compat-43/getdtablesize.3                             |      65 -
 lib/libc/compat-43/getdtablesize.c                             |      20 -
 lib/libc/compat-43/gethostid.3                                 |      81 -
 lib/libc/compat-43/gethostid.c                                 |      68 -
 lib/libc/compat-43/getwd.c                                     |      71 -
 lib/libc/compat-43/killpg.3                                    |      98 -
 lib/libc/compat-43/killpg.c                                    |      66 -
 lib/libc/compat-43/sethostid.c                                 |      66 -
 lib/libc/compat-43/setpgrp.c                                   |      57 -
 lib/libc/compat-43/setrgid.c                                   |      59 -
 lib/libc/compat-43/setruid.3                                   |      82 -
 lib/libc/compat-43/setruid.c                                   |      59 -
 lib/libc/compat-43/sigblock.3                                  |      87 -
 lib/libc/compat-43/sigcompat.c                                 |     132 -
 lib/libc/compat-43/sigpause.3                                  |      79 -
 lib/libc/compat-43/sigsetmask.3                                |      85 -
 lib/libc/compat-43/sigvec.3                                    |     314 -
 lib/libc/db/Makefile.inc                                       |      11 -
 lib/libc/db/README                                             |      41 -
 lib/libc/db/btree/Makefile.inc                                 |       8 -
 lib/libc/db/btree/bt_close.c                                   |     190 -
 lib/libc/db/btree/bt_conv.c                                    |     228 -
 lib/libc/db/btree/bt_debug.c                                   |     336 -
 lib/libc/db/btree/bt_delete.c                                  |     667 -
 lib/libc/db/btree/bt_get.c                                     |     113 -
 lib/libc/db/btree/bt_open.c                                    |     455 -
 lib/libc/db/btree/bt_overflow.c                                |     236 -
 lib/libc/db/btree/bt_page.c                                    |     108 -
 lib/libc/db/btree/bt_put.c                                     |     329 -
 lib/libc/db/btree/bt_search.c                                  |     221 -
 lib/libc/db/btree/bt_seq.c                                     |     468 -
 lib/libc/db/btree/bt_split.c                                   |     837 -
 lib/libc/db/btree/bt_utils.c                                   |     267 -
 lib/libc/db/btree/btree.h                                      |     385 -
 lib/libc/db/btree/extern.h                                     |      72 -
 lib/libc/db/changelog                                          |     105 -
 lib/libc/db/db/Makefile.inc                                    |       6 -
 lib/libc/db/db/db.c                                            |     113 -
 lib/libc/db/db2netbsd                                          |      31 -
 lib/libc/db/hash/Makefile.inc                                  |       7 -
 lib/libc/db/hash/README                                        |      69 -
 lib/libc/db/hash/extern.h                                      |      67 -
 lib/libc/db/hash/hash.c                                        |    1014 -
 lib/libc/db/hash/hash.h                                        |     296 -
 lib/libc/db/hash/hash_bigkey.c                                 |     689 -
 lib/libc/db/hash/hash_buf.c                                    |     362 -
 lib/libc/db/hash/hash_func.c                                   |     222 -
 lib/libc/db/hash/hash_log2.c                                   |      64 -
 lib/libc/db/hash/hash_page.c                                   |     966 -
 lib/libc/db/hash/hsearch.c                                     |     114 -
 lib/libc/db/hash/ndbm.c                                        |     244 -
 lib/libc/db/hash/page.h                                        |      94 -
 lib/libc/db/man/Makefile.inc                                   |      13 -
 lib/libc/db/man/btree.3                                        |     235 -
 lib/libc/db/man/dbopen.3                                       |     483 -
 lib/libc/db/man/hash.3                                         |     161 -
 lib/libc/db/man/hcreate.3                                      |     189 -
 lib/libc/db/man/mpool.3                                        |     221 -
 lib/libc/db/man/recno.3                                        |     218 -
 lib/libc/db/mpool/Makefile.inc                                 |       6 -
 lib/libc/db/mpool/README                                       |       8 -
 lib/libc/db/mpool/mpool.c                                      |     480 -
 lib/libc/db/mpool/mpool.libtp                                  |     746 -
 lib/libc/db/recno/Makefile.inc                                 |       7 -
 lib/libc/db/recno/extern.h                                     |      56 -
 lib/libc/db/recno/rec_close.c                                  |     192 -
 lib/libc/db/recno/rec_delete.c                                 |     205 -
 lib/libc/db/recno/rec_get.c                                    |     319 -
 lib/libc/db/recno/rec_open.c                                   |     252 -
 lib/libc/db/recno/rec_put.c                                    |     289 -
 lib/libc/db/recno/rec_search.c                                 |     134 -
 lib/libc/db/recno/rec_seq.c                                    |     139 -
 lib/libc/db/recno/rec_utils.c                                  |     129 -
 lib/libc/db/recno/recno.h                                      |      41 -
 lib/libc/gen/Lint___setjmp14.c                                 |      24 -
 lib/libc/gen/Lint___sigsetjmp14.c                              |      25 -
 lib/libc/gen/Lint__setjmp.c                                    |      24 -
 lib/libc/gen/Lint_alloca.c                                     |      16 -
 lib/libc/gen/Lint_bswap16.c                                    |      12 -
 lib/libc/gen/Lint_bswap32.c                                    |      12 -
 lib/libc/gen/Lint_bswap64.c                                    |      12 -
 lib/libc/gen/Lint_fabs.c                                       |      16 -
 lib/libc/gen/Lint_flt_rounds.c                                 |      13 -
 lib/libc/gen/Lint_fpgetmask.c                                  |      17 -
 lib/libc/gen/Lint_fpgetround.c                                 |      17 -
 lib/libc/gen/Lint_fpgetsticky.c                                |      17 -
 lib/libc/gen/Lint_fpsetmask.c                                  |      18 -
 lib/libc/gen/Lint_fpsetround.c                                 |      18 -
 lib/libc/gen/Lint_fpsetsticky.c                                |      18 -
 lib/libc/gen/Lint_frexp.c                                      |      17 -
 lib/libc/gen/Lint_ldexp.c                                      |      17 -
 lib/libc/gen/Lint_modf.c                                       |      16 -
 lib/libc/gen/Makefile.inc                                      |     108 -
 lib/libc/gen/__errlist14.c                                     |     157 -
 lib/libc/gen/__fts13.c                                         |    1136 -
 lib/libc/gen/__glob13.c                                        |     952 -
 lib/libc/gen/__siglist14.c                                     |      86 -
 lib/libc/gen/__signame14.c                                     |      84 -
 lib/libc/gen/__sigsetops14.c                                   |     112 -
 lib/libc/gen/_err.c                                            |      20 -
 lib/libc/gen/_errno.c                                          |      48 -
 lib/libc/gen/_errx.c                                           |      20 -
 lib/libc/gen/_sys_errlist.c                                    |      42 -
 lib/libc/gen/_sys_nerr.c                                       |      14 -
 lib/libc/gen/_sys_siglist.c                                    |      32 -
 lib/libc/gen/_verr.c                                           |      19 -
 lib/libc/gen/_verrx.c                                          |      19 -
 lib/libc/gen/_vwarn.c                                          |      19 -
 lib/libc/gen/_vwarnx.c                                         |      19 -
 lib/libc/gen/_warn.c                                           |      20 -
 lib/libc/gen/_warnx.c                                          |      20 -
 lib/libc/gen/alarm.3                                           |     101 -
 lib/libc/gen/alarm.c                                           |      71 -
 lib/libc/gen/assert.c                                          |      81 -
 lib/libc/gen/basename.3                                        |      85 -
 lib/libc/gen/basename.c                                        |      77 -
 lib/libc/gen/bswap.3                                           |      63 -
 lib/libc/gen/bswap16.c                                         |      23 -
 lib/libc/gen/bswap32.c                                         |      26 -
 lib/libc/gen/bswap64.c                                         |      28 -
 lib/libc/gen/clock.3                                           |      70 -
 lib/libc/gen/clock.c                                           |      66 -
 lib/libc/gen/closedir.c                                        |      76 -
 lib/libc/gen/confstr.3                                         |     135 -
 lib/libc/gen/confstr.c                                         |      98 -
 lib/libc/gen/ctermid.3                                         |      94 -
 lib/libc/gen/ctermid.c                                         |      65 -
 lib/libc/gen/ctype.3                                           |     109 -
 lib/libc/gen/ctype_.c                                          |      75 -
 lib/libc/gen/daemon.3                                          |      99 -
 lib/libc/gen/daemon.c                                          |      84 -
 lib/libc/gen/devname.3                                         |      73 -
 lib/libc/gen/devname.c                                         |      93 -
 lib/libc/gen/directory.3                                       |     196 -
 lib/libc/gen/dirname.3                                         |      88 -
 lib/libc/gen/dirname.c                                         |      78 -
 lib/libc/gen/disklabel.c                                       |     230 -
 lib/libc/gen/err.3                                             |     134 -
 lib/libc/gen/err.c                                             |      81 -
 lib/libc/gen/errlist.c                                         |     153 -
 lib/libc/gen/errno.c                                           |       3 -
 lib/libc/gen/errx.c                                            |      81 -
 lib/libc/gen/exec.3                                            |     260 -
 lib/libc/gen/execl.c                                           |     107 -
 lib/libc/gen/execle.c                                          |     103 -
 lib/libc/gen/execlp.c                                          |      93 -
 lib/libc/gen/execv.c                                           |      69 -
 lib/libc/gen/execvp.c                                          |     164 -
 lib/libc/gen/fmtmsg.3                                          |     223 -
 lib/libc/gen/fmtmsg.c                                          |     252 -
 lib/libc/gen/fnmatch.3                                         |     130 -
 lib/libc/gen/fnmatch.c                                         |     190 -
 lib/libc/gen/fpgetmask.3                                       |     131 -
 lib/libc/gen/frexp.3                                           |      89 -
 lib/libc/gen/fstab.c                                           |     232 -
 lib/libc/gen/ftok.3                                            |      92 -
 lib/libc/gen/ftok.c                                            |      61 -
 lib/libc/gen/fts.3                                             |     758 -
 lib/libc/gen/fts.c                                             |      10 -
 lib/libc/gen/getbsize.3                                        |      83 -
 lib/libc/gen/getbsize.c                                        |     123 -
 lib/libc/gen/getcap.3                                          |     569 -
 lib/libc/gen/getcap.c                                          |    1175 -
 lib/libc/gen/getcwd.3                                          |     162 -
 lib/libc/gen/getcwd.c                                          |     438 -
 lib/libc/gen/getdiskbyname.3                                   |     108 -
 lib/libc/gen/getdomainname.3                                   |     102 -
 lib/libc/gen/getdomainname.c                                   |      73 -
 lib/libc/gen/getfsent.3                                        |     152 -
 lib/libc/gen/getgrent.3                                        |     204 -
 lib/libc/gen/getgrent.c                                        |     653 -
 lib/libc/gen/getgrouplist.3                                    |     107 -
 lib/libc/gen/getgrouplist.c                                    |     114 -
 lib/libc/gen/gethostname.3                                     |     107 -
 lib/libc/gen/gethostname.c                                     |      73 -
 lib/libc/gen/getloadavg.3                                      |      69 -
 lib/libc/gen/getloadavg.c                                      |      87 -
 lib/libc/gen/getlogin.c                                        |      71 -
 lib/libc/gen/getmntinfo.3                                      |     114 -
 lib/libc/gen/getmntinfo.c                                      |      89 -
 lib/libc/gen/getnetgrent.3                                     |     128 -
 lib/libc/gen/getnetgrent.c                                     |     794 -
 lib/libc/gen/getpagesize.3                                     |      70 -
 lib/libc/gen/getpagesize.c                                     |      70 -
 lib/libc/gen/getpass.3                                         |      92 -
 lib/libc/gen/getpass.c                                         |     112 -
 lib/libc/gen/getpwent.3                                        |     223 -
 lib/libc/gen/getpwent.c                                        |    1213 -
 lib/libc/gen/getsubopt.c                                       |     118 -
 lib/libc/gen/getttyent.3                                       |     206 -
 lib/libc/gen/getttyent.c                                       |     235 -
 lib/libc/gen/getusershell.3                                    |     100 -
 lib/libc/gen/getusershell.c                                    |     294 -
 lib/libc/gen/glob.3                                            |     472 -
 lib/libc/gen/glob.c                                            |      10 -
 lib/libc/gen/initgroups.3                                      |      87 -
 lib/libc/gen/initgroups.c                                      |      71 -
 lib/libc/gen/isalnum.3                                         |      88 -
 lib/libc/gen/isalpha.3                                         |     104 -
 lib/libc/gen/isascii.3                                         |      77 -
 lib/libc/gen/isascii.c                                         |      56 -
 lib/libc/gen/isatty.c                                          |      64 -
 lib/libc/gen/isblank.3                                         |      92 -
 lib/libc/gen/iscntrl.3                                         |      83 -
 lib/libc/gen/isctype.c                                         |     163 -
 lib/libc/gen/isdigit.3                                         |      84 -
 lib/libc/gen/isgraph.3                                         |      83 -
 lib/libc/gen/isinf.3                                           |      79 -
 lib/libc/gen/islower.3                                         |      97 -
 lib/libc/gen/isprint.3                                         |      83 -
 lib/libc/gen/ispunct.3                                         |      86 -
 lib/libc/gen/isspace.3                                         |     110 -
 lib/libc/gen/isupper.3                                         |      95 -
 lib/libc/gen/isxdigit.3                                        |      83 -
 lib/libc/gen/ldexp.3                                           |      91 -
 lib/libc/gen/lockf.3                                           |     250 -
 lib/libc/gen/lockf.c                                           |      96 -
 lib/libc/gen/modf.3                                            |      76 -
 lib/libc/gen/nice.3                                            |      97 -
 lib/libc/gen/nice.c                                            |      70 -
 lib/libc/gen/nlist.3                                           |      82 -
 lib/libc/gen/nlist.c                                           |     114 -
 lib/libc/gen/nlist_aout.c                                      |     149 -
 lib/libc/gen/nlist_ecoff.c                                     |     185 -
 lib/libc/gen/nlist_elf32.c                                     |     242 -
 lib/libc/gen/nlist_elf64.c                                     |      40 -
 lib/libc/gen/nlist_private.h                                   |      67 -
 lib/libc/gen/opendir.c                                         |     315 -
 lib/libc/gen/pause.3                                           |      96 -
 lib/libc/gen/pause.c                                           |      65 -
 lib/libc/gen/popen.3                                           |     198 -
 lib/libc/gen/popen.c                                           |     201 -
 lib/libc/gen/psignal.3                                         |      94 -
 lib/libc/gen/psignal.c                                         |      87 -
 lib/libc/gen/pw_private.h                                      |       8 -
 lib/libc/gen/pw_scan.c                                         |     162 -
 lib/libc/gen/pwcache.3                                         |     145 -
 lib/libc/gen/pwcache.c                                         |     522 -
 lib/libc/gen/pwcache.h                                         |      76 -
 lib/libc/gen/raise.3                                           |      81 -
 lib/libc/gen/raise.c                                           |      53 -
 lib/libc/gen/readdir.c                                         |      93 -
 lib/libc/gen/realpath.3                                        |     129 -
 lib/libc/gen/rewinddir.c                                       |      62 -
 lib/libc/gen/scandir.3                                         |     110 -
 lib/libc/gen/scandir.c                                         |     158 -
 lib/libc/gen/seekdir.c                                         |      66 -
 lib/libc/gen/setdomainname.c                                   |      71 -
 lib/libc/gen/sethostname.c                                     |      71 -
 lib/libc/gen/setjmp.3                                          |     177 -
 lib/libc/gen/setjmperr.c                                       |      60 -
 lib/libc/gen/setmode.3                                         |     110 -
 lib/libc/gen/setmode.c                                         |     485 -
 lib/libc/gen/setproctitle.3                                    |      75 -
 lib/libc/gen/setproctitle.c                                    |     112 -
 lib/libc/gen/siginterrupt.3                                    |     109 -
 lib/libc/gen/siginterrupt.c                                    |      74 -
 lib/libc/gen/siglist.c                                         |      83 -
 lib/libc/gen/signal.3                                          |     184 -
 lib/libc/gen/signal.c                                          |      72 -
 lib/libc/gen/signame.c                                         |      81 -
 lib/libc/gen/sigsetops.3                                       |     132 -
 lib/libc/gen/sigsetops.c                                       |     121 -
 lib/libc/gen/sleep.3                                           |      79 -
 lib/libc/gen/sleep.c                                           |      64 -
 lib/libc/gen/stringlist.3                                      |     122 -
 lib/libc/gen/stringlist.c                                      |     141 -
 lib/libc/gen/sysconf.3                                         |     227 -
 lib/libc/gen/sysconf.c                                         |     247 -
 lib/libc/gen/sysctl.3                                          |    1029 -
 lib/libc/gen/sysctl.c                                          |     198 -
 lib/libc/gen/syslog.3                                          |     273 -
 lib/libc/gen/syslog.c                                          |     349 -
 lib/libc/gen/telldir.c                                         |     145 -
 lib/libc/gen/time.3                                            |      95 -
 lib/libc/gen/time.c                                            |      66 -
 lib/libc/gen/times.3                                           |     143 -
 lib/libc/gen/times.c                                           |      85 -
 lib/libc/gen/timezone.3                                        |      74 -
 lib/libc/gen/timezone.c                                        |     147 -
 lib/libc/gen/toascii.3                                         |      78 -
 lib/libc/gen/toascii.c                                         |      56 -
 lib/libc/gen/tolower.3                                         |      92 -
 lib/libc/gen/tolower_.c                                        |      64 -
 lib/libc/gen/toupper.3                                         |      92 -
 lib/libc/gen/toupper_.c                                        |      64 -
 lib/libc/gen/ttyname.3                                         |     164 -
 lib/libc/gen/ttyname.c                                         |     131 -
 lib/libc/gen/ttyslot.c                                         |      81 -
 lib/libc/gen/ualarm.3                                          |     104 -
 lib/libc/gen/ualarm.c                                          |      78 -
 lib/libc/gen/ulimit.3                                          |     118 -
 lib/libc/gen/ulimit.c                                          |      92 -
 lib/libc/gen/uname.3                                           |      97 -
 lib/libc/gen/uname.c                                           |     109 -
 lib/libc/gen/unvis.3                                           |     170 -
 lib/libc/gen/unvis.c                                           |     285 -
 lib/libc/gen/usleep.3                                          |      91 -
 lib/libc/gen/usleep.c                                          |      70 -
 lib/libc/gen/utime.3                                           |     147 -
 lib/libc/gen/utime.c                                           |      75 -
 lib/libc/gen/valloc.3                                          |      79 -
 lib/libc/gen/valloc.c                                          |      62 -
 lib/libc/gen/verr.c                                            |      82 -
 lib/libc/gen/verrx.c                                           |      75 -
 lib/libc/gen/vis.3                                             |     269 -
 lib/libc/gen/vis.c                                             |     212 -
 lib/libc/gen/vwarn.c                                           |      79 -
 lib/libc/gen/vwarnx.c                                          |      72 -
 lib/libc/gen/wait.c                                            |      61 -
 lib/libc/gen/wait3.c                                           |      62 -
 lib/libc/gen/waitpid.c                                         |      66 -
 lib/libc/gen/warn.c                                            |      79 -
 lib/libc/gen/warnx.c                                           |      79 -
 lib/libc/gmon/Makefile.inc                                     |      12 -
 lib/libc/gmon/gmon.c                                           |     316 -
 lib/libc/gmon/mcount.c                                         |     199 -
 lib/libc/gmon/moncontrol.3                                     |     105 -
 lib/libc/hash/Makefile.inc                                     |      14 -
 lib/libc/hash/sha1.3                                           |     212 -
 lib/libc/hash/sha1.c                                           |     219 -
 lib/libc/hash/sha1hl.c                                         |     101 -
 lib/libc/include/extern.h                                      |      40 -
 lib/libc/include/namespace.h                                   |     491 -
 lib/libc/include/pathnames.h                                   |      31 -
 lib/libc/include/reentrant.h                                   |     129 -
 lib/libc/locale/Makefile.inc                                   |      12 -
 lib/libc/locale/_def_messages.c                                |      19 -
 lib/libc/locale/_def_monetary.c                                |      31 -
 lib/libc/locale/_def_numeric.c                                 |      18 -
 lib/libc/locale/_def_time.c                                    |      37 -
 lib/libc/locale/ctypeio.c                                      |     177 -
 lib/libc/locale/ctypeio.h                                      |      35 -
 lib/libc/locale/localeconv.c                                   |      68 -
 lib/libc/locale/nl_langinfo.3                                  |      34 -
 lib/libc/locale/nl_langinfo.c                                  |     116 -
 lib/libc/locale/setlocale.3                                    |     318 -
 lib/libc/locale/setlocale.c                                    |     273 -
 lib/libc/md/Makefile.inc                                       |      27 -
 lib/libc/md/md4.copyright                                      |      21 -
 lib/libc/md/md4c.c                                             |     312 -
 lib/libc/md/md4hl.c                                            |      13 -
 lib/libc/md/md5.copyright                                      |      22 -
 lib/libc/md/md5c.c                                             |     356 -
 lib/libc/md/md5hl.c                                            |      13 -
 lib/libc/md/mdX.3                                              |     139 -
 lib/libc/md/mdXhl.c                                            |     100 -
 lib/libc/net/Lint_htonl.c                                      |      17 -
 lib/libc/net/Lint_htons.c                                      |      17 -
 lib/libc/net/Lint_ntohl.c                                      |      17 -
 lib/libc/net/Lint_ntohs.c                                      |      17 -
 lib/libc/net/Makefile.inc                                      |      80 -
 lib/libc/net/__dn_comp.c                                       |      33 -
 lib/libc/net/__res_close.c                                     |      30 -
 lib/libc/net/__res_send.c                                      |      34 -
 lib/libc/net/_inet_aton.c                                      |      28 -
 lib/libc/net/_inet_pton.c                                      |      29 -
 lib/libc/net/base64.c                                          |     341 -
 lib/libc/net/byteorder.3                                       |      92 -
 lib/libc/net/ethers.3                                          |     117 -
 lib/libc/net/ethers.c                                          |     223 -
 lib/libc/net/getaddrinfo.3                                     |     363 -
 lib/libc/net/getaddrinfo.c                                     |     731 -
 lib/libc/net/gethnamaddr.c                                     |    1374 -
 lib/libc/net/gethostbyname.3                                   |     314 -
 lib/libc/net/getnameinfo.3                                     |     203 -
 lib/libc/net/getnameinfo.c                                     |     223 -
 lib/libc/net/getnetent.3                                       |     156 -
 lib/libc/net/getnetent.c                                       |     168 -
 lib/libc/net/getnetnamadr.c                                    |     610 -
 lib/libc/net/getproto.c                                        |      68 -
 lib/libc/net/getprotoent.3                                     |     148 -
 lib/libc/net/getprotoent.c                                     |     133 -
 lib/libc/net/getprotoname.c                                    |      78 -
 lib/libc/net/getservbyname.c                                   |      81 -
 lib/libc/net/getservbyport.c                                   |      72 -
 lib/libc/net/getservent.3                                      |     158 -
 lib/libc/net/getservent.c                                      |     135 -
 lib/libc/net/herror.c                                          |     130 -
 lib/libc/net/hesiod.3                                          |     135 -
 lib/libc/net/hesiod.c                                          |     623 -
 lib/libc/net/htonl.c                                           |      27 -
 lib/libc/net/htons.c                                           |      27 -
 lib/libc/net/if_indextoname.3                                  |     144 -
 lib/libc/net/ifname.c                                          |     223 -
 lib/libc/net/inet.3                                            |     350 -
 lib/libc/net/inet_lnaof.c                                      |      71 -
 lib/libc/net/inet_makeaddr.c                                   |      74 -
 lib/libc/net/inet_net.3                                        |     151 -
 lib/libc/net/inet_net_ntop.c                                   |     159 -
 lib/libc/net/inet_net_pton.c                                   |     228 -
 lib/libc/net/inet_neta.c                                       |      98 -
 lib/libc/net/inet_netof.c                                      |      70 -
 lib/libc/net/inet_network.c                                    |     107 -
 lib/libc/net/inet_ntoa.c                                       |      71 -
 lib/libc/net/inet_ntop.c                                       |     219 -
 lib/libc/net/inet_pton.c                                       |     335 -
 lib/libc/net/ip6opt.c                                          |     415 -
 lib/libc/net/iso_addr.3                                        |     114 -
 lib/libc/net/iso_addr.c                                        |     134 -
 lib/libc/net/linkaddr.3                                        |     138 -
 lib/libc/net/linkaddr.c                                        |     173 -
 lib/libc/net/ns.3                                              |     135 -
 lib/libc/net/ns_addr.c                                         |     245 -
 lib/libc/net/ns_ntoa.c                                         |     114 -
 lib/libc/net/nsap_addr.c                                       |     162 -
 lib/libc/net/nsdispatch.3                                      |     225 -
 lib/libc/net/nsdispatch.c                                      |     299 -
 lib/libc/net/nslexer.l                                         |     116 -
 lib/libc/net/nsparser.y                                        |     179 -
 lib/libc/net/ntohl.c                                           |      27 -
 lib/libc/net/ntohs.c                                           |      27 -
 lib/libc/net/rcmd.3                                            |     290 -
 lib/libc/net/rcmd.c                                            |     841 -
 lib/libc/net/recv.c                                            |      57 -
 lib/libc/net/res_comp.c                                        |     551 -
 lib/libc/net/res_data.c                                        |     122 -
 lib/libc/net/res_debug.c                                       |    1628 -
 lib/libc/net/res_init.c                                        |     558 -
 lib/libc/net/res_mkquery.c                                     |     200 -
 lib/libc/net/res_query.c                                       |     429 -
 lib/libc/net/res_send.c                                        |     902 -
 lib/libc/net/resolver.3                                        |     349 -
 lib/libc/net/rthdr.c                                           |     325 -
 lib/libc/net/send.c                                            |      57 -
 lib/libc/net/sethostent.c                                      |      76 -
 lib/libc/net/vars6.c                                           |      50 -
 lib/libc/nls/C.msg                                             |     232 -
 lib/libc/nls/Makefile.inc                                      |       9 -
 lib/libc/nls/Pig.msg                                           |     230 -
 lib/libc/nls/_catclose.c                                       |      24 -
 lib/libc/nls/_catgets.c                                        |      27 -
 lib/libc/nls/_catopen.c                                        |      25 -
 lib/libc/nls/catclose.3                                        |      31 -
 lib/libc/nls/catclose.c                                        |      67 -
 lib/libc/nls/catgets.3                                         |      62 -
 lib/libc/nls/catgets.c                                         |     121 -
 lib/libc/nls/catopen.3                                         |      59 -
 lib/libc/nls/catopen.c                                         |     179 -
 lib/libc/nls/cs.msg                                            |     232 -
 lib/libc/nls/de.msg                                            |     230 -
 lib/libc/nls/es.msg                                            |     228 -
 lib/libc/nls/fi.msg                                            |     222 -
 lib/libc/nls/fr.msg                                            |     230 -
 lib/libc/nls/nl.msg                                            |     222 -
 lib/libc/nls/no.msg                                            |     222 -
 lib/libc/nls/sv.msg                                            |     222 -
 lib/libc/quad/Makefile.inc                                     |      19 -
 lib/libc/quad/TESTS/Makefile                                   |      12 -
 lib/libc/quad/TESTS/divrem.c                                   |      84 -
 lib/libc/quad/TESTS/mul.c                                      |      80 -
 lib/libc/quad/adddi3.c                                         |      67 -
 lib/libc/quad/anddi3.c                                         |      65 -
 lib/libc/quad/ashldi3.c                                        |      74 -
 lib/libc/quad/ashrdi3.c                                        |      86 -
 lib/libc/quad/cmpdi2.c                                         |      66 -
 lib/libc/quad/divdi3.c                                         |      74 -
 lib/libc/quad/fixdfdi.c                                        |      69 -
 lib/libc/quad/fixsfdi.c                                        |      70 -
 lib/libc/quad/fixunsdfdi.c                                     |      87 -
 lib/libc/quad/fixunssfdi.c                                     |     107 -
 lib/libc/quad/floatdidf.c                                      |      81 -
 lib/libc/quad/floatdisf.c                                      |      83 -
 lib/libc/quad/floatunsdidf.c                                   |      66 -
 lib/libc/quad/iordi3.c                                         |      65 -
 lib/libc/quad/lshldi3.c                                        |      74 -
 lib/libc/quad/lshrdi3.c                                        |      73 -
 lib/libc/quad/moddi3.c                                         |      74 -
 lib/libc/quad/muldi3.c                                         |     253 -
 lib/libc/quad/negdi2.c                                         |      64 -
 lib/libc/quad/notdi2.c                                         |      65 -
 lib/libc/quad/qdivrem.c                                        |     289 -
 lib/libc/quad/quad.h                                           |     144 -
 lib/libc/quad/subdi3.c                                         |      66 -
 lib/libc/quad/ucmpdi2.c                                        |      65 -
 lib/libc/quad/udivdi3.c                                        |      60 -
 lib/libc/quad/umoddi3.c                                        |      62 -
 lib/libc/quad/xordi3.c                                         |      65 -
 lib/libc/regex/COPYRIGHT                                       |      58 -
 lib/libc/regex/Makefile.inc                                    |      14 -
 lib/libc/regex/WHATSNEW                                        |      95 -
 lib/libc/regex/cclass.h                                        |      72 -
 lib/libc/regex/cname.h                                         |     143 -
 lib/libc/regex/engine.c                                        |    1145 -
 lib/libc/regex/re_format.7                                     |     271 -
 lib/libc/regex/regcomp.c                                       |    1867 -
 lib/libc/regex/regerror.c                                      |     193 -
 lib/libc/regex/regex.3                                         |     600 -
 lib/libc/regex/regex2.h                                        |     177 -
 lib/libc/regex/regexec.c                                       |     200 -
 lib/libc/regex/regfree.c                                       |      97 -
 lib/libc/regex/utils.h                                         |      59 -
 lib/libc/rpc/DISCLAIMER                                        |      30 -
 lib/libc/rpc/Makefile.inc                                      |     114 -
 lib/libc/rpc/README                                            |     235 -
 lib/libc/rpc/auth_none.c                                       |     163 -
 lib/libc/rpc/auth_unix.c                                       |     372 -
 lib/libc/rpc/authunix_prot.c                                   |      83 -
 lib/libc/rpc/bindresvport.3                                    |      84 -
 lib/libc/rpc/bindresvport.c                                    |     118 -
 lib/libc/rpc/clnt_generic.c                                    |     131 -
 lib/libc/rpc/clnt_perror.c                                     |     319 -
 lib/libc/rpc/clnt_raw.c                                        |     290 -
 lib/libc/rpc/clnt_simple.c                                     |     146 -
 lib/libc/rpc/clnt_tcp.c                                        |     525 -
 lib/libc/rpc/clnt_udp.c                                        |     506 -
 lib/libc/rpc/get_myaddress.c                                   |      76 -
 lib/libc/rpc/getrpcent.3                                       |      95 -
 lib/libc/rpc/getrpcent.c                                       |     226 -
 lib/libc/rpc/getrpcport.3                                      |      33 -
 lib/libc/rpc/getrpcport.c                                      |      85 -
 lib/libc/rpc/pmap_clnt.c                                       |     128 -
 lib/libc/rpc/pmap_getmaps.c                                    |     105 -
 lib/libc/rpc/pmap_getport.c                                    |     109 -
 lib/libc/rpc/pmap_prot.c                                       |      76 -
 lib/libc/rpc/pmap_prot2.c                                      |     136 -
 lib/libc/rpc/pmap_rmt.c                                        |     430 -
 lib/libc/rpc/rpc.3                                             |    1803 -
 lib/libc/rpc/rpc_callmsg.c                                     |     218 -
 lib/libc/rpc/rpc_commondata.c                                  |      50 -
 lib/libc/rpc/rpc_dtablesize.c                                  |      59 -
 lib/libc/rpc/rpc_prot.c                                        |     365 -
 lib/libc/rpc/svc.c                                             |     513 -
 lib/libc/rpc/svc_auth.c                                        |     126 -
 lib/libc/rpc/svc_auth_unix.c                                   |     150 -
 lib/libc/rpc/svc_raw.c                                         |     202 -
 lib/libc/rpc/svc_run.c                                         |      80 -
 lib/libc/rpc/svc_simple.c                                      |     166 -
 lib/libc/rpc/svc_tcp.c                                         |     490 -
 lib/libc/rpc/svc_udp.c                                         |     513 -
 lib/libc/rpc/xdr.3                                             |     857 -
 lib/libc/rpc/xdr.c                                             |     761 -
 lib/libc/rpc/xdr_array.c                                       |     169 -
 lib/libc/rpc/xdr_float.c                                       |     331 -
 lib/libc/rpc/xdr_mem.c                                         |     261 -
 lib/libc/rpc/xdr_rec.c                                         |     631 -
 lib/libc/rpc/xdr_reference.c                                   |     151 -
 lib/libc/rpc/xdr_stdio.c                                       |     201 -
 lib/libc/shlib_version                                         |       5 -
 lib/libc/stdio/Makefile.inc                                    |      45 -
 lib/libc/stdio/asprintf.c                                      |      89 -
 lib/libc/stdio/clrerr.c                                        |      62 -
 lib/libc/stdio/fclose.3                                        |      97 -
 lib/libc/stdio/fclose.c                                        |      81 -
 lib/libc/stdio/fdopen.c                                        |     102 -
 lib/libc/stdio/feof.c                                          |      69 -
 lib/libc/stdio/ferror.3                                        |     108 -
 lib/libc/stdio/ferror.c                                        |      69 -
 lib/libc/stdio/fflush.3                                        |     114 -
 lib/libc/stdio/fflush.c                                        |     116 -
 lib/libc/stdio/fgetc.c                                         |      65 -
 lib/libc/stdio/fgetln.3                                        |     128 -
 lib/libc/stdio/fgetln.c                                        |     189 -
 lib/libc/stdio/fgetpos.c                                       |      61 -
 lib/libc/stdio/fgets.3                                         |     155 -
 lib/libc/stdio/fgets.c                                         |     121 -
 lib/libc/stdio/fileno.c                                        |      70 -
 lib/libc/stdio/findfp.c                                        |     186 -
 lib/libc/stdio/flags.c                                         |     101 -
 lib/libc/stdio/floatio.h                                       |      48 -
 lib/libc/stdio/fopen.3                                         |     247 -
 lib/libc/stdio/fopen.c                                         |      93 -
 lib/libc/stdio/fprintf.c                                       |      81 -
 lib/libc/stdio/fpurge.c                                        |      80 -
 lib/libc/stdio/fputc.c                                         |      66 -
 lib/libc/stdio/fputs.3                                         |     111 -
 lib/libc/stdio/fputs.c                                         |      79 -
 lib/libc/stdio/fread.3                                         |     110 -
 lib/libc/stdio/fread.c                                         |      98 -
 lib/libc/stdio/freopen.c                                       |     179 -
 lib/libc/stdio/fscanf.c                                        |      81 -
 lib/libc/stdio/fseek.3                                         |     199 -
 lib/libc/stdio/fseek.c                                         |     274 -
 lib/libc/stdio/fsetpos.c                                       |      64 -
 lib/libc/stdio/ftell.c                                         |     105 -
 lib/libc/stdio/funopen.3                                       |     179 -
 lib/libc/stdio/funopen.c                                       |      86 -
 lib/libc/stdio/fvwrite.c                                       |     226 -
 lib/libc/stdio/fvwrite.h                                       |      58 -
 lib/libc/stdio/fwalk.c                                         |      70 -
 lib/libc/stdio/fwrite.c                                        |      88 -
 lib/libc/stdio/getc.3                                          |     140 -
 lib/libc/stdio/getc.c                                          |      81 -
 lib/libc/stdio/getchar.c                                       |      73 -
 lib/libc/stdio/gets.c                                          |      80 -
 lib/libc/stdio/gettemp.c                                       |     160 -
 lib/libc/stdio/getw.c                                          |      61 -
 lib/libc/stdio/glue.h                                          |      49 -
 lib/libc/stdio/local.h                                         |      92 -
 lib/libc/stdio/makebuf.c                                       |     134 -
 lib/libc/stdio/mkdtemp.c                                       |      59 -
 lib/libc/stdio/mkstemp.c                                       |      61 -
 lib/libc/stdio/mktemp.3                                        |     186 -
 lib/libc/stdio/mktemp.c                                        |      73 -
 lib/libc/stdio/perror.3                                        |      85 -
 lib/libc/stdio/perror.c                                        |      72 -
 lib/libc/stdio/printf.3                                        |     653 -
 lib/libc/stdio/printf.c                                        |      78 -
 lib/libc/stdio/putc.3                                          |     133 -
 lib/libc/stdio/putc.c                                          |      83 -
 lib/libc/stdio/putchar.c                                       |      75 -
 lib/libc/stdio/puts.c                                          |      81 -
 lib/libc/stdio/putw.c                                          |      73 -
 lib/libc/stdio/refill.c                                        |     151 -
 lib/libc/stdio/remove.3                                        |      84 -
 lib/libc/stdio/remove.c                                        |      75 -
 lib/libc/stdio/rewind.c                                        |      64 -
 lib/libc/stdio/rget.c                                          |      70 -
 lib/libc/stdio/scanf.3                                         |     410 -
 lib/libc/stdio/scanf.c                                         |      79 -
 lib/libc/stdio/setbuf.3                                        |     206 -
 lib/libc/stdio/setbuf.c                                        |      63 -
 lib/libc/stdio/setbuffer.c                                     |      76 -
 lib/libc/stdio/setvbuf.c                                       |     177 -
 lib/libc/stdio/snprintf.c                                      |      95 -
 lib/libc/stdio/sprintf.c                                       |      88 -
 lib/libc/stdio/sscanf.c                                        |     104 -
 lib/libc/stdio/stdio.3                                         |     289 -
 lib/libc/stdio/stdio.c                                         |     129 -
 lib/libc/stdio/tempnam.c                                       |      99 -
 lib/libc/stdio/tmpfile.c                                       |      89 -
 lib/libc/stdio/tmpnam.3                                        |     242 -
 lib/libc/stdio/tmpnam.c                                        |      69 -
 lib/libc/stdio/ungetc.3                                        |      99 -
 lib/libc/stdio/ungetc.c                                        |     175 -
 lib/libc/stdio/vasprintf.c                                     |      74 -
 lib/libc/stdio/vfprintf.c                                      |     835 -
 lib/libc/stdio/vfscanf.c                                       |     777 -
 lib/libc/stdio/vprintf.c                                       |      61 -
 lib/libc/stdio/vscanf.c                                        |      61 -
 lib/libc/stdio/vsnprintf.c                                     |      79 -
 lib/libc/stdio/vsprintf.c                                      |      71 -
 lib/libc/stdio/vsscanf.c                                       |      84 -
 lib/libc/stdio/wbuf.c                                          |     102 -
 lib/libc/stdio/wsetup.c                                        |     103 -
 lib/libc/stdlib/Lint_abs.c                                     |      16 -
 lib/libc/stdlib/Lint_div.c                                     |      17 -
 lib/libc/stdlib/Lint_labs.c                                    |      16 -
 lib/libc/stdlib/Lint_ldiv.c                                    |      17 -
 lib/libc/stdlib/Makefile.inc                                   |      41 -
 lib/libc/stdlib/_rand48.c                                      |      52 -
 lib/libc/stdlib/_strtoq.c                                      |      49 -
 lib/libc/stdlib/_strtouq.c                                     |      49 -
 lib/libc/stdlib/a64l.3                                         |     137 -
 lib/libc/stdlib/a64l.c                                         |      46 -
 lib/libc/stdlib/abort.3                                        |      76 -
 lib/libc/stdlib/abort.c                                        |      88 -
 lib/libc/stdlib/abs.3                                          |      77 -
 lib/libc/stdlib/abs.c                                          |      52 -
 lib/libc/stdlib/alloca.3                                       |      82 -
 lib/libc/stdlib/atexit.3                                       |      81 -
 lib/libc/stdlib/atexit.c                                       |      87 -
 lib/libc/stdlib/atexit.h                                       |      56 -
 lib/libc/stdlib/atof.3                                         |      77 -
 lib/libc/stdlib/atof.c                                         |      55 -
 lib/libc/stdlib/atoi.3                                         |      77 -
 lib/libc/stdlib/atoi.c                                         |      55 -
 lib/libc/stdlib/atol.3                                         |      78 -
 lib/libc/stdlib/atol.c                                         |      55 -
 lib/libc/stdlib/bsearch.3                                      |      94 -
 lib/libc/stdlib/bsearch.c                                      |      95 -
 lib/libc/stdlib/calloc.c                                       |      59 -
 lib/libc/stdlib/div.3                                          |      73 -
 lib/libc/stdlib/div.c                                          |      86 -
 lib/libc/stdlib/drand48.c                                      |      27 -
 lib/libc/stdlib/erand48.c                                      |      36 -
 lib/libc/stdlib/exit.3                                         |      87 -
 lib/libc/stdlib/exit.c                                         |      70 -
 lib/libc/stdlib/getenv.3                                       |     159 -
 lib/libc/stdlib/getenv.c                                       |     105 -
 lib/libc/stdlib/getopt.3                                       |     263 -
 lib/libc/stdlib/getopt.c                                       |     137 -
 lib/libc/stdlib/getopt_long.3                                  |     419 -
 lib/libc/stdlib/getopt_long.c                                  |     236 -
 lib/libc/stdlib/getsubopt.3                                    |     150 -
 lib/libc/stdlib/getsubopt.c                                    |     112 -
 lib/libc/stdlib/heapsort.c                                     |     200 -
 lib/libc/stdlib/jrand48.c                                      |      34 -
 lib/libc/stdlib/l64a.c                                         |      67 -
 lib/libc/stdlib/labs.3                                         |      70 -
 lib/libc/stdlib/labs.c                                         |      52 -
 lib/libc/stdlib/lcong48.c                                      |      38 -
 lib/libc/stdlib/ldiv.3                                         |      75 -
 lib/libc/stdlib/ldiv.c                                         |      65 -
 lib/libc/stdlib/local.h                                        |      32 -
 lib/libc/stdlib/lrand48.c                                      |      29 -
 lib/libc/stdlib/malloc.3                                       |     460 -
 lib/libc/stdlib/malloc.c                                       |    1147 -
 lib/libc/stdlib/memory.3                                       |      74 -
 lib/libc/stdlib/merge.c                                        |     383 -
 lib/libc/stdlib/mrand48.c                                      |      28 -
 lib/libc/stdlib/multibyte.c                                    |     146 -
 lib/libc/stdlib/nrand48.c                                      |      34 -
 lib/libc/stdlib/putenv.c                                       |      75 -
 lib/libc/stdlib/qabs.3                                         |      65 -
 lib/libc/stdlib/qabs.c                                         |      57 -
 lib/libc/stdlib/qdiv.3                                         |      69 -
 lib/libc/stdlib/qdiv.c                                         |      70 -
 lib/libc/stdlib/qsort.3                                        |     239 -
 lib/libc/stdlib/qsort.c                                        |     189 -
 lib/libc/stdlib/radixsort.3                                    |     165 -
 lib/libc/stdlib/radixsort.c                                    |     352 -
 lib/libc/stdlib/rand.3                                         |     103 -
 lib/libc/stdlib/rand.c                                         |      62 -
 lib/libc/stdlib/rand48.3                                       |     163 -
 lib/libc/stdlib/rand48.h                                       |      35 -
 lib/libc/stdlib/rand_r.c                                       |      56 -
 lib/libc/stdlib/random.3                                       |     183 -
 lib/libc/stdlib/random.c                                       |     464 -
 lib/libc/stdlib/seed48.c                                       |      44 -
 lib/libc/stdlib/setenv.c                                       |     157 -
 lib/libc/stdlib/srand48.c                                      |      33 -
 lib/libc/stdlib/strtod.3                                       |     118 -
 lib/libc/stdlib/strtod.c                                       |    2553 -
 lib/libc/stdlib/strtol.3                                       |     173 -
 lib/libc/stdlib/strtol.c                                       |     162 -
 lib/libc/stdlib/strtoq.c                                       |     174 -
 lib/libc/stdlib/strtoul.3                                      |     168 -
 lib/libc/stdlib/strtoul.c                                      |     124 -
 lib/libc/stdlib/strtouq.c                                      |     136 -
 lib/libc/stdlib/system.3                                       |     102 -
 lib/libc/stdlib/system.c                                       |      89 -
 lib/libc/stdlib/tdelete.c                                      |      68 -
 lib/libc/stdlib/tfind.c                                        |      49 -
 lib/libc/stdlib/tsearch.3                                      |     117 -
 lib/libc/stdlib/tsearch.c                                      |      59 -
 lib/libc/stdlib/twalk.c                                        |      58 -
 lib/libc/string/Lint_bcmp.c                                    |      17 -
 lib/libc/string/Lint_bcopy.c                                   |      17 -
 lib/libc/string/Lint_bzero.c                                   |      16 -
 lib/libc/string/Lint_ffs.c                                     |      16 -
 lib/libc/string/Lint_index.c                                   |      17 -
 lib/libc/string/Lint_memccpy.c                                 |      19 -
 lib/libc/string/Lint_memchr.c                                  |      18 -
 lib/libc/string/Lint_memcmp.c                                  |      17 -
 lib/libc/string/Lint_memcpy.c                                  |      18 -
 lib/libc/string/Lint_memmove.c                                 |      18 -
 lib/libc/string/Lint_memset.c                                  |      18 -
 lib/libc/string/Lint_rindex.c                                  |      17 -
 lib/libc/string/Lint_strcat.c                                  |      17 -
 lib/libc/string/Lint_strchr.c                                  |      17 -
 lib/libc/string/Lint_strcmp.c                                  |      16 -
 lib/libc/string/Lint_strcpy.c                                  |      17 -
 lib/libc/string/Lint_strlen.c                                  |      16 -
 lib/libc/string/Lint_strncat.c                                 |      18 -
 lib/libc/string/Lint_strncmp.c                                 |      17 -
 lib/libc/string/Lint_strncpy.c                                 |      18 -
 lib/libc/string/Lint_strrchr.c                                 |      17 -
 lib/libc/string/Lint_swab.c                                    |      17 -
 lib/libc/string/Makefile.inc                                   |      53 -
 lib/libc/string/__strerror.c                                   |     101 -
 lib/libc/string/__strsignal.c                                  |      97 -
 lib/libc/string/bcmp.3                                         |      74 -
 lib/libc/string/bcmp.c                                         |      74 -
 lib/libc/string/bcopy.3                                        |      74 -
 lib/libc/string/bcopy.c                                        |     154 -
 lib/libc/string/bm.3                                           |     114 -
 lib/libc/string/bm.c                                           |     243 -
 lib/libc/string/bstring.3                                      |     112 -
 lib/libc/string/bzero.3                                        |      71 -
 lib/libc/string/bzero.c                                        |       4 -
 lib/libc/string/ffs.3                                          |      64 -
 lib/libc/string/ffs.c                                          |      65 -
 lib/libc/string/index.3                                        |      83 -
 lib/libc/string/index.c                                        |      72 -
 lib/libc/string/memccpy.3                                      |      76 -
 lib/libc/string/memccpy.c                                      |      69 -
 lib/libc/string/memchr.3                                       |      84 -
 lib/libc/string/memchr.c                                       |      74 -
 lib/libc/string/memcmp.3                                       |      85 -
 lib/libc/string/memcmp.c                                       |      76 -
 lib/libc/string/memcpy.3                                       |      86 -
 lib/libc/string/memcpy.c                                       |       4 -
 lib/libc/string/memmove.3                                      |      78 -
 lib/libc/string/memmove.c                                      |       4 -
 lib/libc/string/memset.3                                       |      75 -
 lib/libc/string/memset.c                                       |     148 -
 lib/libc/string/rindex.3                                       |      85 -
 lib/libc/string/rindex.c                                       |      74 -
 lib/libc/string/strcasecmp.3                                   |      97 -
 lib/libc/string/strcasecmp.c                                   |      96 -
 lib/libc/string/strcat.3                                       |      99 -
 lib/libc/string/strcat.c                                       |      69 -
 lib/libc/string/strchr.3                                       |      90 -
 lib/libc/string/strchr.c                                       |       4 -
 lib/libc/string/strcmp.3                                       |     103 -
 lib/libc/string/strcmp.c                                       |      72 -
 lib/libc/string/strcoll.3                                      |      77 -
 lib/libc/string/strcoll.c                                      |      64 -
 lib/libc/string/strcpy.3                                       |     126 -
 lib/libc/string/strcpy.c                                       |      66 -
 lib/libc/string/strcspn.3                                      |      87 -
 lib/libc/string/strcspn.c                                      |      78 -
 lib/libc/string/strdup.3                                       |      69 -
 lib/libc/string/strdup.c                                       |      70 -
 lib/libc/string/strerror.3                                     |      68 -
 lib/libc/string/strerror.c                                     |      63 -
 lib/libc/string/string.3                                       |     166 -
 lib/libc/string/strlcat.c                                      |      78 -
 lib/libc/string/strlcpy.3                                      |     148 -
 lib/libc/string/strlcpy.c                                      |      75 -
 lib/libc/string/strlen.3                                       |      73 -
 lib/libc/string/strlen.c                                       |      64 -
 lib/libc/string/strmode.3                                      |     160 -
 lib/libc/string/strmode.c                                      |     174 -
 lib/libc/string/strncat.c                                      |      79 -
 lib/libc/string/strncmp.c                                      |      73 -
 lib/libc/string/strncpy.c                                      |      85 -
 lib/libc/string/strpbrk.3                                      |      82 -
 lib/libc/string/strpbrk.c                                      |      68 -
 lib/libc/string/strrchr.3                                      |      93 -
 lib/libc/string/strrchr.c                                      |       4 -
 lib/libc/string/strsep.3                                       |     111 -
 lib/libc/string/strsep.c                                       |      95 -
 lib/libc/string/strsignal.3                                    |      63 -
 lib/libc/string/strsignal.c                                    |      62 -
 lib/libc/string/strspn.3                                       |      82 -
 lib/libc/string/strspn.c                                       |      71 -
 lib/libc/string/strstr.3                                       |      91 -
 lib/libc/string/strstr.c                                       |      76 -
 lib/libc/string/strtok.3                                       |     120 -
 lib/libc/string/strtok.c                                       |      99 -
 lib/libc/string/strtok_r.c                                     |     106 -
 lib/libc/string/strxfrm.3                                      |      71 -
 lib/libc/string/strxfrm.c                                      |      77 -
 lib/libc/string/swab.3                                         |      68 -
 lib/libc/string/swab.c                                         |      76 -
 lib/libc/sys/Lint_Ovfork.c                                     |      21 -
 lib/libc/sys/Lint___sigreturn14.c                              |      18 -
 lib/libc/sys/Lint___vfork14.c                                  |      15 -
 lib/libc/sys/Lint_brk.c                                        |      16 -
 lib/libc/sys/Lint_exect.c                                      |      18 -
 lib/libc/sys/Lint_fork.c                                       |      15 -
 lib/libc/sys/Lint_pipe.c                                       |      16 -
 lib/libc/sys/Lint_ptrace.c                                     |      19 -
 lib/libc/sys/Lint_sbrk.c                                       |      16 -
 lib/libc/sys/Lint_setlogin.c                                   |      16 -
 lib/libc/sys/Lint_syscall.c                                    |      26 -
 lib/libc/sys/Makefile.inc                                      |     240 -
 lib/libc/sys/_exit.2                                           |     113 -
 lib/libc/sys/accept.2                                          |     180 -
 lib/libc/sys/access.2                                          |     138 -
 lib/libc/sys/acct.2                                            |     119 -
 lib/libc/sys/adjtime.2                                         |     113 -
 lib/libc/sys/bind.2                                            |     164 -
 lib/libc/sys/brk.2                                             |     185 -
 lib/libc/sys/chdir.2                                           |     139 -
 lib/libc/sys/chflags.2                                         |     179 -
 lib/libc/sys/chmod.2                                           |     226 -
 lib/libc/sys/chown.2                                           |     217 -
 lib/libc/sys/chroot.2                                          |     107 -
 lib/libc/sys/clock_settime.2                                   |     157 -
 lib/libc/sys/close.2                                           |     134 -
 lib/libc/sys/connect.2                                         |     166 -
 lib/libc/sys/dup.2                                             |     134 -
 lib/libc/sys/execve.2                                          |     282 -
 lib/libc/sys/fcntl.2                                           |     501 -
 lib/libc/sys/fdatasync.2                                       |     101 -
 lib/libc/sys/fhopen.2                                          |     128 -
 lib/libc/sys/flock.2                                           |     155 -
 lib/libc/sys/fork.2                                            |     116 -
 lib/libc/sys/fsync.2                                           |      83 -
 lib/libc/sys/ftruncate.c                                       |      73 -
 lib/libc/sys/getdents.2                                        |     151 -
 lib/libc/sys/getdirentries.3                                   |     162 -
 lib/libc/sys/getdirentries.c                                   |      48 -
 lib/libc/sys/getfh.2                                           |      99 -
 lib/libc/sys/getfsstat.2                                       |     169 -
 lib/libc/sys/getgid.2                                          |      82 -
 lib/libc/sys/getgroups.2                                       |     102 -
 lib/libc/sys/getitimer.2                                       |     168 -
 lib/libc/sys/getlogin.2                                        |     134 -
 lib/libc/sys/getpeername.2                                     |      92 -
 lib/libc/sys/getpgrp.2                                         |     121 -
 lib/libc/sys/getpid.2                                          |      75 -
 lib/libc/sys/getpriority.2                                     |     145 -
 lib/libc/sys/getrlimit.2                                       |     187 -
 lib/libc/sys/getrusage.2                                       |     166 -
 lib/libc/sys/getsid.2                                          |      74 -
 lib/libc/sys/getsockname.2                                     |      92 -
 lib/libc/sys/getsockopt.2                                      |     371 -
 lib/libc/sys/gettimeofday.2                                    |     137 -
 lib/libc/sys/getuid.2                                          |      83 -
 lib/libc/sys/intro.2                                           |     714 -
 lib/libc/sys/ioctl.2                                           |     109 -
 lib/libc/sys/kill.2                                            |     133 -
 lib/libc/sys/ktrace.2                                          |     173 -
 lib/libc/sys/link.2                                            |     166 -
 lib/libc/sys/listen.2                                          |     103 -
 lib/libc/sys/lseek.2                                           |     137 -
 lib/libc/sys/lseek.c                                           |      66 -
 lib/libc/sys/madvise.2                                         |      77 -
 lib/libc/sys/makelintstub                                      |     212 -
 lib/libc/sys/mincore.2                                         |     100 -
 lib/libc/sys/minherit.2                                        |      67 -
 lib/libc/sys/mkdir.2                                           |     114 -
 lib/libc/sys/mkfifo.2                                          |     124 -
 lib/libc/sys/mknod.2                                           |     129 -
 lib/libc/sys/mlock.2                                           |     162 -
 lib/libc/sys/mlockall.2                                        |     137 -
 lib/libc/sys/mmap.2                                            |     249 -
 lib/libc/sys/mmap.c                                            |      78 -
 lib/libc/sys/mount.2                                           |     355 -
 lib/libc/sys/mprotect.2                                        |      64 -
 lib/libc/sys/msgctl.2                                          |     197 -
 lib/libc/sys/msgget.2                                          |     138 -
 lib/libc/sys/msgrcv.2                                          |     209 -
 lib/libc/sys/msgsnd.2                                          |     165 -
 lib/libc/sys/msync.2                                           |     132 -
 lib/libc/sys/msync.c                                           |      48 -
 lib/libc/sys/munmap.2                                          |      86 -
 lib/libc/sys/nanosleep.2                                       |      94 -
 lib/libc/sys/nfssvc.2                                          |     242 -
 lib/libc/sys/open.2                                            |     319 -
 lib/libc/sys/pathconf.2                                        |     180 -
 lib/libc/sys/pipe.2                                            |     119 -
 lib/libc/sys/poll.2                                            |     192 -
 lib/libc/sys/pread.c                                           |      71 -
 lib/libc/sys/preadv.c                                          |      67 -
 lib/libc/sys/profil.2                                          |     131 -
 lib/libc/sys/ptrace.2                                          |     409 -
 lib/libc/sys/pwrite.c                                          |      71 -
 lib/libc/sys/pwritev.c                                         |      67 -
 lib/libc/sys/quotactl.2                                        |     216 -
 lib/libc/sys/read.2                                            |     243 -
 lib/libc/sys/readlink.2                                        |      99 -
 lib/libc/sys/reboot.2                                          |     159 -
 lib/libc/sys/recv.2                                            |     284 -
 lib/libc/sys/rename.2                                          |     241 -
 lib/libc/sys/revoke.2                                          |     109 -
 lib/libc/sys/rmdir.2                                           |     114 -
 lib/libc/sys/select.2                                          |     193 -
 lib/libc/sys/semctl.2                                          |     234 -
 lib/libc/sys/semctl.c                                          |      55 -
 lib/libc/sys/semget.2                                          |     144 -
 lib/libc/sys/semop.2                                           |     162 -
 lib/libc/sys/send.2                                            |     188 -
 lib/libc/sys/setgroups.2                                       |      88 -
 lib/libc/sys/setpgid.2                                         |     104 -
 lib/libc/sys/setregid.2                                        |     142 -
 lib/libc/sys/setreuid.2                                        |     142 -
 lib/libc/sys/setsid.2                                          |      81 -
 lib/libc/sys/setuid.2                                          |     135 -
 lib/libc/sys/shmat.2                                           |     133 -
 lib/libc/sys/shmctl.2                                          |     182 -
 lib/libc/sys/shmget.2                                          |     140 -
 lib/libc/sys/shutdown.2                                        |      90 -
 lib/libc/sys/sigaction.2                                       |     351 -
 lib/libc/sys/sigaltstack.2                                     |     174 -
 lib/libc/sys/sigaltstack.c                                     |      69 -
 lib/libc/sys/sigpending.2                                      |      75 -
 lib/libc/sys/sigprocmask.2                                     |     122 -
 lib/libc/sys/sigreturn.2                                       |     100 -
 lib/libc/sys/sigstack.2                                        |      54 -
 lib/libc/sys/sigsuspend.2                                      |      82 -
 lib/libc/sys/socket.2                                          |     263 -
 lib/libc/sys/socketpair.2                                      |      96 -
 lib/libc/sys/stat.2                                            |     285 -
 lib/libc/sys/stat.c                                            |     120 -
 lib/libc/sys/statfs.2                                          |     182 -
 lib/libc/sys/swapctl.2                                         |     228 -
 lib/libc/sys/swapon.3                                          |     126 -
 lib/libc/sys/swapon.c                                          |      41 -
 lib/libc/sys/symlink.2                                         |     142 -
 lib/libc/sys/sync.2                                            |      76 -
 lib/libc/sys/sysarch.2                                         |      76 -
 lib/libc/sys/syscall.2                                         |      78 -
 lib/libc/sys/timer_create.c                                    |      16 -
 lib/libc/sys/timer_delete.c                                    |      14 -
 lib/libc/sys/timer_getoverrun.c                                |      14 -
 lib/libc/sys/timer_gettime.c                                   |      15 -
 lib/libc/sys/timer_settime.c                                   |      17 -
 lib/libc/sys/truncate.2                                        |     128 -
 lib/libc/sys/truncate.c                                        |      68 -
 lib/libc/sys/umask.2                                           |      88 -
 lib/libc/sys/undelete.2                                        |     108 -
 lib/libc/sys/unlink.2                                          |     124 -
 lib/libc/sys/utimes.2                                          |     185 -
 lib/libc/sys/vfork.2                                           |     134 -
 lib/libc/sys/wait.2                                            |     313 -
 lib/libc/sys/write.2                                           |     256 -
 lib/libc/termios/Makefile.inc                                  |      16 -
 lib/libc/termios/cfgetispeed.c                                 |      63 -
 lib/libc/termios/cfgetospeed.c                                 |      63 -
 lib/libc/termios/cfmakeraw.c                                   |      72 -
 lib/libc/termios/cfsetispeed.c                                 |      65 -
 lib/libc/termios/cfsetospeed.c                                 |      65 -
 lib/libc/termios/cfsetspeed.c                                  |      65 -
 lib/libc/termios/tcdrain.c                                     |      64 -
 lib/libc/termios/tcflow.c                                      |      84 -
 lib/libc/termios/tcflush.c                                     |      80 -
 lib/libc/termios/tcgetattr.c                                   |      67 -
 lib/libc/termios/tcgetpgrp.3                                   |      82 -
 lib/libc/termios/tcgetpgrp.c                                   |      70 -
 lib/libc/termios/tcgetsid.3                                    |      80 -
 lib/libc/termios/tcgetsid.c                                    |      70 -
 lib/libc/termios/tcsendbreak.3                                 |     158 -
 lib/libc/termios/tcsendbreak.c                                 |      74 -
 lib/libc/termios/tcsetattr.3                                   |     334 -
 lib/libc/termios/tcsetattr.c                                   |      83 -
 lib/libc/termios/tcsetpgrp.3                                   |     103 -
 lib/libc/termios/tcsetpgrp.c                                   |      73 -
 lib/libc/time/Arts.htm                                         |     176 -
 lib/libc/time/Makefile.inc                                     |      18 -
 lib/libc/time/README                                           |      66 -
 lib/libc/time/Theory                                           |     286 -
 lib/libc/time/WWW.htm                                          |      99 -
 lib/libc/time/asctime.c                                        |      89 -
 lib/libc/time/checktab.awk                                     |     154 -
 lib/libc/time/ctime.3                                          |     263 -
 lib/libc/time/difftime.c                                       |      84 -
 lib/libc/time/ialloc.c                                         |      89 -
 lib/libc/time/localtime.c                                      |    1776 -
 lib/libc/time/private.h                                        |     278 -
 lib/libc/time/scheck.c                                         |      66 -
 lib/libc/time/strftime.3                                       |     220 -
 lib/libc/time/strftime.c                                       |     420 -
 lib/libc/time/strptime.3                                       |     205 -
 lib/libc/time/strptime.c                                       |     394 -
 lib/libc/time/time2posix.3                                     |     121 -
 lib/libc/time/tzcode2netbsd                                    |      25 -
 lib/libc/time/tzfile.5                                         |     139 -
 lib/libc/time/tzfile.h                                         |     191 -
 lib/libc/time/tzselect.8                                       |      42 -
 lib/libc/time/tzselect.ksh                                     |     296 -
 lib/libc/time/tzset.3                                          |     237 -
 lib/libc/time/zdump.8                                          |      40 -
 lib/libc/time/zdump.c                                          |     379 -
 lib/libc/time/zic.8                                            |     414 -
 lib/libc/time/zic.c                                            |    2238 -
 lib/libc/yp/Makefile.inc                                       |      13 -
 lib/libc/yp/local.h                                            |      35 -
 lib/libc/yp/xdryp.c                                            |     578 -
 lib/libc/yp/yp_all.c                                           |      99 -
 lib/libc/yp/yp_first.c                                         |     211 -
 lib/libc/yp/yp_maplist.c                                       |      87 -
 lib/libc/yp/yp_master.c                                        |     108 -
 lib/libc/yp/yp_match.c                                         |     267 -
 lib/libc/yp/yp_order.c                                         |     104 -
 lib/libc/yp/ypclnt.3                                           |     407 -
 lib/libc/yp/yperr_string.c                                     |      94 -
 lib/libc/yp/yplib.c                                            |     356 -
 lib/libc/yp/ypprot_err.c                                       |      77 -
 lib/libcompat/4.1/ftime.3                                      |      93 -
 lib/libcompat/4.1/ftime.c                                      |      60 -
 lib/libcompat/4.1/gtty.c                                       |      55 -
 lib/libcompat/4.1/stty.3                                       |      97 -
 lib/libcompat/4.1/stty.c                                       |      55 -
 lib/libcompat/4.3/cfree.c                                      |      50 -
 lib/libcompat/4.3/insque.3                                     |      68 -
 lib/libcompat/4.3/insque.c                                     |      57 -
 lib/libcompat/4.3/lsearch.3                                    |     105 -
 lib/libcompat/4.3/lsearch.c                                    |     120 -
 lib/libcompat/4.3/re_comp.3                                    |     129 -
 lib/libcompat/4.3/regex.c                                      |     107 -
 lib/libcompat/4.3/remque.c                                     |      52 -
 lib/libcompat/4.3/rexec.3                                      |     127 -
 lib/libcompat/4.3/rexec.c                                      |     175 -
 lib/libcompat/4.3/ruserpass.c                                  |     307 -
 lib/libcompat/4.4/cuserid.3                                    |     137 -
 lib/libcompat/4.4/cuserid.c                                    |      66 -
 lib/libcompat/Makefile                                         |      51 -
 lib/libcompat/regexp/COPYRIGHT                                 |      24 -
 lib/libcompat/regexp/README                                    |      86 -
 lib/libcompat/regexp/regerror.c                                |      28 -
 lib/libcompat/regexp/regexp.3                                  |     325 -
 lib/libcompat/regexp/regexp.c                                  |    1327 -
 lib/libcompat/regexp/regmagic.h                                |       7 -
 lib/libcompat/regexp/regsub.c                                  |      87 -
 lib/libcrypt/Makefile                                          |      22 -
 lib/libcrypt/crypt.3                                           |     283 -
 lib/libcrypt/crypt.c                                           |     973 -
 lib/libcrypt/shlib_version                                     |       5 -
 lib/libcurses/EXAMPLES/ex1.c                                   |     114 -
 lib/libcurses/Makefile                                         |      28 -
 lib/libcurses/PSD.doc/Makefile                                 |      37 -
 lib/libcurses/PSD.doc/Master                                   |      56 -
 lib/libcurses/PSD.doc/appen.A                                  |      79 -
 lib/libcurses/PSD.doc/appen.B                                  |     203 -
 lib/libcurses/PSD.doc/appen.C                                  |     129 -
 lib/libcurses/PSD.doc/c_macros                                 |      72 -
 lib/libcurses/PSD.doc/doc.I                                    |     351 -
 lib/libcurses/PSD.doc/doc.II                                   |     144 -
 lib/libcurses/PSD.doc/doc.III                                  |     345 -
 lib/libcurses/PSD.doc/doc.IV                                   |     112 -
 lib/libcurses/PSD.doc/ex1.c                                    |     104 -
 lib/libcurses/PSD.doc/ex2.c                                    |     212 -
 lib/libcurses/PSD.doc/fns.doc                                  |     960 -
 lib/libcurses/PSD.doc/intro.0                                  |     108 -
 lib/libcurses/PSD.doc/intro.1                                  |     251 -
 lib/libcurses/PSD.doc/intro.2                                  |      78 -
 lib/libcurses/PSD.doc/intro.3                                  |     230 -
 lib/libcurses/PSD.doc/intro.4                                  |      71 -
 lib/libcurses/PSD.doc/intro.5                                  |      89 -
 lib/libcurses/PSD.doc/intro.6                                  |      46 -
 lib/libcurses/PSD.doc/life.c                                   |     165 -
 lib/libcurses/PSD.doc/macros                                   |     146 -
 lib/libcurses/PSD.doc/twinkle1.c                               |     159 -
 lib/libcurses/PSD.doc/twinkle2.c                               |      98 -
 lib/libcurses/PSD.doc/win_st.c                                 |      60 -
 lib/libcurses/addbytes.c                                       |     209 -
 lib/libcurses/addch.c                                          |      73 -
 lib/libcurses/addnstr.c                                        |      69 -
 lib/libcurses/attributes.c                                     |     292 -
 lib/libcurses/bell.c                                           |      70 -
 lib/libcurses/box.c                                            |      85 -
 lib/libcurses/clear.c                                          |      60 -
 lib/libcurses/clrtobot.c                                       |      85 -
 lib/libcurses/clrtoeol.c                                       |      85 -
 lib/libcurses/cr_put.c                                         |     438 -
 lib/libcurses/ctrace.c                                         |      85 -
 lib/libcurses/cur_hash.c                                       |      70 -
 lib/libcurses/curses.3                                         |     230 -
 lib/libcurses/curses.c                                         |      80 -
 lib/libcurses/curses.h                                         |     517 -
 lib/libcurses/delch.c                                          |      70 -
 lib/libcurses/deleteln.c                                       |      89 -
 lib/libcurses/delwin.c                                         |      87 -
 lib/libcurses/erase.c                                          |      83 -
 lib/libcurses/fullname.c                                       |      69 -
 lib/libcurses/getch.c                                          |     532 -
 lib/libcurses/getstr.c                                         |      64 -
 lib/libcurses/id_subwins.c                                     |      72 -
 lib/libcurses/idlok.c                                          |      61 -
 lib/libcurses/initscr.c                                        |     104 -
 lib/libcurses/insch.c                                          |      82 -
 lib/libcurses/insertln.c                                       |      92 -
 lib/libcurses/keypad.c                                         |      54 -
 lib/libcurses/longname.c                                       |      65 -
 lib/libcurses/move.c                                           |      69 -
 lib/libcurses/mvwin.c                                          |      84 -
 lib/libcurses/newwin.c                                         |     248 -
 lib/libcurses/nodelay.c                                        |      54 -
 lib/libcurses/notimeout.c                                      |      54 -
 lib/libcurses/overlay.c                                        |      89 -
 lib/libcurses/overwrite.c                                      |      83 -
 lib/libcurses/printw.c                                         |     203 -
 lib/libcurses/putchar.c                                        |      56 -
 lib/libcurses/refresh.c                                        |    1038 -
 lib/libcurses/scanw.c                                          |     179 -
 lib/libcurses/scroll.c                                         |      78 -
 lib/libcurses/setterm.c                                        |     242 -
 lib/libcurses/shlib_version                                    |       5 -
 lib/libcurses/standout.c                                       |      73 -
 lib/libcurses/timeout.c                                        |      46 -
 lib/libcurses/toucholap.c                                      |      83 -
 lib/libcurses/touchwin.c                                       |     125 -
 lib/libcurses/tscroll.c                                        |     146 -
 lib/libcurses/tstp.c                                           |     184 -
 lib/libcurses/tty.c                                            |     455 -
 lib/libcurses/unctrl.c                                         |     114 -
 lib/libcurses/unctrl.h                                         |      44 -
 lib/libcurses/underscore.c                                     |      65 -
 lib/libedit/Makefile                                           |      75 -
 lib/libedit/TEST/test.c                                        |     269 -
 lib/libedit/chared.c                                           |     647 -
 lib/libedit/chared.h                                           |     160 -
 lib/libedit/common.c                                           |    1001 -
 lib/libedit/editline.3                                         |     597 -
 lib/libedit/editrc.5                                           |     296 -
 lib/libedit/el.c                                               |     495 -
 lib/libedit/el.h                                               |     135 -
 lib/libedit/emacs.c                                            |     511 -
 lib/libedit/hist.c                                             |     177 -
 lib/libedit/hist.h                                             |      78 -
 lib/libedit/histedit.h                                         |     189 -
 lib/libedit/history.c                                          |     938 -
 lib/libedit/key.c                                              |     733 -
 lib/libedit/key.h                                              |      82 -
 lib/libedit/makelist                                           |     185 -
 lib/libedit/map.c                                              |    1420 -
 lib/libedit/map.h                                              |      80 -
 lib/libedit/parse.c                                            |     271 -
 lib/libedit/parse.h                                            |      52 -
 lib/libedit/prompt.c                                           |     145 -
 lib/libedit/prompt.h                                           |      62 -
 lib/libedit/read.c                                             |     523 -
 lib/libedit/readline.c                                         |    1467 -
 lib/libedit/readline.h                                         |     109 -
 lib/libedit/refresh.c                                          |    1020 -
 lib/libedit/refresh.h                                          |      62 -
 lib/libedit/search.c                                           |     639 -
 lib/libedit/search.h                                           |      70 -
 lib/libedit/shlib_version                                      |       5 -
 lib/libedit/sig.c                                              |     200 -
 lib/libedit/sig.h                                              |      72 -
 lib/libedit/sys.h                                              |     118 -
 lib/libedit/term.c                                             |    1472 -
 lib/libedit/term.h                                             |     120 -
 lib/libedit/tokenizer.c                                        |     392 -
 lib/libedit/tokenizer.h                                        |      55 -
 lib/libedit/tty.c                                              |    1163 -
 lib/libedit/tty.h                                              |     484 -
 lib/libedit/vi.c                                               |     994 -
 lib/libipsec/Makefile                                          |      17 -
 lib/libipsec/ipsec_policy.c                                    |     667 -
 lib/libipsec/ipsec_set_policy.3                                |     201 -
 lib/libipsec/ipsec_strerror.3                                  |      69 -
 lib/libipsec/ipsec_strerror.c                                  |      83 -
 lib/libipsec/ipsec_strerror.h                                  |      58 -
 lib/libipsec/pfkey.c                                           |    1275 -
 lib/libipsec/pfkey_dump.c                                      |     451 -
 lib/libipsec/shlib_version                                     |       5 -
 lib/libkvm/Makefile                                            |      34 -
 lib/libkvm/kvm.3                                               |     109 -
 lib/libkvm/kvm.c                                               |     942 -
 lib/libkvm/kvm_alpha.c                                         |     227 -
 lib/libkvm/kvm_arm32.c                                         |     100 -
 lib/libkvm/kvm_dump.3                                          |     112 -
 lib/libkvm/kvm_file.c                                          |     204 -
 lib/libkvm/kvm_geterr.3                                        |      84 -
 lib/libkvm/kvm_getfiles.3                                      |      92 -
 lib/libkvm/kvm_getloadavg.3                                    |      70 -
 lib/libkvm/kvm_getloadavg.c                                    |     113 -
 lib/libkvm/kvm_getprocs.3                                      |     166 -
 lib/libkvm/kvm_i386.c                                          |     204 -
 lib/libkvm/kvm_m68k.c                                          |     182 -
 lib/libkvm/kvm_m68k.h                                          |      55 -
 lib/libkvm/kvm_m68k_cmn.c                                      |     312 -
 lib/libkvm/kvm_mips.c                                          |     215 -
 lib/libkvm/kvm_nlist.3                                         |      98 -
 lib/libkvm/kvm_ns32k.c                                         |     183 -
 lib/libkvm/kvm_open.3                                          |     200 -
 lib/libkvm/kvm_powerpc.c                                       |      98 -
 lib/libkvm/kvm_private.h                                       |     105 -
 lib/libkvm/kvm_proc.c                                          |     763 -
 lib/libkvm/kvm_read.3                                          |      96 -
 lib/libkvm/kvm_sparc.c                                         |     410 -
 lib/libkvm/kvm_sparc64.c                                       |     216 -
 lib/libkvm/kvm_sun3.c                                          |     192 -
 lib/libkvm/kvm_sun3x.c                                         |     190 -
 lib/libkvm/kvm_vax.c                                           |     164 -
 lib/libkvm/shlib_version                                       |       5 -
 lib/libl/Makefile                                              |      14 -
 lib/libm/Makefile                                              |     205 -
 lib/libm/arch/alpha/s_copysign.S                               |      44 -
 lib/libm/arch/alpha/s_copysignf.S                              |      44 -
 lib/libm/arch/i387/e_acos.S                                    |      20 -
 lib/libm/arch/i387/e_asin.S                                    |      19 -
 lib/libm/arch/i387/e_atan2.S                                   |      14 -
 lib/libm/arch/i387/e_atan2f.S                                  |      14 -
 lib/libm/arch/i387/e_exp.S                                     |      38 -
 lib/libm/arch/i387/e_expf.S                                    |      24 -
 lib/libm/arch/i387/e_fmod.S                                    |      18 -
 lib/libm/arch/i387/e_log.S                                     |      14 -
 lib/libm/arch/i387/e_log10.S                                   |      14 -
 lib/libm/arch/i387/e_log10f.S                                  |      14 -
 lib/libm/arch/i387/e_logf.S                                    |      14 -
 lib/libm/arch/i387/e_remainder.S                               |      18 -
 lib/libm/arch/i387/e_remainderf.S                              |      18 -
 lib/libm/arch/i387/e_scalb.S                                   |      15 -
 lib/libm/arch/i387/e_scalbf.S                                  |      14 -
 lib/libm/arch/i387/e_sqrt.S                                    |      13 -
 lib/libm/arch/i387/e_sqrtf.S                                   |      13 -
 lib/libm/arch/i387/s_atan.S                                    |      14 -
 lib/libm/arch/i387/s_atanf.S                                   |      14 -
 lib/libm/arch/i387/s_ceil.S                                    |      28 -
 lib/libm/arch/i387/s_ceilf.S                                   |      28 -
 lib/libm/arch/i387/s_copysign.S                                |      18 -
 lib/libm/arch/i387/s_copysignf.S                               |      18 -
 lib/libm/arch/i387/s_cos.S                                     |      26 -
 lib/libm/arch/i387/s_cosf.S                                    |      14 -
 lib/libm/arch/i387/s_finite.S                                  |      16 -
 lib/libm/arch/i387/s_finitef.S                                 |      16 -
 lib/libm/arch/i387/s_floor.S                                   |      28 -
 lib/libm/arch/i387/s_floorf.S                                  |      28 -
 lib/libm/arch/i387/s_ilogb.S                                   |      23 -
 lib/libm/arch/i387/s_ilogbf.S                                  |      23 -
 lib/libm/arch/i387/s_log1p.S                                   |      22 -
 lib/libm/arch/i387/s_log1pf.S                                  |      22 -
 lib/libm/arch/i387/s_logb.S                                    |      14 -
 lib/libm/arch/i387/s_logbf.S                                   |      14 -
 lib/libm/arch/i387/s_rint.S                                    |      13 -
 lib/libm/arch/i387/s_rintf.S                                   |      13 -
 lib/libm/arch/i387/s_scalbn.S                                  |      15 -
 lib/libm/arch/i387/s_scalbnf.S                                 |      15 -
 lib/libm/arch/i387/s_significand.S                             |      14 -
 lib/libm/arch/i387/s_significandf.S                            |      14 -
 lib/libm/arch/i387/s_sin.S                                     |      26 -
 lib/libm/arch/i387/s_sinf.S                                    |      14 -
 lib/libm/arch/i387/s_tan.S                                     |      28 -
 lib/libm/arch/i387/s_tanf.S                                    |      15 -
 lib/libm/arch/m68060/Makefile                                  |      20 -
 lib/libm/arch/m68060/Makefile.list                             |      18 -
 lib/libm/arch/m68060/Readme.NetBSD                             |      29 -
 lib/libm/arch/m68060/e_acos.S                                  |       8 -
 lib/libm/arch/m68060/e_acosf.S                                 |       8 -
 lib/libm/arch/m68060/e_asin.S                                  |       8 -
 lib/libm/arch/m68060/e_asinf.S                                 |       8 -
 lib/libm/arch/m68060/e_atanh.S                                 |       8 -
 lib/libm/arch/m68060/e_atanhf.S                                |       8 -
 lib/libm/arch/m68060/e_cosh.S                                  |       8 -
 lib/libm/arch/m68060/e_coshf.S                                 |       8 -
 lib/libm/arch/m68060/e_exp.S                                   |       8 -
 lib/libm/arch/m68060/e_expf.S                                  |       8 -
 lib/libm/arch/m68060/e_log.S                                   |       8 -
 lib/libm/arch/m68060/e_log10.S                                 |       8 -
 lib/libm/arch/m68060/e_log10f.S                                |       8 -
 lib/libm/arch/m68060/e_logf.S                                  |       8 -
 lib/libm/arch/m68060/e_sinh.S                                  |       8 -
 lib/libm/arch/m68060/e_sinhf.S                                 |       8 -
 lib/libm/arch/m68060/e_sqrt.S                                  |       8 -
 lib/libm/arch/m68060/e_sqrtf.S                                 |       8 -
 lib/libm/arch/m68060/fplsp.hex                                 |    2047 -
 lib/libm/arch/m68060/fplsp_wrap.S                              |     421 -
 lib/libm/arch/m68060/k_tan.S                                   |       8 -
 lib/libm/arch/m68060/k_tanf.S                                  |       8 -
 lib/libm/arch/m68060/makeas.sh                                 |     181 -
 lib/libm/arch/m68060/makeoffs.awk                              |       9 -
 lib/libm/arch/m68060/s_atan.S                                  |       8 -
 lib/libm/arch/m68060/s_atanf.S                                 |       8 -
 lib/libm/arch/m68060/s_cos.S                                   |       8 -
 lib/libm/arch/m68060/s_cosf.S                                  |       8 -
 lib/libm/arch/m68060/s_expm1.S                                 |       8 -
 lib/libm/arch/m68060/s_expm1f.S                                |       8 -
 lib/libm/arch/m68060/s_log1p.S                                 |       8 -
 lib/libm/arch/m68060/s_log1pf.S                                |       8 -
 lib/libm/arch/m68060/s_logb.S                                  |       8 -
 lib/libm/arch/m68060/s_logbf.S                                 |       8 -
 lib/libm/arch/m68060/s_sin.S                                   |       8 -
 lib/libm/arch/m68060/s_sinf.S                                  |       8 -
 lib/libm/arch/m68060/s_tan.S                                   |       8 -
 lib/libm/arch/m68060/s_tanf.S                                  |       8 -
 lib/libm/arch/m68060/s_tanh.S                                  |       8 -
 lib/libm/arch/m68060/s_tanhf.S                                 |       8 -
 lib/libm/arch/m68k/s_ceil.S                                    |      65 -
 lib/libm/arch/m68k/s_copysign.S                                |      68 -
 lib/libm/arch/m68k/s_finite.S                                  |      55 -
 lib/libm/arch/m68k/s_floor.S                                   |      65 -
 lib/libm/arch/m68k/s_rint.S                                    |      54 -
 lib/libm/arch/mc68881/e_acos.S                                 |      52 -
 lib/libm/arch/mc68881/e_asin.S                                 |      52 -
 lib/libm/arch/mc68881/e_atanh.S                                |      52 -
 lib/libm/arch/mc68881/e_cosh.S                                 |      52 -
 lib/libm/arch/mc68881/e_exp.S                                  |      52 -
 lib/libm/arch/mc68881/e_fmod.S                                 |      18 -
 lib/libm/arch/mc68881/e_log.S                                  |      52 -
 lib/libm/arch/mc68881/e_log10.S                                |      52 -
 lib/libm/arch/mc68881/e_remainder.S                            |      18 -
 lib/libm/arch/mc68881/e_scalb.S                                |      19 -
 lib/libm/arch/mc68881/e_sinh.S                                 |      52 -
 lib/libm/arch/mc68881/e_sqrt.S                                 |      58 -
 lib/libm/arch/mc68881/s_atan.S                                 |      52 -
 lib/libm/arch/mc68881/s_cos.S                                  |      52 -
 lib/libm/arch/mc68881/s_expm1.S                                |      52 -
 lib/libm/arch/mc68881/s_log1p.S                                |      52 -
 lib/libm/arch/mc68881/s_logb.S                                 |      71 -
 lib/libm/arch/mc68881/s_scalbn.S                               |      55 -
 lib/libm/arch/mc68881/s_sin.S                                  |      52 -
 lib/libm/arch/mc68881/s_tan.S                                  |      52 -
 lib/libm/arch/mc68881/s_tanh.S                                 |      52 -
 lib/libm/arch/vax/n_argred.S                                   |     795 -
 lib/libm/arch/vax/n_atan2.S                                    |     220 -
 lib/libm/arch/vax/n_cabs.S                                     |     138 -
 lib/libm/arch/vax/n_cbrt.S                                     |     104 -
 lib/libm/arch/vax/n_infnan.S                                   |      63 -
 lib/libm/arch/vax/n_sincos.S                                   |     111 -
 lib/libm/arch/vax/n_sqrt.S                                     |     124 -
 lib/libm/arch/vax/n_support.S                                  |     230 -
 lib/libm/arch/vax/n_tan.S                                      |      96 -
 lib/libm/man/acos.3                                            |      87 -
 lib/libm/man/acosh.3                                           |      81 -
 lib/libm/man/asin.3                                            |      89 -
 lib/libm/man/asinh.3                                           |      79 -
 lib/libm/man/atan.3                                            |      81 -
 lib/libm/man/atan2.3                                           |     196 -
 lib/libm/man/atanh.3                                           |      81 -
 lib/libm/man/ceil.3                                            |      69 -
 lib/libm/man/cos.3                                             |      81 -
 lib/libm/man/cosh.3                                            |      85 -
 lib/libm/man/erf.3                                             |      91 -
 lib/libm/man/exp.3                                             |     313 -
 lib/libm/man/fabs.3                                            |      73 -
 lib/libm/man/floor.3                                           |      69 -
 lib/libm/man/fmod.3                                            |      83 -
 lib/libm/man/hypot.3                                           |     139 -
 lib/libm/man/ieee.3                                            |     172 -
 lib/libm/man/ieee_test.3                                       |     100 -
 lib/libm/man/isinff.3                                          |      80 -
 lib/libm/man/j0.3                                              |     157 -
 lib/libm/man/lgamma.3                                          |     128 -
 lib/libm/man/math.3                                            |     638 -
 lib/libm/man/rint.3                                            |      68 -
 lib/libm/man/sin.3                                             |      77 -
 lib/libm/man/sinh.3                                            |      80 -
 lib/libm/man/sqrt.3                                            |      95 -
 lib/libm/man/tan.3                                             |      81 -
 lib/libm/man/tanh.3                                            |      78 -
 lib/libm/noieee_src/mathimpl.h                                 |     100 -
 lib/libm/noieee_src/n_acosh.c                                  |     106 -
 lib/libm/noieee_src/n_asincos.c                                |     176 -
 lib/libm/noieee_src/n_asinh.c                                  |     104 -
 lib/libm/noieee_src/n_atan.c                                   |      91 -
 lib/libm/noieee_src/n_atan2.c                                  |     282 -
 lib/libm/noieee_src/n_atanh.c                                  |      86 -
 lib/libm/noieee_src/n_cabs.c                                   |     231 -
 lib/libm/noieee_src/n_cbrt.c                                   |     121 -
 lib/libm/noieee_src/n_cosh.c                                   |     137 -
 lib/libm/noieee_src/n_erf.c                                    |     402 -
 lib/libm/noieee_src/n_exp.c                                    |     206 -
 lib/libm/noieee_src/n_exp__E.c                                 |     139 -
 lib/libm/noieee_src/n_expm1.c                                  |     170 -
 lib/libm/noieee_src/n_floor.c                                  |     140 -
 lib/libm/noieee_src/n_fmod.c                                   |     159 -
 lib/libm/noieee_src/n_gamma.c                                  |     340 -
 lib/libm/noieee_src/n_j0.c                                     |     448 -
 lib/libm/noieee_src/n_j1.c                                     |     452 -
 lib/libm/noieee_src/n_jn.c                                     |     314 -
 lib/libm/noieee_src/n_lgamma.c                                 |     310 -
 lib/libm/noieee_src/n_log.c                                    |     490 -
 lib/libm/noieee_src/n_log10.c                                  |      98 -
 lib/libm/noieee_src/n_log1p.c                                  |     173 -
 lib/libm/noieee_src/n_log__L.c                                 |     113 -
 lib/libm/noieee_src/n_pow.c                                    |     221 -
 lib/libm/noieee_src/n_sincos.c                                 |     102 -
 lib/libm/noieee_src/n_sinh.c                                   |     124 -
 lib/libm/noieee_src/n_support.c                                |     525 -
 lib/libm/noieee_src/n_tan.c                                    |      78 -
 lib/libm/noieee_src/n_tanh.c                                   |     103 -
 lib/libm/noieee_src/trig.h                                     |     214 -
 lib/libm/shlib_version                                         |       5 -
 lib/libm/src/e_acos.c                                          |     112 -
 lib/libm/src/e_acosf.c                                         |      90 -
 lib/libm/src/e_acosh.c                                         |      70 -
 lib/libm/src/e_acoshf.c                                        |      58 -
 lib/libm/src/e_asin.c                                          |     123 -
 lib/libm/src/e_asinf.c                                         |      95 -
 lib/libm/src/e_atan2.c                                         |     131 -
 lib/libm/src/e_atan2f.c                                        |     106 -
 lib/libm/src/e_atanh.c                                         |      75 -
 lib/libm/src/e_atanhf.c                                        |      59 -
 lib/libm/src/e_cosh.c                                          |      94 -
 lib/libm/src/e_coshf.c                                         |      73 -
 lib/libm/src/e_exp.c                                           |     170 -
 lib/libm/src/e_expf.c                                          |     107 -
 lib/libm/src/e_fmod.c                                          |     141 -
 lib/libm/src/e_fmodf.c                                         |     114 -
 lib/libm/src/e_hypot.c                                         |     129 -
 lib/libm/src/e_hypotf.c                                        |      88 -
 lib/libm/src/e_j0.c                                            |     492 -
 lib/libm/src/e_j0f.c                                           |     449 -
 lib/libm/src/e_j1.c                                            |     491 -
 lib/libm/src/e_j1f.c                                           |     449 -
 lib/libm/src/e_jn.c                                            |     284 -
 lib/libm/src/e_jnf.c                                           |     213 -
 lib/libm/src/e_lgamma_r.c                                      |     314 -
 lib/libm/src/e_lgammaf_r.c                                     |     250 -
 lib/libm/src/e_log.c                                           |     148 -
 lib/libm/src/e_log10.c                                         |      99 -
 lib/libm/src/e_log10f.c                                        |      68 -
 lib/libm/src/e_logf.c                                          |      99 -
 lib/libm/src/e_pow.c                                           |     309 -
 lib/libm/src/e_powf.c                                          |     254 -
 lib/libm/src/e_rem_pio2.c                                      |     185 -
 lib/libm/src/e_rem_pio2f.c                                     |     197 -
 lib/libm/src/e_remainder.c                                     |      81 -
 lib/libm/src/e_remainderf.c                                    |      74 -
 lib/libm/src/e_scalb.c                                         |      56 -
 lib/libm/src/e_scalbf.c                                        |      53 -
 lib/libm/src/e_sinh.c                                          |      87 -
 lib/libm/src/e_sinhf.c                                         |      69 -
 lib/libm/src/e_sqrt.c                                          |     454 -
 lib/libm/src/e_sqrtf.c                                         |      98 -
 lib/libm/src/k_cos.c                                           |      97 -
 lib/libm/src/k_cosf.c                                          |      65 -
 lib/libm/src/k_rem_pio2.c                                      |     321 -
 lib/libm/src/k_rem_pio2f.c                                     |     214 -
 lib/libm/src/k_sin.c                                           |      80 -
 lib/libm/src/k_sinf.c                                          |      55 -
 lib/libm/src/k_standard.c                                      |     783 -
 lib/libm/src/k_tan.c                                           |     132 -
 lib/libm/src/k_tanf.c                                          |     102 -
 lib/libm/src/math_private.h                                    |     226 -
 lib/libm/src/s_asinh.c                                         |      66 -
 lib/libm/src/s_asinhf.c                                        |      58 -
 lib/libm/src/s_atan.c                                          |     140 -
 lib/libm/src/s_atanf.c                                         |     120 -
 lib/libm/src/s_cbrt.c                                          |      94 -
 lib/libm/src/s_cbrtf.c                                         |      84 -
 lib/libm/src/s_ceil.c                                          |      81 -
 lib/libm/src/s_ceilf.c                                         |      62 -
 lib/libm/src/s_copysign.c                                      |      39 -
 lib/libm/src/s_copysignf.c                                     |      42 -
 lib/libm/src/s_cos.c                                           |      83 -
 lib/libm/src/s_cosf.c                                          |      60 -
 lib/libm/src/s_erf.c                                           |     315 -
 lib/libm/src/s_erff.c                                          |     224 -
 lib/libm/src/s_expm1.c                                         |     231 -
 lib/libm/src/s_expm1f.c                                        |     136 -
 lib/libm/src/s_fabs.c                                          |      36 -
 lib/libm/src/s_fabsf.c                                         |      39 -
 lib/libm/src/s_finite.c                                        |      36 -
 lib/libm/src/s_finitef.c                                       |      39 -
 lib/libm/src/s_floor.c                                         |      82 -
 lib/libm/src/s_floorf.c                                        |      71 -
 lib/libm/src/s_frexp.c                                         |      60 -
 lib/libm/src/s_frexpf.c                                        |      53 -
 lib/libm/src/s_ilogb.c                                         |      52 -
 lib/libm/src/s_ilogbf.c                                        |      44 -
 lib/libm/src/s_infinity.c                                      |      14 -
 lib/libm/src/s_isinf.c                                         |      32 -
 lib/libm/src/s_isinff.c                                        |      31 -
 lib/libm/src/s_isnan.c                                         |      39 -
 lib/libm/src/s_isnanf.c                                        |      41 -
 lib/libm/src/s_ldexp.c                                         |      33 -
 lib/libm/src/s_ldexpf.c                                        |      36 -
 lib/libm/src/s_lib_version.c                                   |      40 -
 lib/libm/src/s_log1p.c                                         |     177 -
 lib/libm/src/s_log1pf.c                                        |     116 -
 lib/libm/src/s_logb.c                                          |      43 -
 lib/libm/src/s_logbf.c                                         |      40 -
 lib/libm/src/s_matherr.c                                       |      31 -
 lib/libm/src/s_modf.c                                          |      84 -
 lib/libm/src/s_modff.c                                         |      65 -
 lib/libm/src/s_nextafter.c                                     |      80 -
 lib/libm/src/s_nextafterf.c                                    |      71 -
 lib/libm/src/s_rint.c                                          |      87 -
 lib/libm/src/s_rintf.c                                         |      72 -
 lib/libm/src/s_scalbn.c                                        |      68 -
 lib/libm/src/s_scalbnf.c                                       |      64 -
 lib/libm/src/s_signgam.c                                       |       5 -
 lib/libm/src/s_significand.c                                   |      35 -
 lib/libm/src/s_significandf.c                                  |      32 -
 lib/libm/src/s_sin.c                                           |      83 -
 lib/libm/src/s_sinf.c                                          |      54 -
 lib/libm/src/s_tan.c                                           |      77 -
 lib/libm/src/s_tanf.c                                          |      49 -
 lib/libm/src/s_tanh.c                                          |      87 -
 lib/libm/src/s_tanhf.c                                         |      65 -
 lib/libm/src/w_acos.c                                          |      44 -
 lib/libm/src/w_acosf.c                                         |      48 -
 lib/libm/src/w_acosh.c                                         |      43 -
 lib/libm/src/w_acoshf.c                                        |      48 -
 lib/libm/src/w_asin.c                                          |      45 -
 lib/libm/src/w_asinf.c                                         |      49 -
 lib/libm/src/w_atan2.c                                         |      44 -
 lib/libm/src/w_atan2f.c                                        |      48 -
 lib/libm/src/w_atanh.c                                         |      48 -
 lib/libm/src/w_atanhf.c                                        |      53 -
 lib/libm/src/w_cabs.c                                          |      27 -
 lib/libm/src/w_cabsf.c                                         |      27 -
 lib/libm/src/w_cosh.c                                          |      43 -
 lib/libm/src/w_coshf.c                                         |      47 -
 lib/libm/src/w_drem.c                                          |      20 -
 lib/libm/src/w_dremf.c                                         |      21 -
 lib/libm/src/w_exp.c                                           |      54 -
 lib/libm/src/w_expf.c                                          |      59 -
 lib/libm/src/w_fmod.c                                          |      44 -
 lib/libm/src/w_fmodf.c                                         |      48 -
 lib/libm/src/w_gamma.c                                         |      50 -
 lib/libm/src/w_gamma_r.c                                       |      49 -
 lib/libm/src/w_gammaf.c                                        |      49 -
 lib/libm/src/w_gammaf_r.c                                      |      54 -
 lib/libm/src/w_hypot.c                                         |      44 -
 lib/libm/src/w_hypotf.c                                        |      48 -
 lib/libm/src/w_j0.c                                            |      70 -
 lib/libm/src/w_j0f.c                                           |      75 -
 lib/libm/src/w_j1.c                                            |      71 -
 lib/libm/src/w_j1f.c                                           |      76 -
 lib/libm/src/w_jn.c                                            |      93 -
 lib/libm/src/w_jnf.c                                           |      72 -
 lib/libm/src/w_lgamma.c                                        |      50 -
 lib/libm/src/w_lgamma_r.c                                      |      49 -
 lib/libm/src/w_lgammaf.c                                       |      49 -
 lib/libm/src/w_lgammaf_r.c                                     |      54 -
 lib/libm/src/w_log.c                                           |      44 -
 lib/libm/src/w_log10.c                                         |      47 -
 lib/libm/src/w_log10f.c                                        |      52 -
 lib/libm/src/w_logf.c                                          |      49 -
 lib/libm/src/w_pow.c                                           |      66 -
 lib/libm/src/w_powf.c                                          |      73 -
 lib/libm/src/w_remainder.c                                     |      43 -
 lib/libm/src/w_remainderf.c                                    |      47 -
 lib/libm/src/w_scalb.c                                         |      61 -
 lib/libm/src/w_scalbf.c                                        |      66 -
 lib/libm/src/w_sinh.c                                          |      43 -
 lib/libm/src/w_sinhf.c                                         |      47 -
 lib/libm/src/w_sqrt.c                                          |      43 -
 lib/libm/src/w_sqrtf.c                                         |      47 -
 lib/libntp/COPYRIGHT                                           |     127 -
 lib/libntp/Makefile                                            |      26 -
 lib/libntp/a_md512crypt.c                                      |     103 -
 lib/libntp/a_md5decrypt.c                                      |      73 -
 lib/libntp/a_md5encrypt.c                                      |      86 -
 lib/libntp/adjtime.c                                           |     152 -
 lib/libntp/atoint.c                                            |      51 -
 lib/libntp/atolfp.c                                            |     119 -
 lib/libntp/atouint.c                                           |      36 -
 lib/libntp/auth12crypt.c                                       |     127 -
 lib/libntp/authdecrypt.c                                       |      84 -
 lib/libntp/authdes.c                                           |      43 -
 lib/libntp/authencrypt.c                                       |      90 -
 lib/libntp/authkeys.c                                          |     613 -
 lib/libntp/authparity.c                                        |      60 -
 lib/libntp/authreadkeys.c                                      |     198 -
 lib/libntp/authusekey.c                                        |     136 -
 lib/libntp/buftvtots.c                                         |      63 -
 lib/libntp/caljulian.c                                         |     116 -
 lib/libntp/calleapwhen.c                                       |      63 -
 lib/libntp/caltontp.c                                          |      43 -
 lib/libntp/calyearstart.c                                      |      64 -
 lib/libntp/clocktime.c                                         |     133 -
 lib/libntp/clocktypes.c                                        |      93 -
 lib/libntp/decodenetnum.c                                      |      60 -
 lib/libntp/dofptoa.c                                           |     119 -
 lib/libntp/dolfptoa.c                                          |     163 -
 lib/libntp/emalloc.c                                           |      22 -
 lib/libntp/findconfig.c                                        |      73 -
 lib/libntp/fptoa.c                                             |      26 -
 lib/libntp/fptoms.c                                            |      25 -
 lib/libntp/getopt.c                                            |     109 -
 lib/libntp/hextoint.c                                          |      40 -
 lib/libntp/hextolfp.c                                          |      68 -
 lib/libntp/humandate.c                                         |      67 -
 lib/libntp/inttoa.c                                            |      21 -
 lib/libntp/lib_strbuf.c                                        |      28 -
 lib/libntp/lib_strbuf.h                                        |      31 -
 lib/libntp/machines.c                                          |     256 -
 lib/libntp/memmove.c                                           |     137 -
 lib/libntp/mexit.c                                             |      35 -
 lib/libntp/mfptoa.c                                            |      24 -
 lib/libntp/mfptoms.c                                           |      24 -
 lib/libntp/modetoa.c                                           |      35 -
 lib/libntp/mstolfp.c                                           |     101 -
 lib/libntp/msutotsf.c                                          |      37 -
 lib/libntp/msyslog.c                                           |     196 -
 lib/libntp/netof.c                                             |      26 -
 lib/libntp/numtoa.c                                            |      25 -
 lib/libntp/numtohost.c                                         |      40 -
 lib/libntp/octtoint.c                                          |      36 -
 lib/libntp/prettydate.c                                        |      46 -
 lib/libntp/ranny.c                                             |      83 -
 lib/libntp/refnumtoa.c                                         |      32 -
 lib/libntp/shlib_version                                       |       5 -
 lib/libntp/statestr.c                                          |     262 -
 lib/libntp/syssignal.c                                         |     104 -
 lib/libntp/systime.c                                           |     580 -
 lib/libntp/tsftomsu.c                                          |      39 -
 lib/libntp/tstotv.c                                            |     137 -
 lib/libntp/tvtoa.c                                             |      39 -
 lib/libntp/tvtots.c                                            |     161 -
 lib/libntp/uglydate.c                                          |      51 -
 lib/libntp/uinttoa.c                                           |      21 -
 lib/libntp/utvtoa.c                                            |      27 -
 lib/libntp/version.c                                           |       6 -
 lib/libossaudio/Makefile                                       |      14 -
 lib/libossaudio/ossaudio.3                                     |      79 -
 lib/libossaudio/ossaudio.c                                     |     696 -
 lib/libossaudio/shlib_version                                  |       5 -
 lib/libossaudio/soundcard.h                                    |     304 -
 lib/libpcap/CHANGES                                            |     257 -
 lib/libpcap/Makefile                                           |      28 -
 lib/libpcap/README                                             |      50 -
 lib/libpcap/bpf_image.c                                        |     295 -
 lib/libpcap/etherent.c                                         |     166 -
 lib/libpcap/ethertype.h                                        |      78 -
 lib/libpcap/gencode.c                                          |    2830 -
 lib/libpcap/gencode.h                                          |     201 -
 lib/libpcap/gnuc.h                                             |      45 -
 lib/libpcap/grammar.y                                          |     317 -
 lib/libpcap/inet.c                                             |     230 -
 lib/libpcap/nametoaddr.c                                       |     414 -
 lib/libpcap/optimize.c                                         |    2095 -
 lib/libpcap/pcap-bpf.c                                         |     282 -
 lib/libpcap/pcap-int.h                                         |     120 -
 lib/libpcap/pcap-namedb.h                                      |      81 -
 lib/libpcap/pcap.3                                             |     330 -
 lib/libpcap/pcap.c                                             |     206 -
 lib/libpcap/pcap.h                                             |     140 -
 lib/libpcap/pcap2netbsd                                        |     285 -
 lib/libpcap/ppp.h                                              |      54 -
 lib/libpcap/savefile.c                                         |     363 -
 lib/libpcap/scanner.l                                          |     238 -
 lib/libpcap/shlib_version                                      |       5 -
 lib/libpcap/version.c                                          |       2 -
 lib/libposix/Makefile                                          |      20 -
 lib/libposix/shlib_version                                     |       5 -
 lib/libposix/sys/Makefile.inc                                  |      49 -
 lib/libresolv/Makefile                                         |      12 -
 lib/libresolv/shlib_version                                    |       5 -
 lib/librmt/Makefile                                            |      10 -
 lib/librmt/README                                              |      20 -
 lib/librmt/pathnames.h                                         |      32 -
 lib/librmt/rmtlib.c                                            |    1058 -
 lib/librmt/rmtops.3                                            |     220 -
 lib/librpcsvc/Makefile                                         |      28 -
 lib/librpcsvc/bootparam_prot.x                                 |     102 -
 lib/librpcsvc/klm_prot.x                                       |     139 -
 lib/librpcsvc/mount.x                                          |     166 -
 lib/librpcsvc/nfs_prot.x                                       |     358 -
 lib/librpcsvc/nlm_prot.x                                       |     183 -
 lib/librpcsvc/rex.x                                            |     235 -
 lib/librpcsvc/rnusers.x                                        |     202 -
 lib/librpcsvc/rquota.x                                         |      67 -
 lib/librpcsvc/rstat.x                                          |     151 -
 lib/librpcsvc/rusers.x                                         |      92 -
 lib/librpcsvc/rwall.x                                          |      47 -
 lib/librpcsvc/sm_inter.x                                       |     127 -
 lib/librpcsvc/spray.x                                          |     104 -
 lib/librpcsvc/yp.x                                             |     297 -
 lib/librpcsvc/yppasswd.x                                       |      67 -
 lib/libskey/Makefile                                           |       8 -
 lib/libskey/put.c                                              |    2323 -
 lib/libskey/shlib_version                                      |       5 -
 lib/libskey/skey.h                                             |      77 -
 lib/libskey/skeylogin.c                                        |     369 -
 lib/libskey/skeysubr.c                                         |     288 -
 lib/libtelnet/Makefile                                         |      15 -
 lib/libtelnet/auth-proto.h                                     |     105 -
 lib/libtelnet/auth.c                                           |     660 -
 lib/libtelnet/auth.h                                           |      84 -
 lib/libtelnet/encrypt.c                                        |      64 -
 lib/libtelnet/encrypt.h                                        |      57 -
 lib/libtelnet/genget.c                                         |     112 -
 lib/libtelnet/getent.c                                         |      82 -
 lib/libtelnet/misc-proto.h                                     |      76 -
 lib/libtelnet/misc.c                                           |      99 -
 lib/libtelnet/misc.h                                           |      50 -
 lib/libtelnet/shlib_version                                    |       5 -
 lib/libterm/Makefile                                           |      46 -
 lib/libterm/TEST/tc1.c                                         |      65 -
 lib/libterm/TEST/tc2.c                                         |      92 -
 lib/libterm/TEST/tc3.c                                         |     114 -
 lib/libterm/pathnames.h                                        |      38 -
 lib/libterm/shlib_version                                      |       5 -
 lib/libterm/termcap.3                                          |     410 -
 lib/libterm/termcap.c                                          |     357 -
 lib/libterm/termcap.h                                          |      74 -
 lib/libterm/tgoto.c                                            |     298 -
 lib/libterm/tputs.c                                            |     216 -
 lib/libusb/Makefile                                            |      26 -
 lib/libusb/data.c                                              |      90 -
 lib/libusb/descr.c                                             |      71 -
 lib/libusb/parse.c                                             |     399 -
 lib/libusb/shlib_version                                       |       5 -
 lib/libusb/usage.c                                             |     194 -
 lib/libusb/usb.3                                               |     188 -
 lib/libusb/usb.h                                               |      92 -
 lib/libusb/usb_hid_usages                                      |    1077 -
 lib/libusb/usbvar.h                                            |      33 -
 lib/libutil/Makefile                                           |      29 -
 lib/libutil/fparseln.3                                         |     153 -
 lib/libutil/fparseln.c                                         |     230 -
 lib/libutil/getmaxpartitions.3                                 |      60 -
 lib/libutil/getmaxpartitions.c                                 |      61 -
 lib/libutil/getrawpartition.3                                  |      71 -
 lib/libutil/getrawpartition.c                                  |      61 -
 lib/libutil/login.3                                            |     111 -
 lib/libutil/login.c                                            |      75 -
 lib/libutil/login_tty.c                                        |      69 -
 lib/libutil/logout.c                                           |      83 -
 lib/libutil/logwtmp.c                                          |      80 -
 lib/libutil/opendisk.3                                         |     173 -
 lib/libutil/opendisk.c                                         |     101 -
 lib/libutil/openpty.3                                          |     166 -
 lib/libutil/passwd.c                                           |     358 -
 lib/libutil/pidfile.3                                          |      75 -
 lib/libutil/pidfile.c                                          |      89 -
 lib/libutil/pidlock.3                                          |     171 -
 lib/libutil/pidlock.c                                          |     250 -
 lib/libutil/pty.c                                              |     158 -
 lib/libutil/pw_init.3                                          |     199 -
 lib/libutil/pw_lock.3                                          |     109 -
 lib/libutil/shlib_version                                      |       5 -
 lib/libutil/ttyaction.3                                        |     112 -
 lib/libutil/ttyaction.c                                        |     162 -
 lib/libutil/ttymsg.3                                           |      67 -
 lib/libutil/ttymsg.c                                           |     181 -
 lib/libwrap/DISCLAIMER                                         |      17 -
 lib/libwrap/Makefile                                           |      20 -
 lib/libwrap/Makefile.cflags                                    |      17 -
 lib/libwrap/clean_exit.c                                       |      49 -
 lib/libwrap/diag.c                                             |      78 -
 lib/libwrap/eval.c                                             |     143 -
 lib/libwrap/fix_options.c                                      |     135 -
 lib/libwrap/hosts_access.3                                     |      95 -
 lib/libwrap/hosts_access.5                                     |     393 -
 lib/libwrap/hosts_access.c                                     |     479 -
 lib/libwrap/hosts_ctl.c                                        |      45 -
 lib/libwrap/hosts_options.5                                    |     175 -
 lib/libwrap/libwrap2netbsd                                     |      62 -
 lib/libwrap/misc.c                                             |     108 -
 lib/libwrap/mystdarg.h                                         |      18 -
 lib/libwrap/options.c                                          |     655 -
 lib/libwrap/percent_x.c                                        |      93 -
 lib/libwrap/refuse.c                                           |      39 -
 lib/libwrap/rfc931.c                                           |     241 -
 lib/libwrap/shell_cmd.c                                        |     101 -
 lib/libwrap/shlib_version                                      |       5 -
 lib/libwrap/socket.c                                           |     287 -
 lib/libwrap/tcpd.h                                             |     243 -
 lib/libwrap/update.c                                           |     129 -
 lib/libwrap/workarounds.c                                      |     315 -
 lib/liby/Makefile                                              |       8 -
 lib/liby/main.c                                                |      54 -
 lib/liby/yyerror.c                                             |      57 -
 lib/libz/ChangeLog                                             |     472 -
 lib/libz/Makefile                                              |      25 -
 lib/libz/README                                                |     150 -
 lib/libz/adler32.c                                             |      50 -
 lib/libz/algorithm.doc                                         |     215 -
 lib/libz/compress.c                                            |      70 -
 lib/libz/crc32.c                                               |     164 -
 lib/libz/deflate.c                                             |    1352 -
 lib/libz/deflate.h                                             |     320 -
 lib/libz/example.c                                             |     558 -
 lib/libz/gzio.c                                                |     877 -
 lib/libz/infblock.c                                            |     400 -
 lib/libz/infblock.h                                            |      41 -
 lib/libz/infcodes.c                                            |     259 -
 lib/libz/infcodes.h                                            |      29 -
 lib/libz/inffast.c                                             |     172 -
 lib/libz/inffast.h                                             |      19 -
 lib/libz/inffixed.h                                            |     153 -
 lib/libz/inflate.c                                             |     368 -
 lib/libz/inftrees.c                                            |     457 -
 lib/libz/inftrees.h                                            |      60 -
 lib/libz/infutil.c                                             |      89 -
 lib/libz/infutil.h                                             |     100 -
 lib/libz/minigzip.c                                            |     329 -
 lib/libz/shlib_version                                         |       5 -
 lib/libz/trees.c                                               |    1216 -
 lib/libz/trees.h                                               |     130 -
 lib/libz/uncompr.c                                             |      60 -
 lib/libz/zconf.h                                               |     286 -
 lib/libz/zlib.h                                                |     895 -
 lib/libz/zutil.c                                               |     229 -
 lib/libz/zutil.h                                               |     229 -
 libexec/Makefile                                               |      16 -
 libexec/Makefile.inc                                           |       5 -
 libexec/atrun/Makefile                                         |       9 -
 libexec/atrun/atrun.8                                          |      70 -
 libexec/atrun/atrun.c                                          |     520 -
 libexec/atrun/atrun.h                                          |      37 -
 libexec/comsat/Makefile                                        |       7 -
 libexec/comsat/comsat.8                                        |     115 -
 libexec/comsat/comsat.c                                        |     313 -
 libexec/cron/INSTALL                                           |      87 -
 libexec/fingerd/Makefile                                       |       9 -
 libexec/fingerd/fingerd.8                                      |     183 -
 libexec/fingerd/fingerd.c                                      |     241 -
 libexec/fingerd/pathnames.h                                    |      38 -
 libexec/ftpd/Makefile                                          |      32 -
 libexec/ftpd/conf.c                                            |     493 -
 libexec/ftpd/extern.h                                          |     180 -
 libexec/ftpd/ftpcmd.y                                          |    1844 -
 libexec/ftpd/ftpd.8                                            |     694 -
 libexec/ftpd/ftpd.c                                            |    2436 -
 libexec/ftpd/logwtmp.c                                         |      90 -
 libexec/ftpd/pathnames.h                                       |      47 -
 libexec/ftpd/popen.c                                           |     241 -
 libexec/getNAME/Makefile                                       |       7 -
 libexec/getNAME/getNAME.8                                      |      94 -
 libexec/getNAME/getNAME.c                                      |     538 -
 libexec/getty/Makefile                                         |      12 -
 libexec/getty/extern.h                                         |      56 -
 libexec/getty/getty.8                                          |     181 -
 libexec/getty/gettytab.5                                       |     411 -
 libexec/getty/gettytab.h                                       |     173 -
 libexec/getty/init.c                                           |     142 -
 libexec/getty/main.c                                           |     660 -
 libexec/getty/pathnames.h                                      |      41 -
 libexec/getty/subr.c                                           |     735 -
 libexec/getty/ttys.5                                           |     177 -
 libexec/identd/CREDITS                                         |      94 -
 libexec/identd/Makefile                                        |      15 -
 libexec/identd/README                                          |      91 -
 libexec/identd/config.c                                        |      89 -
 libexec/identd/error.h                                         |      44 -
 libexec/identd/identd.8                                        |     410 -
 libexec/identd/identd.c                                        |     823 -
 libexec/identd/identd.h                                        |      62 -
 libexec/identd/netbsd.c                                        |     259 -
 libexec/identd/parse.c                                         |     722 -
 libexec/identd/paths.h                                         |      82 -
 libexec/identd/pidentd2netbsd                                  |     679 -
 libexec/identd/proxy.c                                         |     112 -
 libexec/identd/version.c                                       |       3 -
 libexec/ld.aout_so/Makefile                                    |      36 -
 libexec/ld.aout_so/arch/arm32/md-static-funcs.c                |      71 -
 libexec/ld.aout_so/arch/arm32/md.c                             |     486 -
 libexec/ld.aout_so/arch/arm32/md.h                             |     262 -
 libexec/ld.aout_so/arch/arm32/mdprologue.S                     |      92 -
 libexec/ld.aout_so/arch/i386/md-static-funcs.c                 |      17 -
 libexec/ld.aout_so/arch/i386/md.c                              |     371 -
 libexec/ld.aout_so/arch/i386/md.h                              |     233 -
 libexec/ld.aout_so/arch/i386/mdprologue.S                      |      99 -
 libexec/ld.aout_so/arch/m68k/md-static-funcs.c                 |      18 -
 libexec/ld.aout_so/arch/m68k/md.c                              |     384 -
 libexec/ld.aout_so/arch/m68k/md.h                              |     175 -
 libexec/ld.aout_so/arch/m68k/mdprologue.S                      |      81 -
 libexec/ld.aout_so/arch/ns32k/md-static-funcs.c                |      38 -
 libexec/ld.aout_so/arch/ns32k/md.c                             |     536 -
 libexec/ld.aout_so/arch/ns32k/md.h                             |     145 -
 libexec/ld.aout_so/arch/ns32k/mdprologue.S                     |     131 -
 libexec/ld.aout_so/arch/powerpc/md-static-funcs.c              |      17 -
 libexec/ld.aout_so/arch/powerpc/md.c                           |     297 -
 libexec/ld.aout_so/arch/powerpc/md.h                           |     225 -
 libexec/ld.aout_so/arch/powerpc/mdprologue.S                   |      21 -
 libexec/ld.aout_so/arch/sparc/md-static-funcs.c                |      38 -
 libexec/ld.aout_so/arch/sparc/md.c                             |     361 -
 libexec/ld.aout_so/arch/sparc/md.h                             |     309 -
 libexec/ld.aout_so/arch/sparc/mdprologue.S                     |     108 -
 libexec/ld.aout_so/arch/vax/md-static-funcs.c                  |      17 -
 libexec/ld.aout_so/arch/vax/md.c                               |     413 -
 libexec/ld.aout_so/arch/vax/md.h                               |     240 -
 libexec/ld.aout_so/arch/vax/mdprologue.S                       |     104 -
 libexec/ld.aout_so/ld.h                                        |     159 -
 libexec/ld.aout_so/malloc.c                                    |     482 -
 libexec/ld.aout_so/md-prologue.c                               |      41 -
 libexec/ld.aout_so/rtld.1                                      |     221 -
 libexec/ld.aout_so/rtld.c                                      |    1881 -
 libexec/ld.aout_so/shlib.c                                     |     386 -
 libexec/ld.aout_so/shlib.h                                     |      57 -
 libexec/ld.elf_so/Makefile                                     |      49 -
 libexec/ld.elf_so/README                                       |      59 -
 libexec/ld.elf_so/arch/alpha/Makefile.inc                      |       6 -
 libexec/ld.elf_so/arch/alpha/rtld_start.S                      |     188 -
 libexec/ld.elf_so/arch/i386/Makefile.inc                       |       6 -
 libexec/ld.elf_so/arch/i386/rtld_start.S                       |      92 -
 libexec/ld.elf_so/arch/m68k/Makefile.inc                       |       6 -
 libexec/ld.elf_so/arch/m68k/rtld_start.S                       |      73 -
 libexec/ld.elf_so/arch/mips/Makefile.inc                       |      14 -
 libexec/ld.elf_so/arch/mips/ld.so.script                       |     152 -
 libexec/ld.elf_so/arch/mips/mips_reloc.c                       |     123 -
 libexec/ld.elf_so/arch/mips/rtld_start.S                       |      88 -
 libexec/ld.elf_so/arch/powerpc/Makefile.inc                    |       7 -
 libexec/ld.elf_so/arch/powerpc/ld.so.script                    |     138 -
 libexec/ld.elf_so/arch/powerpc/ppc_reloc.c                     |     193 -
 libexec/ld.elf_so/arch/powerpc/rtld_start.S                    |     131 -
 libexec/ld.elf_so/arch/sparc/Makefile.inc                      |       6 -
 libexec/ld.elf_so/arch/sparc/mdreloc.c                         |     321 -
 libexec/ld.elf_so/arch/sparc/rtld_start.S                      |      76 -
 libexec/ld.elf_so/arch/vax/Makefile.inc                        |       6 -
 libexec/ld.elf_so/arch/vax/rtld_start.S                        |      70 -
 libexec/ld.elf_so/debug.c                                      |      76 -
 libexec/ld.elf_so/debug.h                                      |      58 -
 libexec/ld.elf_so/headers.c                                    |     299 -
 libexec/ld.elf_so/load.c                                       |     169 -
 libexec/ld.elf_so/malloc.c                                     |     471 -
 libexec/ld.elf_so/map_object.c                                 |     289 -
 libexec/ld.elf_so/paths.c                                      |     206 -
 libexec/ld.elf_so/reloc.c                                      |     635 -
 libexec/ld.elf_so/rtld.c                                       |     676 -
 libexec/ld.elf_so/rtld.h                                       |     258 -
 libexec/ld.elf_so/rtldenv.h                                    |      81 -
 libexec/ld.elf_so/search.c                                     |     209 -
 libexec/ld.elf_so/symbol.c                                     |     178 -
 libexec/ld.elf_so/sysident.h                                   |      74 -
 libexec/ld.elf_so/xmalloc.c                                    |      66 -
 libexec/ld.elf_so/xprintf.c                                    |     386 -
 libexec/lfs_cleanerd/Makefile                                  |      11 -
 libexec/lfs_cleanerd/clean.h                                   |     161 -
 libexec/lfs_cleanerd/cleanerd.c                                |     769 -
 libexec/lfs_cleanerd/lfs_cleanerd.8                            |      80 -
 libexec/lfs_cleanerd/library.c                                 |     796 -
 libexec/lfs_cleanerd/misc.c                                    |      84 -
 libexec/lfs_cleanerd/print.c                                   |     279 -
 libexec/mail.local/Makefile                                    |      10 -
 libexec/mail.local/mail.local.8                                |     115 -
 libexec/mail.local/mail.local.c                                |     333 -
 libexec/mail.local/pathnames.h                                 |      39 -
 libexec/makekey/Makefile                                       |       9 -
 libexec/makekey/makekey.8                                      |      61 -
 libexec/makekey/makekey.c                                      |      86 -
 libexec/makewhatis/Makefile                                    |       7 -
 libexec/makewhatis/makewhatis.8                                |      74 -
 libexec/makewhatis/makewhatis.c                                |     647 -
 libexec/makewhatis/makewhatis.sh                               |      66 -
 libexec/rexecd/Makefile                                        |       9 -
 libexec/rexecd/rexecd.8                                        |     153 -
 libexec/rexecd/rexecd.c                                        |     335 -
 libexec/rlogind/Makefile                                       |       9 -
 libexec/rlogind/pathnames.h                                    |      40 -
 libexec/rlogind/rlogind.8                                      |     184 -
 libexec/rlogind/rlogind.c                                      |     683 -
 libexec/rmail/Makefile                                         |      10 -
 libexec/rmail/rmail.8                                          |      69 -
 libexec/rmail/rmail.c                                          |     379 -
 libexec/rpc.rquotad/Makefile                                   |      11 -
 libexec/rpc.rquotad/rpc.rquotad.8                              |      61 -
 libexec/rpc.rquotad/rquotad.c                                  |     358 -
 libexec/rpc.rstatd/Makefile                                    |      14 -
 libexec/rpc.rstatd/rpc.rstatd.8                                |      82 -
 libexec/rpc.rstatd/rstat_proc.c                                |     468 -
 libexec/rpc.rstatd/rstatd.c                                    |     130 -
 libexec/rpc.rusersd/Makefile                                   |      35 -
 libexec/rpc.rusersd/rpc.rusersd.8                              |      63 -
 libexec/rpc.rusersd/rusers_proc.c                              |     473 -
 libexec/rpc.rusersd/rusers_proc.h                              |      32 -
 libexec/rpc.rusersd/rusersd.c                                  |     114 -
 libexec/rpc.rwalld/Makefile                                    |      11 -
 libexec/rpc.rwalld/rpc.rwalld.8                                |      66 -
 libexec/rpc.rwalld/rwalld.c                                    |     190 -
 libexec/rpc.sprayd/Makefile                                    |      12 -
 libexec/rpc.sprayd/rpc.sprayd.8                                |      62 -
 libexec/rpc.sprayd/sprayd.c                                    |     167 -
 libexec/rshd/Makefile                                          |       7 -
 libexec/rshd/rshd.8                                            |     211 -
 libexec/rshd/rshd.c                                            |     570 -
 libexec/talkd/Makefile                                         |      10 -
 libexec/talkd/announce.c                                       |     175 -
 libexec/talkd/extern.h                                         |      54 -
 libexec/talkd/print.c                                          |     111 -
 libexec/talkd/process.c                                        |     240 -
 libexec/talkd/table.c                                          |     244 -
 libexec/talkd/talkd.8                                          |      96 -
 libexec/talkd/talkd.c                                          |     150 -
 libexec/telnetd/Makefile                                       |      25 -
 libexec/telnetd/authenc.c                                      |      90 -
 libexec/telnetd/defs.h                                         |     300 -
 libexec/telnetd/ext.h                                          |     228 -
 libexec/telnetd/global.c                                       |      55 -
 libexec/telnetd/pathnames.h                                    |      57 -
 libexec/telnetd/slc.c                                          |     501 -
 libexec/telnetd/state.c                                        |    1565 -
 libexec/telnetd/sys_term.c                                     |    2375 -
 libexec/telnetd/telnetd.8                                      |     626 -
 libexec/telnetd/telnetd.c                                      |    1627 -
 libexec/telnetd/telnetd.h                                      |      51 -
 libexec/telnetd/termstat.c                                     |     646 -
 libexec/telnetd/utility.c                                      |    1098 -
 libexec/tftpd/Makefile                                         |      13 -
 libexec/tftpd/tftpd.8                                          |     195 -
 libexec/tftpd/tftpd.c                                          |     805 -
 libexec/uucpd/Makefile                                         |       9 -
 libexec/uucpd/pathnames.h                                      |      40 -
 libexec/uucpd/uucpd.8                                          |      74 -
 libexec/uucpd/uucpd.c                                          |     299 -
 regress/Makefile                                               |      13 -
 regress/include/Makefile                                       |       6 -
 regress/include/Makefile.inc                                   |       4 -
 regress/include/bitstring/Makefile                             |      26 -
 regress/include/bitstring/bitstring_test.c                     |     214 -
 regress/include/bitstring/good/27                              |     263 -
 regress/include/bitstring/good/32                              |     303 -
 regress/include/bitstring/good/49                              |     439 -
 regress/include/bitstring/good/64                              |     559 -
 regress/include/bitstring/good/67                              |     583 -
 regress/include/bitstring/good/8                               |     111 -
 regress/include/stdarg/Makefile                                |      14 -
 regress/include/varargs/Makefile                               |      14 -
 regress/lib/Makefile                                           |       5 -
 regress/lib/libc/Makefile                                      |      15 -
 regress/lib/libc/Makefile.inc                                  |       4 -
 regress/lib/libc/_setjmp/Makefile                              |      14 -
 regress/lib/libc/arch/alpha/Makefile                           |       6 -
 regress/lib/libc/arch/alpha/Makefile.inc                       |       4 -
 regress/lib/libc/arch/alpha/divremtest/Makefile                |      29 -
 regress/lib/libc/arch/alpha/divremtest/divremtest.c            |     183 -
 regress/lib/libc/arch/alpha/divremtest/mkcases.c               |      63 -
 regress/lib/libc/arch/alpha/divremtest/mktestcases.c           |      67 -
 regress/lib/libc/db/Makefile                                   |      15 -
 regress/lib/libc/db/README                                     |      68 -
 regress/lib/libc/db/dbtest.c                                   |     759 -
 regress/lib/libc/db/run.test                                   |     706 -
 regress/lib/libc/ieeefp/Makefile                               |       5 -
 regress/lib/libc/ieeefp/Makefile.inc                           |       4 -
 regress/lib/libc/ieeefp/except/Makefile                        |       9 -
 regress/lib/libc/ieeefp/except/except.c                        |      89 -
 regress/lib/libc/ieeefp/round/Makefile                         |       9 -
 regress/lib/libc/ieeefp/round/round.c                          |      44 -
 regress/lib/libc/ldexp/Makefile                                |      16 -
 regress/lib/libc/ldexp/expected                                |      92 -
 regress/lib/libc/ldexp/ldexp.c                                 |     191 -
 regress/lib/libc/popen/Makefile                                |      12 -
 regress/lib/libc/popen/popen.c                                 |     118 -
 regress/lib/libc/regex/Makefile                                |      16 -
 regress/lib/libc/regex/debug.c                                 |     244 -
 regress/lib/libc/regex/debug.ih                                |      16 -
 regress/lib/libc/regex/main.c                                  |     512 -
 regress/lib/libc/regex/main.ih                                 |      21 -
 regress/lib/libc/regex/split.c                                 |     318 -
 regress/lib/libc/regex/tests                                   |     477 -
 regress/lib/libc/setjmp/Makefile                               |      14 -
 regress/lib/libc/setjmp/jmptest.c                              |     134 -
 regress/lib/libc/sigsetjmp/Makefile                            |      15 -
 regress/lib/libc/time/Makefile                                 |       5 -
 regress/lib/libc/time/Makefile.inc                             |       3 -
 regress/lib/libc/time/strptime/Makefile                        |      14 -
 regress/lib/libc/time/strptime/expected                        |     346 -
 regress/lib/libc/time/strptime/main.c                          |      84 -
 regress/lib/libc/time/strptime/tests                           |     267 -
 regress/lib/libposix/Makefile                                  |       5 -
 regress/lib/libposix/Makefile.inc                              |       4 -
 regress/lib/libposix/nrn/Makefile                              |      15 -
 regress/lib/libposix/prn.c                                     |      71 -
 regress/lib/libposix/prn1/Makefile                             |      16 -
 regress/lib/libposix/prn2/Makefile                             |      15 -
 regress/sys/Makefile                                           |      11 -
 regress/sys/arch/i386/Makefile                                 |       5 -
 regress/sys/arch/i386/Makefile.inc                             |       4 -
 regress/sys/arch/i386/ldt/Makefile                             |      17 -
 regress/sys/arch/i386/ldt/testldt.c                            |     267 -
 regress/sys/arch/m68k/060sp/Makefile                           |      24 -
 regress/sys/arch/m68k/060sp/dotest.c                           |      42 -
 regress/sys/arch/m68k/060sp/dotestsubs.S                       |      27 -
 regress/sys/arch/m68k/060sp/goodoutput                         |      15 -
 regress/sys/arch/m68k/Makefile                                 |       5 -
 regress/sys/arch/m68k/emuspeed/Makefile                        |      14 -
 regress/sys/arch/m68k/emuspeed/compare                         |      15 -
 regress/sys/arch/m68k/emuspeed/div64.s                         |      50 -
 regress/sys/arch/m68k/emuspeed/emuspeed.c                      |      82 -
 regress/sys/arch/m68k/emuspeed/mul64.s                         |      50 -
 regress/sys/arch/m68k/emuspeed/speed.h                         |      17 -
 regress/sys/arch/m68k/emuspeed/test.s                          |      26 -
 regress/sys/fs/Makefile                                        |       5 -
 regress/sys/fs/ffs/Makefile                                    |     162 -
 regress/sys/fs/ffs/estimatecompare                             |      22 -
 regress/sys/kern/Makefile                                      |       5 -
 regress/sys/kern/Makefile.inc                                  |       4 -
 regress/sys/kern/execve/Makefile                               |      81 -
 regress/sys/kern/execve/doexec.c                               |      54 -
 regress/sys/kern/execve/good/badinterplen                      |       1 -
 regress/sys/kern/execve/good/devnullscript                     |       1 -
 regress/sys/kern/execve/good/empty                             |       1 -
 regress/sys/kern/execve/good/goodaout                          |       1 -
 regress/sys/kern/execve/good/goodscript                        |       1 -
 regress/sys/kern/execve/good/nonexistent                       |       1 -
 regress/sys/kern/execve/good/nonexistshell                     |       1 -
 regress/sys/kern/execve/good/scriptarg                         |       2 -
 regress/sys/kern/execve/good/scriptarg-nospace                 |       2 -
 regress/sys/kern/execve/good/truncaout                         |       1 -
 regress/sys/kern/execve/tests/badinterplen                     |       3 -
 regress/sys/kern/execve/tests/devnullscript                    |       3 -
 regress/sys/kern/execve/tests/goodaout.c                       |      43 -
 regress/sys/kern/execve/tests/goodscript                       |       3 -
 regress/sys/kern/execve/tests/nonexistshell                    |       3 -
 regress/sys/kern/execve/tests/scriptarg                        |       3 -
 regress/sys/kern/execve/tests/scriptarg-nospace                |       3 -
 regress/sys/kern/extent/Makefile                               |      20 -
 regress/sys/kern/extent/extest.awk                             |      54 -
 regress/sys/kern/extent/extest.exp                             |      18 -
 regress/sys/kern/extent/tests                                  |      23 -
 regress/sys/kern/getcwd/Makefile                               |      16 -
 regress/sys/kern/getcwd/getcwd.c                               |     555 -
 regress/sys/kern/getcwd/getcwd.h                               |      37 -
 regress/sys/kern/getcwd/old_getcwd.c                           |     267 -
 regress/sys/kern/sigtramp/Makefile                             |      10 -
 regress/sys/kern/sigtramp/dotest                               |      19 -
 regress/sys/kern/sigtramp/sigtramp.c                           |      22 -
 regress/sys/kern/sysvmsg/Makefile                              |      14 -
 regress/sys/kern/sysvmsg/msgtest.c                             |     348 -
 regress/sys/kern/sysvsem/Makefile                              |      14 -
 regress/sys/kern/sysvsem/semtest.c                             |     331 -
 regress/sys/kern/sysvshm/Makefile                              |      14 -
 regress/sys/kern/sysvshm/shmtest.c                             |     297 -
 regress/sys/kern/unfdpass/Makefile                             |      16 -
 regress/sys/kern/unfdpass/expected                             |      25 -
 regress/sys/kern/unfdpass/unfdpass.c                           |     452 -
 regress/sys/uvm/Makefile                                       |       5 -
 regress/sys/uvm/mmap/Makefile                                  |      18 -
 regress/sys/uvm/mmap/mmap.c                                    |     396 -
 regress/usr.bin/Makefile                                       |       5 -
 regress/usr.bin/m4/Makefile                                    |      18 -
 regress/usr.bin/m4/ff_after_dnl.m4.uu                          |       9 -
 regress/usr.bin/m4/ff_after_dnl.out                            |       2 -
 regress/usr.bin/m4/m4wrap.m4                                   |       5 -
 regress/usr.bin/m4/m4wrap.out                                  |       2 -
 sbin/Makefile                                                  |      34 -
 sbin/Makefile.inc                                              |       8 -
 sbin/atactl/Makefile                                           |      11 -
 sbin/atactl/atactl.8                                           |     123 -
 sbin/atactl/atactl.c                                           |     539 -
 sbin/badsect/Makefile                                          |       9 -
 sbin/badsect/badsect.8                                         |     137 -
 sbin/badsect/badsect.c                                         |     248 -
 sbin/bim/Makefile                                              |      12 -
 sbin/bim/bim.8                                                 |     138 -
 sbin/bim/bim.c                                                 |     639 -
 sbin/bim/cmdtable.h                                            |     127 -
 sbin/bim/command.c                                             |     293 -
 sbin/bim/command.h                                             |      92 -
 sbin/bim/extern.h                                              |      47 -
 sbin/bim/images.h                                              |      78 -
 sbin/ccdconfig/Makefile                                        |      12 -
 sbin/ccdconfig/ccdconfig.8                                     |     190 -
 sbin/ccdconfig/ccdconfig.c                                     |     733 -
 sbin/ccdconfig/pathnames.h                                     |      39 -
 sbin/clri/Makefile                                             |       9 -
 sbin/clri/clri.8                                               |      79 -
 sbin/clri/clri.c                                               |     168 -
 sbin/disklabel/Makefile                                        |      39 -
 sbin/disklabel/disklabel.5                                     |     416 -
 sbin/disklabel/disklabel.8                                     |     413 -
 sbin/disklabel/disklabel.c                                     |    1907 -
 sbin/disklabel/dkcksum.c                                       |      61 -
 sbin/disklabel/dkcksum.h                                       |       3 -
 sbin/disklabel/extern.h                                        |      36 -
 sbin/disklabel/interact.c                                      |     418 -
 sbin/disklabel/pathnames.h                                     |      41 -
 sbin/dmesg/Makefile                                            |      11 -
 sbin/dmesg/dmesg.8                                             |      65 -
 sbin/dmesg/dmesg.c                                             |     177 -
 sbin/dump/Makefile                                             |      31 -
 sbin/dump/dump.8                                               |     477 -
 sbin/dump/dump.h                                               |     290 -
 sbin/dump/dumprmt.c                                            |     395 -
 sbin/dump/ffs_inode.c                                          |     176 -
 sbin/dump/itime.c                                              |     280 -
 sbin/dump/main.c                                               |     715 -
 sbin/dump/optr.c                                               |     563 -
 sbin/dump/pathnames.h                                          |      43 -
 sbin/dump/rcache.c                                             |     444 -
 sbin/dump/tape.c                                               |     946 -
 sbin/dump/traverse.c                                           |     677 -
 sbin/dump/unctime.c                                            |      67 -
 sbin/dump_lfs/Makefile                                         |      23 -
 sbin/dump_lfs/dump_lfs.8                                       |     477 -
 sbin/dump_lfs/lfs_inode.c                                      |     290 -
 sbin/edlabel/Makefile                                          |      14 -
 sbin/edlabel/edlabel.c                                         |     566 -
 sbin/fastboot/Makefile                                         |       8 -
 sbin/fastboot/fastboot.8                                       |      71 -
 sbin/fastboot/fastboot.sh                                      |      39 -
 sbin/fastboot/fasthalt.sh                                      |      39 -
 sbin/fdisk/Makefile                                            |      19 -
 sbin/fdisk/fdisk.8                                             |     265 -
 sbin/fdisk/fdisk.c                                             |    1404 -
 sbin/fdisk/mbr/Makefile                                        |      29 -
 sbin/fdisk/mbr/mbr.8                                           |      90 -
 sbin/fdisk/mbr/mbr.S                                           |     317 -
 sbin/fdisk/mbr_bootsel/Makefile                                |      26 -
 sbin/fdisk/mbr_bootsel/mbr_bootsel.S                           |     526 -
 sbin/fsck/Makefile                                             |       7 -
 sbin/fsck/fsck.8                                               |     122 -
 sbin/fsck/fsck.c                                               |     525 -
 sbin/fsck/fsutil.c                                             |     332 -
 sbin/fsck/fsutil.h                                             |      57 -
 sbin/fsck/pathnames.h                                          |      33 -
 sbin/fsck/preen.c                                              |     340 -
 sbin/fsck_ext2fs/Makefile                                      |      12 -
 sbin/fsck_ext2fs/dir.c                                         |     697 -
 sbin/fsck_ext2fs/extern.h                                      |      75 -
 sbin/fsck_ext2fs/fsck.h                                        |     213 -
 sbin/fsck_ext2fs/fsck_ext2fs.8                                 |     232 -
 sbin/fsck_ext2fs/inode.c                                       |     663 -
 sbin/fsck_ext2fs/main.c                                        |     329 -
 sbin/fsck_ext2fs/pass1.c                                       |     343 -
 sbin/fsck_ext2fs/pass1b.c                                      |     111 -
 sbin/fsck_ext2fs/pass2.c                                       |     411 -
 sbin/fsck_ext2fs/pass3.c                                       |      81 -
 sbin/fsck_ext2fs/pass4.c                                       |     146 -
 sbin/fsck_ext2fs/pass5.c                                       |     259 -
 sbin/fsck_ext2fs/preen.c                                       |     377 -
 sbin/fsck_ext2fs/setup.c                                       |     517 -
 sbin/fsck_ext2fs/utilities.c                                   |     537 -
 sbin/fsck_ffs/Makefile                                         |      18 -
 sbin/fsck_ffs/SMM.doc/0.t                                      |     152 -
 sbin/fsck_ffs/SMM.doc/1.t                                      |      85 -
 sbin/fsck_ffs/SMM.doc/2.t                                      |     267 -
 sbin/fsck_ffs/SMM.doc/3.t                                      |     454 -
 sbin/fsck_ffs/SMM.doc/4.t                                      |    1426 -
 sbin/fsck_ffs/SMM.doc/Makefile                                 |       8 -
 sbin/fsck_ffs/dir.c                                            |     798 -
 sbin/fsck_ffs/extern.h                                         |      85 -
 sbin/fsck_ffs/fsck.h                                           |     256 -
 sbin/fsck_ffs/fsck_ffs.8                                       |     283 -
 sbin/fsck_ffs/inode.c                                          |     674 -
 sbin/fsck_ffs/main.c                                           |     389 -
 sbin/fsck_ffs/pass1.c                                          |     353 -
 sbin/fsck_ffs/pass1b.c                                         |     112 -
 sbin/fsck_ffs/pass2.c                                          |     526 -
 sbin/fsck_ffs/pass3.c                                          |      82 -
 sbin/fsck_ffs/pass4.c                                          |     146 -
 sbin/fsck_ffs/pass5.c                                          |     380 -
 sbin/fsck_ffs/setup.c                                          |     683 -
 sbin/fsck_ffs/utilities.c                                      |     672 -
 sbin/fsck_lfs/Makefile                                         |      16 -
 sbin/fsck_lfs/dir.c                                            |     752 -
 sbin/fsck_lfs/extern.h                                         |      75 -
 sbin/fsck_lfs/fsck.h                                           |     221 -
 sbin/fsck_lfs/fsck_lfs.8                                       |     224 -
 sbin/fsck_lfs/fsck_vars.h                                      |      96 -
 sbin/fsck_lfs/inode.c                                          |     823 -
 sbin/fsck_lfs/main.c                                           |     410 -
 sbin/fsck_lfs/pass0.c                                          |     302 -
 sbin/fsck_lfs/pass1.c                                          |     408 -
 sbin/fsck_lfs/pass1b.c                                         |     101 -
 sbin/fsck_lfs/pass2.c                                          |     470 -
 sbin/fsck_lfs/pass3.c                                          |      72 -
 sbin/fsck_lfs/pass4.c                                          |     135 -
 sbin/fsck_lfs/pass5.c                                          |     333 -
 sbin/fsck_lfs/setup.c                                          |     569 -
 sbin/fsck_lfs/utilities.c                                      |     573 -
 sbin/fsck_lfs/vars.c                                           |      69 -
 sbin/fsck_msdos/Makefile                                       |      10 -
 sbin/fsck_msdos/boot.c                                         |     268 -
 sbin/fsck_msdos/check.c                                        |     202 -
 sbin/fsck_msdos/dir.c                                          |    1030 -
 sbin/fsck_msdos/dosfs.h                                        |     144 -
 sbin/fsck_msdos/ext.h                                          |     142 -
 sbin/fsck_msdos/fat.c                                          |     585 -
 sbin/fsck_msdos/fsck_msdos.8                                   |     108 -
 sbin/fsck_msdos/main.c                                         |     165 -
 sbin/fsdb/Makefile                                             |      20 -
 sbin/fsdb/fsdb.8                                               |     242 -
 sbin/fsdb/fsdb.c                                               |     989 -
 sbin/fsdb/fsdb.h                                               |      67 -
 sbin/fsdb/fsdbutil.c                                           |     225 -
 sbin/fsirand/Makefile                                          |       9 -
 sbin/fsirand/fsirand.8                                         |      68 -
 sbin/fsirand/fsirand.c                                         |     239 -
 sbin/ifconfig/Makefile                                         |       9 -
 sbin/ifconfig/ifconfig.8                                       |     418 -
 sbin/ifconfig/ifconfig.c                                       |    2106 -
 sbin/init/Makefile                                             |      12 -
 sbin/init/NOTES                                                |     114 -
 sbin/init/init.8                                               |     309 -
 sbin/init/init.c                                               |    1475 -
 sbin/init/pathnames.h                                          |      44 -
 sbin/ldconfig/Makefile                                         |      15 -
 sbin/ldconfig/ldconfig.8                                       |     156 -
 sbin/ldconfig/ldconfig.c                                       |     587 -
 sbin/lmcctl/Makefile                                           |       9 -
 sbin/lmcctl/clockgen.c                                         |     123 -
 sbin/lmcctl/extern.h                                           |      39 -
 sbin/lmcctl/lmcctl.8                                           |     129 -
 sbin/lmcctl/lmcctl.c                                           |     373 -
 sbin/mknod/Makefile                                            |       7 -
 sbin/mknod/mknod.8                                             |     155 -
 sbin/mknod/mknod.c                                             |     426 -
 sbin/modload/Makefile                                          |      17 -
 sbin/modload/a.out.c                                           |     256 -
 sbin/modload/elf.c                                             |     341 -
 sbin/modload/modload.8                                         |     133 -
 sbin/modload/modload.c                                         |     455 -
 sbin/modload/modload.h                                         |      70 -
 sbin/modload/pathnames.h                                       |       5 -
 sbin/modunload/Makefile                                        |      40 -
 sbin/modunload/modunload.8                                     |      76 -
 sbin/modunload/modunload.c                                     |     139 -
 sbin/modunload/pathnames.h                                     |       5 -
 sbin/mount/Makefile                                            |      12 -
 sbin/mount/getmntopts.3                                        |     181 -
 sbin/mount/getmntopts.c                                        |     108 -
 sbin/mount/mntopts.h                                           |      91 -
 sbin/mount/mount.8                                             |     329 -
 sbin/mount/mount.c                                             |     571 -
 sbin/mount/pathnames.h                                         |      40 -
 sbin/mount/vfslist.c                                           |     100 -
 sbin/mount_ados/Makefile                                       |      11 -
 sbin/mount_ados/mount_ados.8                                   |     108 -
 sbin/mount_ados/mount_ados.c                                   |     206 -
 sbin/mount_cd9660/Makefile                                     |      12 -
 sbin/mount_cd9660/mount_cd9660.8                               |     115 -
 sbin/mount_cd9660/mount_cd9660.c                               |     140 -
 sbin/mount_ext2fs/Makefile                                     |      13 -
 sbin/mount_ext2fs/mount_ext2fs.8                               |      83 -
 sbin/mount_ext2fs/mount_ext2fs.c                               |     143 -
 sbin/mount_fdesc/Makefile                                      |      12 -
 sbin/mount_fdesc/mount_fdesc.8                                 |     156 -
 sbin/mount_fdesc/mount_fdesc.c                                 |     107 -
 sbin/mount_ffs/Makefile                                        |      14 -
 sbin/mount_ffs/mount_ffs.8                                     |      90 -
 sbin/mount_ffs/mount_ffs.c                                     |     143 -
 sbin/mount_filecore/Makefile                                   |      13 -
 sbin/mount_filecore/mount_filecore.8                           |     115 -
 sbin/mount_filecore/mount_filecore.c                           |     191 -
 sbin/mount_kernfs/Makefile                                     |      12 -
 sbin/mount_kernfs/mount_kernfs.8                               |     141 -
 sbin/mount_kernfs/mount_kernfs.c                               |     107 -
 sbin/mount_lfs/Makefile                                        |      12 -
 sbin/mount_lfs/mount_lfs.8                                     |     128 -
 sbin/mount_lfs/mount_lfs.c                                     |     174 -
 sbin/mount_lfs/pathnames.h                                     |      38 -
 sbin/mount_msdos/Makefile                                      |      11 -
 sbin/mount_msdos/mount_msdos.8                                 |     160 -
 sbin/mount_msdos/mount_msdos.c                                 |     218 -
 sbin/mount_nfs/Makefile                                        |      20 -
 sbin/mount_nfs/mount_nfs.8                                     |     363 -
 sbin/mount_nfs/mount_nfs.c                                     |     810 -
 sbin/mount_ntfs/Makefile                                       |      14 -
 sbin/mount_ntfs/mount_ntfs.8                                   |     140 -
 sbin/mount_ntfs/mount_ntfs.c                                   |     257 -
 sbin/mount_null/Makefile                                       |      12 -
 sbin/mount_null/mount_null.8                                   |     231 -
 sbin/mount_null/mount_null.c                                   |     136 -
 sbin/mount_portal/Makefile                                     |      19 -
 sbin/mount_portal/activate.c                                   |     228 -
 sbin/mount_portal/conf.c                                       |     353 -
 sbin/mount_portal/examples/Makefile                            |      13 -
 sbin/mount_portal/examples/advanced.1                          |      88 -
 sbin/mount_portal/examples/advanced.1.conf                     |      18 -
 sbin/mount_portal/examples/fing.c                              |      27 -
 sbin/mount_portal/examples/fs.1                                |      16 -
 sbin/mount_portal/examples/fs.1.conf                           |       1 -
 sbin/mount_portal/examples/overview                            |      35 -
 sbin/mount_portal/examples/rfilter.1                           |      16 -
 sbin/mount_portal/examples/rfilter.2                           |     115 -
 sbin/mount_portal/examples/rfilter.2.conf                      |      13 -
 sbin/mount_portal/examples/tcp.1                               |      41 -
 sbin/mount_portal/examples/tcp.1.conf                          |       1 -
 sbin/mount_portal/mount_portal.8                               |     216 -
 sbin/mount_portal/mount_portal.c                               |     305 -
 sbin/mount_portal/pathnames.h                                  |      44 -
 sbin/mount_portal/portal.conf                                  |       8 -
 sbin/mount_portal/portald.h                                    |      87 -
 sbin/mount_portal/pt_conf.c                                    |      58 -
 sbin/mount_portal/pt_exec.c                                    |      67 -
 sbin/mount_portal/pt_file.c                                    |     196 -
 sbin/mount_portal/pt_filter.c                                  |     229 -
 sbin/mount_portal/pt_tcp.c                                     |     165 -
 sbin/mount_procfs/Makefile                                     |      12 -
 sbin/mount_procfs/mount_procfs.8                               |     249 -
 sbin/mount_procfs/mount_procfs.c                               |     107 -
 sbin/mount_umap/Makefile                                       |      12 -
 sbin/mount_umap/mount_umap.8                                   |     135 -
 sbin/mount_umap/mount_umap.c                                   |     243 -
 sbin/mount_umap/sample.group.mapfile                           |       2 -
 sbin/mount_umap/sample.user.mapfile                            |       3 -
 sbin/mount_umap/umap_manual                                    |     176 -
 sbin/mount_union/Makefile                                      |      12 -
 sbin/mount_union/mount_union.8                                 |     209 -
 sbin/mount_union/mount_union.c                                 |     147 -
 sbin/newbtconf/Makefile                                        |       7 -
 sbin/newbtconf/newbtconf.8                                     |     213 -
 sbin/newbtconf/newbtconf.sh                                    |      60 -
 sbin/newfs/Makefile                                            |      18 -
 sbin/newfs/extern.h                                            |      32 -
 sbin/newfs/mkfs.c                                              |    1436 -
 sbin/newfs/newfs.8                                             |     330 -
 sbin/newfs/newfs.c                                             |     748 -
 sbin/newfs_lfs/Makefile                                        |      12 -
 sbin/newfs_lfs/config.h                                        |     142 -
 sbin/newfs_lfs/extern.h                                        |      51 -
 sbin/newfs_lfs/lfs.c                                           |     751 -
 sbin/newfs_lfs/misc.c                                          |      90 -
 sbin/newfs_lfs/newfs.c                                         |     351 -
 sbin/newfs_lfs/newfs_lfs.8                                     |     101 -
 sbin/newfs_msdos/Makefile                                      |       9 -
 sbin/newfs_msdos/Makefile.boot                                 |      55 -
 sbin/newfs_msdos/bootcode.asm                                  |     103 -
 sbin/newfs_msdos/bootcode.h                                    |      56 -
 sbin/newfs_msdos/newfs_msdos.8                                 |     137 -
 sbin/newfs_msdos/newfs_msdos.c                                 |     343 -
 sbin/nologin/Makefile                                          |       7 -
 sbin/nologin/nologin.8                                         |      59 -
 sbin/nologin/nologin.sh                                        |       3 -
 sbin/ping/Makefile                                             |      13 -
 sbin/ping/ping.8                                               |     466 -
 sbin/ping/ping.c                                               |    1815 -
 sbin/ping6/Makefile                                            |      15 -
 sbin/ping6/ping6.8                                             |     315 -
 sbin/ping6/ping6.c                                             |    1515 -
 sbin/raidctl/Makefile                                          |      14 -
 sbin/raidctl/raidctl.8                                         |     774 -
 sbin/raidctl/raidctl.c                                         |     654 -
 sbin/raidctl/rf_configure.c                                    |     470 -
 sbin/reboot/Makefile                                           |      11 -
 sbin/reboot/reboot.8                                           |     105 -
 sbin/reboot/reboot.c                                           |     231 -
 sbin/restore/Makefile                                          |      13 -
 sbin/restore/dirs.c                                            |     779 -
 sbin/restore/extern.h                                          |     112 -
 sbin/restore/interactive.c                                     |     799 -
 sbin/restore/main.c                                            |     382 -
 sbin/restore/restore.8                                         |     500 -
 sbin/restore/restore.c                                         |     863 -
 sbin/restore/restore.h                                         |     143 -
 sbin/restore/symtab.c                                          |     636 -
 sbin/restore/tape.c                                            |    1416 -
 sbin/restore/utilities.c                                       |     442 -
 sbin/rndctl/Makefile                                           |       6 -
 sbin/rndctl/rndctl.8                                           |      95 -
 sbin/rndctl/rndctl.c                                           |     305 -
 sbin/route/Makefile                                            |      19 -
 sbin/route/ccitt_addr.c                                        |     184 -
 sbin/route/extern.h                                            |      46 -
 sbin/route/keywords.c                                          |      58 -
 sbin/route/keywords.h                                          |      57 -
 sbin/route/keywords.sh                                         |     121 -
 sbin/route/route.8                                             |     370 -
 sbin/route/route.c                                             |    1673 -
 sbin/route/show.c                                              |     364 -
 sbin/routed/Makefile                                           |      17 -
 sbin/routed/defs.h                                             |     652 -
 sbin/routed/if.c                                               |    1402 -
 sbin/routed/input.c                                            |    1007 -
 sbin/routed/main.c                                             |     937 -
 sbin/routed/output.c                                           |     975 -
 sbin/routed/parms.c                                            |    1020 -
 sbin/routed/pathnames.h                                        |      51 -
 sbin/routed/radix.c                                            |     894 -
 sbin/routed/radix.h                                            |     165 -
 sbin/routed/rdisc.c                                            |    1068 -
 sbin/routed/routed.8                                           |     679 -
 sbin/routed/rtquery/Makefile                                   |      13 -
 sbin/routed/rtquery/rtquery.8                                  |     121 -
 sbin/routed/rtquery/rtquery.c                                  |     910 -
 sbin/routed/table.c                                            |    2136 -
 sbin/routed/trace.c                                            |    1014 -
 sbin/rtsol/Makefile                                            |      16 -
 sbin/savecore/Makefile                                         |      13 -
 sbin/savecore/savecore.8                                       |     132 -
 sbin/savecore/savecore.c                                       |     720 -
 sbin/scsictl/Makefile                                          |      11 -
 sbin/scsictl/extern.h                                          |      51 -
 sbin/scsictl/scsi_sense.c                                      |     507 -
 sbin/scsictl/scsi_subr.c                                       |     177 -
 sbin/scsictl/scsictl.8                                         |     143 -
 sbin/scsictl/scsictl.c                                         |     416 -
 sbin/shutdown/Makefile                                         |      10 -
 sbin/shutdown/pathnames.h                                      |      44 -
 sbin/shutdown/shutdown.8                                       |     206 -
 sbin/shutdown/shutdown.c                                       |     552 -
 sbin/slattach/Makefile                                         |       8 -
 sbin/slattach/slattach.8                                       |     143 -
 sbin/slattach/slattach.c                                       |     182 -
 sbin/swapctl/Makefile                                          |      10 -
 sbin/swapctl/swapctl.8                                         |     244 -
 sbin/swapctl/swapctl.c                                         |     490 -
 sbin/swapctl/swapctl.h                                         |      32 -
 sbin/swapctl/swaplist.c                                        |     137 -
 sbin/ttyflags/Makefile                                         |       6 -
 sbin/ttyflags/ttyflags.8                                       |      81 -
 sbin/ttyflags/ttyflags.c                                       |     247 -
 sbin/tunefs/Makefile                                           |       9 -
 sbin/tunefs/tunefs.8                                           |     166 -
 sbin/tunefs/tunefs.c                                           |     349 -
 sbin/umount/Makefile                                           |      12 -
 sbin/umount/umount.8                                           |     152 -
 sbin/umount/umount.c                                           |     399 -
 sbin/wsconsctl/Makefile                                        |      18 -
 sbin/wsconsctl/display.c                                       |      67 -
 sbin/wsconsctl/keyboard.c                                      |     219 -
 sbin/wsconsctl/keysym.c                                        |     196 -
 sbin/wsconsctl/map_parse.y                                     |     205 -
 sbin/wsconsctl/map_scan.l                                      |     104 -
 sbin/wsconsctl/mkkeysym.sh                                     |      38 -
 sbin/wsconsctl/mouse.c                                         |      67 -
 sbin/wsconsctl/util.c                                          |     316 -
 sbin/wsconsctl/wsconsctl.8                                     |     196 -
 sbin/wsconsctl/wsconsctl.c                                     |     226 -
 sbin/wsconsctl/wsconsctl.h                                     |      77 -
 share/Makefile                                                 |      13 -
 share/Makefile.inc                                             |       5 -
 share/dict/Makefile                                            |      11 -
 share/dict/README                                              |      12 -
 share/dict/propernames                                         |    1323 -
 share/dict/web2                                                |  234939 ----------
 share/dict/web2a                                               |   76205 ---
 share/doc/Makefile                                             |       9 -
 share/doc/iso/README                                           |       5 -
 share/doc/iso/ucb/addr.nr                                      |     157 -
 share/doc/iso/ucb/def.nr                                       |     146 -
 share/doc/iso/ucb/intro.nr                                     |      74 -
 share/doc/iso/ucb/ipc.nr                                       |     333 -
 share/doc/iso/ucb/macros.nr                                    |      52 -
 share/doc/iso/ucb/net_serv.nr                                  |     165 -
 share/doc/iso/ucb/program.nr                                   |      44 -
 share/doc/iso/ucb/trans_serv.nr                                |     699 -
 share/doc/iso/wisc/Makefile                                    |      74 -
 share/doc/iso/wisc/Outline                                     |      20 -
 share/doc/iso/wisc/TODO                                        |       4 -
 share/doc/iso/wisc/addr.nr                                     |     157 -
 share/doc/iso/wisc/appendix_a.nr                               |      53 -
 share/doc/iso/wisc/appendix_b.nr                               |      12 -
 share/doc/iso/wisc/debug.nr                                    |    1045 -
 share/doc/iso/wisc/def.nr                                      |     146 -
 share/doc/iso/wisc/dogrn                                       |       9 -
 share/doc/iso/wisc/eicon.nr                                    |     731 -
 share/doc/iso/wisc/eicon.table5.1.orig.nr                      |     128 -
 share/doc/iso/wisc/errors.nr                                   |     365 -
 share/doc/iso/wisc/esis_design.nr                              |     116 -
 share/doc/iso/wisc/figs/CONS_primitives.nr                     |      79 -
 share/doc/iso/wisc/figs/Makefile                               |      18 -
 share/doc/iso/wisc/figs/NS_primitives.nr                       |      71 -
 share/doc/iso/wisc/figs/TS_primitives.nr                       |      62 -
 share/doc/iso/wisc/figs/addrfmt.nr                             |      24 -
 share/doc/iso/wisc/figs/clnp_input.grn                         |      20 -
 share/doc/iso/wisc/figs/clnp_input.gsrc                        |     338 -
 share/doc/iso/wisc/figs/clnp_input.nr                          |     190 -
 share/doc/iso/wisc/figs/clnp_output.grn                        |      20 -
 share/doc/iso/wisc/figs/clnp_output.gsrc                       |     376 -
 share/doc/iso/wisc/figs/clnp_output.nr                         |     235 -
 share/doc/iso/wisc/figs/ecn_network.grn                        |      21 -
 share/doc/iso/wisc/figs/ecn_network.gsrc                       |     288 -
 share/doc/iso/wisc/figs/ecn_network.nr                         |       2 -
 share/doc/iso/wisc/figs/ecn_queue.grn                          |      21 -
 share/doc/iso/wisc/figs/ecn_queue.gsrc                         |     371 -
 share/doc/iso/wisc/figs/ecn_queue.nr                           |     264 -
 share/doc/iso/wisc/figs/ecn_vc.grn                             |      21 -
 share/doc/iso/wisc/figs/ecn_vc.gsrc                            |     273 -
 share/doc/iso/wisc/figs/ecn_vc.nr                              |     207 -
 share/doc/iso/wisc/figs/func_units.grn                         |      20 -
 share/doc/iso/wisc/figs/func_units.gsrc                        |     603 -
 share/doc/iso/wisc/figs/func_units.nr                          |       2 -
 share/doc/iso/wisc/figs/link_to_CONS_primitives.NR.DONT_REMOVE |      79 -
 share/doc/iso/wisc/figs/link_to_TS_primitives.NR.DONT_REMOVE   |      62 -
 share/doc/iso/wisc/figs/mbufrcv.grn                            |      15 -
 share/doc/iso/wisc/figs/mbufrcv.gsrc                           |    1006 -
 share/doc/iso/wisc/figs/mbufrcv.nr                             |     506 -
 share/doc/iso/wisc/figs/mbufsnd.grn                            |      15 -
 share/doc/iso/wisc/figs/mbufsnd.gsrc                           |     534 -
 share/doc/iso/wisc/figs/mbufsnd.nr                             |     286 -
 share/doc/iso/wisc/figs/osi_addr.grn                           |      20 -
 share/doc/iso/wisc/figs/osi_addr.gsrc                          |      62 -
 share/doc/iso/wisc/figs/osi_addr.nr                            |      61 -
 share/doc/iso/wisc/figs/tppt.grn                               |      20 -
 share/doc/iso/wisc/figs/tppt.gsrc                              |     411 -
 share/doc/iso/wisc/figs/tppt.gsrc.save                         |     335 -
 share/doc/iso/wisc/figs/tppt.nr                                |     298 -
 share/doc/iso/wisc/figs/trans_flow.grn                         |      22 -
 share/doc/iso/wisc/figs/trans_flow.gsrc                        |     567 -
 share/doc/iso/wisc/figs/trans_flow.nr                          |     276 -
 share/doc/iso/wisc/figs/unix_ipc.grn                           |      20 -
 share/doc/iso/wisc/figs/unix_ipc.gsrc                          |    1041 -
 share/doc/iso/wisc/figs/unix_ipc.nr                            |     501 -
 share/doc/iso/wisc/intro.nr                                    |      78 -
 share/doc/iso/wisc/ipc.nr                                      |     374 -
 share/doc/iso/wisc/macros.nr                                   |      52 -
 share/doc/iso/wisc/net_design.nr                               |    1141 -
 share/doc/iso/wisc/net_serv.nr                                 |     165 -
 share/doc/iso/wisc/parts.nr                                    |      41 -
 share/doc/iso/wisc/preview                                     |      10 -
 share/doc/iso/wisc/program.nr                                  |      53 -
 share/doc/iso/wisc/trans_design.nr                             |    1468 -
 share/doc/iso/wisc/trans_serv.nr                               |     694 -
 share/doc/iso/wiscman/arp.4p                                   |     120 -
 share/doc/iso/wiscman/clnp.4p                                  |      93 -
 share/doc/iso/wiscman/cons.4                                   |     243 -
 share/doc/iso/wiscman/cons.4p                                  |     198 -
 share/doc/iso/wiscman/if.4n                                    |     138 -
 share/doc/iso/wiscman/iso.4f                                   |      89 -
 share/doc/iso/wiscman/rvd.4p                                   |      91 -
 share/doc/iso/wiscman/tp.4p                                    |     611 -
 share/doc/papers/beyond4.3/Makefile                            |       9 -
 share/doc/papers/beyond4.3/beyond43.ms                         |     520 -
 share/doc/papers/bus_dma/1.me                                  |     149 -
 share/doc/papers/bus_dma/2.me                                  |     136 -
 share/doc/papers/bus_dma/3.me                                  |     225 -
 share/doc/papers/bus_dma/4.me                                  |     556 -
 share/doc/papers/bus_dma/5.me                                  |      77 -
 share/doc/papers/bus_dma/Makefile                              |      16 -
 share/doc/papers/bus_dma/about.me                              |      69 -
 share/doc/papers/bus_dma/figure1.fig                           |      60 -
 share/doc/papers/bus_dma/figure1.pic                           |      46 -
 share/doc/papers/bus_dma/figure2.fig                           |      60 -
 share/doc/papers/bus_dma/figure2.pic                           |      46 -
 share/doc/papers/bus_dma/figure3.fig                           |      79 -
 share/doc/papers/bus_dma/figure3.pic                           |      56 -
 share/doc/papers/bus_dma/title.me                              |      81 -
 share/doc/papers/diskperf/Makefile                             |      13 -
 share/doc/papers/diskperf/abs.ms                               |     178 -
 share/doc/papers/diskperf/appendix.ms                          |     100 -
 share/doc/papers/diskperf/conclusions.ms                       |     129 -
 share/doc/papers/diskperf/equip.ms                             |     179 -
 share/doc/papers/diskperf/methodology.ms                       |     113 -
 share/doc/papers/diskperf/motivation.ms                        |      95 -
 share/doc/papers/diskperf/results.ms                           |     339 -
 share/doc/papers/diskperf/tests.ms                             |     110 -
 share/doc/papers/fsinterface/Makefile                          |       9 -
 share/doc/papers/fsinterface/abstract.ms                       |      75 -
 share/doc/papers/fsinterface/fsinterface.ms                    |    1178 -
 share/doc/papers/fsinterface/slides.t                          |     320 -
 share/doc/papers/kernmalloc/Makefile                           |      13 -
 share/doc/papers/kernmalloc/alloc.fig                          |     117 -
 share/doc/papers/kernmalloc/appendix.t                         |     139 -
 share/doc/papers/kernmalloc/kernmalloc.t                       |     651 -
 share/doc/papers/kernmalloc/spell.ok                           |      57 -
 share/doc/papers/kernmalloc/usage.tbl                          |      77 -
 share/doc/papers/kerntune/0.t                                  |     131 -
 share/doc/papers/kerntune/1.t                                  |      50 -
 share/doc/papers/kerntune/2.t                                  |     236 -
 share/doc/papers/kerntune/3.t                                  |     292 -
 share/doc/papers/kerntune/4.t                                  |     101 -
 share/doc/papers/kerntune/Makefile                             |      12 -
 share/doc/papers/kerntune/fig2.pic                             |      59 -
 share/doc/papers/memfs/0.t                                     |      88 -
 share/doc/papers/memfs/1.t                                     |     394 -
 share/doc/papers/memfs/A.t                                     |     175 -
 share/doc/papers/memfs/Makefile                                |      24 -
 share/doc/papers/memfs/ref.bib                                 |      49 -
 share/doc/papers/memfs/spell.ok                                |      18 -
 share/doc/papers/memfs/tmac.srefs                              |     179 -
 share/doc/papers/newvm/0.t                                     |      88 -
 share/doc/papers/newvm/1.t                                     |     379 -
 share/doc/papers/newvm/Makefile                                |      12 -
 share/doc/papers/newvm/a.t                                     |     241 -
 share/doc/papers/newvm/spell.ok                                |      56 -
 share/doc/papers/nqnfs/Makefile                                |      12 -
 share/doc/papers/nqnfs/nqnfs.me                                |    2009 -
 share/doc/papers/px/Makefile                                   |      18 -
 share/doc/papers/px/fig1.1.n                                   |      73 -
 share/doc/papers/px/fig1.2.n                                   |      70 -
 share/doc/papers/px/fig1.3.n                                   |      62 -
 share/doc/papers/px/fig2.3.raw                                 |     103 -
 share/doc/papers/px/fig2.4.n                                   |      59 -
 share/doc/papers/px/fig3.2.n                                   |      58 -
 share/doc/papers/px/fig3.3.n                                   |      59 -
 share/doc/papers/px/pxin0.n                                    |     142 -
 share/doc/papers/px/pxin1.n                                    |     540 -
 share/doc/papers/px/pxin2.n                                    |     925 -
 share/doc/papers/px/pxin3.n                                    |     599 -
 share/doc/papers/px/pxin4.n                                    |      69 -
 share/doc/papers/px/table2.1.n                                 |      85 -
 share/doc/papers/px/table2.2.n                                 |      87 -
 share/doc/papers/px/table2.3.n                                 |      47 -
 share/doc/papers/px/table3.1.n                                 |      49 -
 share/doc/papers/px/tmac.p                                     |     114 -
 share/doc/papers/relengr/0.t                                   |      93 -
 share/doc/papers/relengr/1.t                                   |      71 -
 share/doc/papers/relengr/2.t                                   |     148 -
 share/doc/papers/relengr/3.t                                   |     392 -
 share/doc/papers/relengr/Makefile                              |      14 -
 share/doc/papers/relengr/ref.bib                               |      26 -
 share/doc/papers/relengr/ref.bib.ig                            |       3 -
 share/doc/papers/relengr/spell.ok                              |      15 -
 share/doc/papers/relengr/tmac.srefs                            |     181 -
 share/doc/papers/sysperf/0.t                                   |     249 -
 share/doc/papers/sysperf/1.t                                   |      83 -
 share/doc/papers/sysperf/2.t                                   |     260 -
 share/doc/papers/sysperf/3.t                                   |     696 -
 share/doc/papers/sysperf/4.t                                   |     776 -
 share/doc/papers/sysperf/5.t                                   |     287 -
 share/doc/papers/sysperf/6.t                                   |      72 -
 share/doc/papers/sysperf/7.t                                   |     166 -
 share/doc/papers/sysperf/Makefile                              |      24 -
 share/doc/papers/sysperf/a1.t                                  |     670 -
 share/doc/papers/sysperf/a2.t                                  |     119 -
 share/doc/psd/00.contents                                      |     193 -
 share/doc/psd/05.sysman/0.t                                    |     173 -
 share/doc/psd/05.sysman/1.0.t                                  |      58 -
 share/doc/psd/05.sysman/1.1.t                                  |     354 -
 share/doc/psd/05.sysman/1.2.t                                  |     362 -
 share/doc/psd/05.sysman/1.3.t                                  |     300 -
 share/doc/psd/05.sysman/1.4.t                                  |     176 -
 share/doc/psd/05.sysman/1.5.t                                  |     268 -
 share/doc/psd/05.sysman/1.6.t                                  |     161 -
 share/doc/psd/05.sysman/1.7.t                                  |     190 -
 share/doc/psd/05.sysman/2.0.t                                  |      85 -
 share/doc/psd/05.sysman/2.1.t                                  |     181 -
 share/doc/psd/05.sysman/2.2.t                                  |     822 -
 share/doc/psd/05.sysman/2.3.t                                  |     496 -
 share/doc/psd/05.sysman/2.4.t                                  |     176 -
 share/doc/psd/05.sysman/2.5.t                                  |      98 -
 share/doc/psd/05.sysman/Makefile                               |      14 -
 share/doc/psd/05.sysman/a.t                                    |     113 -
 share/doc/psd/05.sysman/spell.ok                               |     509 -
 share/doc/psd/20.ipctut/Makefile                               |      15 -
 share/doc/psd/20.ipctut/dgramread.c                            |      85 -
 share/doc/psd/20.ipctut/dgramsend.c                            |      82 -
 share/doc/psd/20.ipctut/fig2.pic                               |      79 -
 share/doc/psd/20.ipctut/fig2.xfig                              |     100 -
 share/doc/psd/20.ipctut/fig3.pic                               |      71 -
 share/doc/psd/20.ipctut/fig3.xfig                              |     100 -
 share/doc/psd/20.ipctut/fig8.pic                               |      81 -
 share/doc/psd/20.ipctut/fig8.xfig                              |     116 -
 share/doc/psd/20.ipctut/pipe.c                                 |      76 -
 share/doc/psd/20.ipctut/socketpair.c                           |      79 -
 share/doc/psd/20.ipctut/strchkread.c                           |     108 -
 share/doc/psd/20.ipctut/streamread.c                           |     104 -
 share/doc/psd/20.ipctut/streamwrite.c                          |      83 -
 share/doc/psd/20.ipctut/tutor.me                               |     943 -
 share/doc/psd/20.ipctut/udgramread.c                           |      82 -
 share/doc/psd/20.ipctut/udgramsend.c                           |      70 -
 share/doc/psd/20.ipctut/ustreamread.c                          |      98 -
 share/doc/psd/20.ipctut/ustreamwrite.c                         |      73 -
 share/doc/psd/21.ipc/0.t                                       |      95 -
 share/doc/psd/21.ipc/1.t                                       |     108 -
 share/doc/psd/21.ipc/2.t                                       |     717 -
 share/doc/psd/21.ipc/3.t                                       |     410 -
 share/doc/psd/21.ipc/4.t                                       |     514 -
 share/doc/psd/21.ipc/5.t                                       |    1677 -
 share/doc/psd/21.ipc/Makefile                                  |      12 -
 share/doc/psd/21.ipc/spell.ok                                  |     347 -
 share/doc/psd/Makefile                                         |      38 -
 share/doc/psd/Title                                            |     647 -
 share/doc/smm/00.contents                                      |     163 -
 share/doc/smm/01.setup/0.t                                     |     131 -
 share/doc/smm/01.setup/1.t                                     |     174 -
 share/doc/smm/01.setup/2.t                                     |    1662 -
 share/doc/smm/01.setup/3.t                                     |    2008 -
 share/doc/smm/01.setup/4.t                                     |     710 -
 share/doc/smm/01.setup/5.t                                     |     588 -
 share/doc/smm/01.setup/6.t                                     |     677 -
 share/doc/smm/01.setup/Makefile                                |      13 -
 share/doc/smm/01.setup/spell.ok                                |     617 -
 share/doc/smm/04.quotas/Makefile                               |       9 -
 share/doc/smm/04.quotas/quotas.ms                              |     320 -
 share/doc/smm/05.fastfs/0.t                                    |     161 -
 share/doc/smm/05.fastfs/1.t                                    |     114 -
 share/doc/smm/05.fastfs/2.t                                    |     145 -
 share/doc/smm/05.fastfs/3.t                                    |     596 -
 share/doc/smm/05.fastfs/4.t                                    |     254 -
 share/doc/smm/05.fastfs/5.t                                    |     295 -
 share/doc/smm/05.fastfs/6.t                                    |     161 -
 share/doc/smm/05.fastfs/Makefile                               |      12 -
 share/doc/smm/06.nfs/0.t                                       |      77 -
 share/doc/smm/06.nfs/1.t                                       |     590 -
 share/doc/smm/06.nfs/2.t                                       |     532 -
 share/doc/smm/06.nfs/Makefile                                  |       9 -
 share/doc/smm/06.nfs/ref.t                                     |     125 -
 share/doc/smm/18.net/0.t                                       |     186 -
 share/doc/smm/18.net/1.t                                       |      68 -
 share/doc/smm/18.net/2.t                                       |      87 -
 share/doc/smm/18.net/3.t                                       |      61 -
 share/doc/smm/18.net/4.t                                       |      69 -
 share/doc/smm/18.net/5.t                                       |     186 -
 share/doc/smm/18.net/6.t                                       |     666 -
 share/doc/smm/18.net/7.t                                       |     258 -
 share/doc/smm/18.net/8.t                                       |     168 -
 share/doc/smm/18.net/9.t                                       |     126 -
 share/doc/smm/18.net/Makefile                                  |      12 -
 share/doc/smm/18.net/a.t                                       |     221 -
 share/doc/smm/18.net/b.t                                       |     147 -
 share/doc/smm/18.net/c.t                                       |     153 -
 share/doc/smm/18.net/d.t                                       |      75 -
 share/doc/smm/18.net/e.t                                       |     131 -
 share/doc/smm/18.net/f.t                                       |     119 -
 share/doc/smm/18.net/spell.ok                                  |     307 -
 share/doc/smm/Makefile                                         |      43 -
 share/doc/smm/Title                                            |     705 -
 share/doc/standards/xopen/Makefile                             |      43 -
 share/doc/standards/xopen/xcu5                                 |     895 -
 share/doc/usd/00.contents                                      |     264 -
 share/doc/usd/18.msdiffs/Makefile                              |       9 -
 share/doc/usd/18.msdiffs/ms.diffs                              |     289 -
 share/doc/usd/19.memacros/Makefile                             |       9 -
 share/doc/usd/19.memacros/intro.me                             |    2352 -
 share/doc/usd/20.meref/Makefile                                |       9 -
 share/doc/usd/20.meref/ref.me                                  |    2389 -
 share/doc/usd/Makefile                                         |      36 -
 share/doc/usd/Title                                            |     695 -
 share/examples/Makefile                                        |       5 -
 share/examples/amd/Makefile                                    |      11 -
 share/examples/amd/cd                                          |       9 -
 share/examples/amd/master                                      |       7 -
 share/examples/amd/net                                         |       8 -
 share/examples/emul/Makefile                                   |       5 -
 share/examples/emul/svr4/Makefile                              |       5 -
 share/examples/emul/svr4/etc/Makefile                          |      11 -
 share/examples/emul/svr4/etc/SVR4_MAKEDEV                      |     177 -
 share/examples/emul/svr4/etc/netconfig                         |      11 -
 share/examples/emul/svr4/etc/nsswitch.conf                     |      16 -
 share/examples/emul/ultrix/Makefile                            |       5 -
 share/examples/emul/ultrix/etc/Makefile                        |      11 -
 share/examples/emul/ultrix/etc/svc.conf                        |      29 -
 share/examples/ftpd/Makefile                                   |      11 -
 share/examples/ftpd/ftpd.conf                                  |      22 -
 share/examples/supfiles/Makefile                               |      12 -
 share/examples/supfiles/ftp.cs.umn.edu                         |      19 -
 share/examples/supfiles/sup.au.netbsd.org                      |      16 -
 share/examples/supfiles/sup.de.netbsd.org                      |      16 -
 share/examples/supfiles/sup.jp.netbsd.org                      |      16 -
 share/examples/supfiles/sup.netbsd.org                         |      19 -
 share/examples/supfiles/sup.no.netbsd.org                      |      16 -
 share/examples/supfiles/sup.uk.netbsd.org                      |      16 -
 share/lkm/Makefile                                             |      19 -
 share/lkm/README                                               |     220 -
 share/lkm/misc/Makefile                                        |      49 -
 share/lkm/misc/README                                          |      89 -
 share/lkm/misc/module/Makefile                                 |      66 -
 share/lkm/misc/module/misccall.c                               |      77 -
 share/lkm/misc/module/miscmod.c                                |     188 -
 share/lkm/misc/test/Makefile                                   |      67 -
 share/lkm/misc/test/testmisc.c                                 |      62 -
 share/lkm/syscall/Makefile                                     |      50 -
 share/lkm/syscall/README                                       |      69 -
 share/lkm/syscall/module/Makefile                              |      66 -
 share/lkm/syscall/module/mycall.c                              |      76 -
 share/lkm/syscall/module/newsyscall.c                          |     114 -
 share/lkm/syscall/test/Makefile                                |      67 -
 share/lkm/syscall/test/testsyscall.c                           |      62 -
 share/lkm/vfs/Makefile                                         |      49 -
 share/lkm/vfs/README                                           |      98 -
 share/lkm/vfs/module/Makefile                                  |      75 -
 share/lkm/vfs/module/kernfsmod.c                               |     107 -
 share/man/Makefile                                             |      16 -
 share/man/man0/COPYRIGHT                                       |      68 -
 share/man/man0/Makefile                                        |      12 -
 share/man/man0/back                                            |      84 -
 share/man/man0/break                                           |       5 -
 share/man/man0/cover                                           |      65 -
 share/man/man0/cshcmd                                          |      54 -
 share/man/man0/groff.sed                                       |      22 -
 share/man/man0/ignore                                          |      99 -
 share/man/man0/makewhatis.sed                                  |      66 -
 share/man/man0/man1                                            |     283 -
 share/man/man0/man2                                            |     107 -
 share/man/man0/man3                                            |     257 -
 share/man/man0/man4                                            |      52 -
 share/man/man0/man5                                            |      54 -
 share/man/man0/man6                                            |      42 -
 share/man/man0/man7                                            |      18 -
 share/man/man0/man8                                            |     145 -
 share/man/man0/title.cdrom                                     |    1264 -
 share/man/man0/title.prm                                       |     591 -
 share/man/man0/title.urm                                       |    2022 -
 share/man/man0/tocrc                                           |      78 -
 share/man/man1/Makefile                                        |       9 -
 share/man/man1/cd.1                                            |      99 -
 share/man/man1/intro.1                                         |      77 -
 share/man/man1/man1.atari/Makefile                             |       6 -
 share/man/man1/man1.atari/edahdi.1                             |     155 -
 share/man/man1/man1.atari/msconfig.1                           |      65 -
 share/man/man1/man1.i386/Makefile                              |       7 -
 share/man/man1/man1.i386/cursor.1                              |      76 -
 share/man/man1/man1.i386/fed.1                                 |      52 -
 share/man/man1/man1.i386/fontedit.1                            |      60 -
 share/man/man1/man1.i386/kcon.1                                |     126 -
 share/man/man1/man1.i386/loadfont.1                            |     115 -
 share/man/man1/man1.i386/mcon.1                                |     190 -
 share/man/man1/man1.i386/scon.1                                |     216 -
 share/man/man1/man1.i386/vt220keys.1                           |     133 -
 share/man/man1/man1.i386/vttest.1                              |      15 -
 share/man/man1/man1.x68k/Makefile                              |       6 -
 share/man/man1/man1.x68k/aout2hux.1                            |      77 -
 share/man/man1/man1.x68k/bellctrl.1                            |      78 -
 share/man/man1/man1.x68k/loadfont.1                            |      35 -
 share/man/man1/man1.x68k/loadkmap.1                            |      19 -
 share/man/man1/man1.x68k/palette.1                             |      44 -
 share/man/man1/man1.x68k/tvctrl.1                              |      19 -
 share/man/man1/wait.1                                          |     102 -
 share/man/man3/Makefile                                        |      34 -
 share/man/man3/assert.3                                        |      96 -
 share/man/man3/bitstring.3                                     |     182 -
 share/man/man3/dlfcn.3                                         |     215 -
 share/man/man3/end.3                                           |      83 -
 share/man/man3/intro.3                                         |     156 -
 share/man/man3/man3.i386/Makefile                              |       6 -
 share/man/man3/man3.i386/keycap.3                              |     123 -
 share/man/man3/queue.3                                         |     739 -
 share/man/man3/stdarg.3                                        |     211 -
 share/man/man4/Makefile                                        |      57 -
 share/man/man4/aha.4                                           |      55 -
 share/man/man4/ahb.4                                           |      49 -
 share/man/man4/ahc.4                                           |     170 -
 share/man/man4/aic.4                                           |      88 -
 share/man/man4/aria.4                                          |      79 -
 share/man/man4/ast.4                                           |      93 -
 share/man/man4/atalk.4                                         |     184 -
 share/man/man4/audio.4                                         |     657 -
 share/man/man4/bha.4                                           |      75 -
 share/man/man4/boca.4                                          |     135 -
 share/man/man4/bpf.4                                           |     729 -
 share/man/man4/ccd.4                                           |     163 -
 share/man/man4/cd.4                                            |     427 -
 share/man/man4/ch.4                                            |      50 -
 share/man/man4/clnp.4                                          |     172 -
 share/man/man4/cltp.4                                          |     129 -
 share/man/man4/cy.4                                            |      91 -
 share/man/man4/ddb.4                                           |     913 -
 share/man/man4/dpt.4                                           |      82 -
 share/man/man4/drum.4                                          |      61 -
 share/man/man4/eap.4                                           |      59 -
 share/man/man4/ec.4                                            |     169 -
 share/man/man4/eg.4                                            |      46 -
 share/man/man4/eisa.4                                          |      98 -
 share/man/man4/el.4                                            |      49 -
 share/man/man4/en.4                                            |      79 -
 share/man/man4/ep.4                                            |     169 -
 share/man/man4/esh.4                                           |      90 -
 share/man/man4/esis.4                                          |     235 -
 share/man/man4/eso.4                                           |      71 -
 share/man/man4/esp.4                                           |     143 -
 share/man/man4/ess.4                                           |      83 -
 share/man/man4/ex.4                                            |      83 -
 share/man/man4/exphy.4                                         |      57 -
 share/man/man4/faith.4                                         |     122 -
 share/man/man4/fd.4                                            |      93 -
 share/man/man4/fpa.4                                           |      60 -
 share/man/man4/fxp.4                                           |     100 -
 share/man/man4/gif.4                                           |     232 -
 share/man/man4/gre.4                                           |     209 -
 share/man/man4/gus.4                                           |      94 -
 share/man/man4/guspnp.4                                        |     105 -
 share/man/man4/icmp.4                                          |     126 -
 share/man/man4/icsphy.4                                        |      55 -
 share/man/man4/idp.4                                           |     178 -
 share/man/man4/ifmedia.4                                       |     189 -
 share/man/man4/inet.4                                          |     185 -
 share/man/man4/inet6.4                                         |     286 -
 share/man/man4/inphy.4                                         |      56 -
 share/man/man4/iophy.4                                         |      56 -
 share/man/man4/ip.4                                            |     414 -
 share/man/man4/ipip.4                                          |     141 -
 share/man/man4/ipsec.4                                         |     199 -
 share/man/man4/isa.4                                           |     244 -
 share/man/man4/isapnp.4                                        |     137 -
 share/man/man4/iso.4                                           |     188 -
 share/man/man4/isp.4                                           |      85 -
 share/man/man4/iy.4                                            |      90 -
 share/man/man4/lc.4                                            |      68 -
 share/man/man4/lkm.4                                           |     147 -
 share/man/man4/lo.4                                            |      82 -
 share/man/man4/lxtphy.4                                        |      55 -
 share/man/man4/man4.amiga/Makefile                             |      11 -
 share/man/man4/man4.amiga/afsc.4                               |      90 -
 share/man/man4/man4.amiga/ahsc.4                               |      90 -
 share/man/man4/man4.amiga/atzsc.4                              |      98 -
 share/man/man4/man4.amiga/autoconf.4                           |      95 -
 share/man/man4/man4.amiga/bah.4                                |     127 -
 share/man/man4/man4.amiga/console.4                            |      79 -
 share/man/man4/man4.amiga/ed.4                                 |      75 -
 share/man/man4/man4.amiga/es.4                                 |      73 -
 share/man/man4/man4.amiga/fdc.4                                |      86 -
 share/man/man4/man4.amiga/grfcl.4                              |     104 -
 share/man/man4/man4.amiga/grfcv.4                              |      78 -
 share/man/man4/man4.amiga/grfcv3d.4                            |      79 -
 share/man/man4/man4.amiga/grfet.4                              |      92 -
 share/man/man4/man4.amiga/grfrh.4                              |      81 -
 share/man/man4/man4.amiga/grfrt.4                              |      78 -
 share/man/man4/man4.amiga/grful.4                              |      85 -
 share/man/man4/man4.amiga/gtsc.4                               |      90 -
 share/man/man4/man4.amiga/intro.4                              |     176 -
 share/man/man4/man4.amiga/ite.4                                |     141 -
 share/man/man4/man4.amiga/le.4                                 |     116 -
 share/man/man4/man4.amiga/mem.4                                |      80 -
 share/man/man4/man4.amiga/mfcs.4                               |      89 -
 share/man/man4/man4.amiga/mgnsc.4                              |      82 -
 share/man/man4/man4.amiga/qn.4                                 |      96 -
 share/man/man4/man4.amiga/ser.4                                |      85 -
 share/man/man4/man4.amiga/wesc.4                               |      90 -
 share/man/man4/man4.amiga/zssc.4                               |      82 -
 share/man/man4/man4.arm32/Makefile                             |      12 -
 share/man/man4/man4.arm32/asc.4                                |      48 -
 share/man/man4/man4.arm32/autoconf.4                           |      66 -
 share/man/man4/man4.arm32/beep.4                               |      44 -
 share/man/man4/man4.arm32/com.4                                |     101 -
 share/man/man4/man4.arm32/cosc.4                               |      48 -
 share/man/man4/man4.arm32/csc.4                                |      48 -
 share/man/man4/man4.arm32/ea.4                                 |      60 -
 share/man/man4/man4.arm32/eb.4                                 |      60 -
 share/man/man4/man4.arm32/eh.4                                 |      59 -
 share/man/man4/man4.arm32/em.4                                 |      58 -
 share/man/man4/man4.arm32/es.4                                 |      53 -
 share/man/man4/man4.arm32/ie.4                                 |      58 -
 share/man/man4/man4.arm32/intro.4                              |     144 -
 share/man/man4/man4.arm32/kbd.4                                |      44 -
 share/man/man4/man4.arm32/lpt.4                                |      52 -
 share/man/man4/man4.arm32/mainbus.4                            |      46 -
 share/man/man4/man4.arm32/mem.4                                |      83 -
 share/man/man4/man4.arm32/oak.4                                |      48 -
 share/man/man4/man4.arm32/podulebus.4                          |      46 -
 share/man/man4/man4.arm32/ptsc.4                               |      48 -
 share/man/man4/man4.arm32/quadmouse.4                          |      49 -
 share/man/man4/man4.arm32/wd.4                                 |      46 -
 share/man/man4/man4.atari/Makefile                             |       8 -
 share/man/man4/man4.atari/et.4                                 |      84 -
 share/man/man4/man4.atari/floppy.4                             |      65 -
 share/man/man4/man4.atari/intro.4                              |     170 -
 share/man/man4/man4.atari/ms.4                                 |     106 -
 share/man/man4/man4.hp300/Makefile                             |       9 -
 share/man/man4/man4.hp300/autoconf.4                           |     138 -
 share/man/man4/man4.hp300/cons.4                               |      76 -
 share/man/man4/man4.hp300/ct.4                                 |     107 -
 share/man/man4/man4.hp300/dca.4                                |      87 -
 share/man/man4/man4.hp300/dcl.4                                |     127 -
 share/man/man4/man4.hp300/dcm.4                                |     100 -
 share/man/man4/man4.hp300/dv.4                                 |     170 -
 share/man/man4/man4.hp300/gb.4                                 |     182 -
 share/man/man4/man4.hp300/grf.4                                |     211 -
 share/man/man4/man4.hp300/hil.4                                |     560 -
 share/man/man4/man4.hp300/intro.4                              |     140 -
 share/man/man4/man4.hp300/ite.4                                |     167 -
 share/man/man4/man4.hp300/le.4                                 |     106 -
 share/man/man4/man4.hp300/mem.4                                |      88 -
 share/man/man4/man4.hp300/ppi.4                                |      79 -
 share/man/man4/man4.hp300/rb.4                                 |     173 -
 share/man/man4/man4.hp300/rd.4                                 |     318 -
 share/man/man4/man4.hp300/rmp.4                                |     163 -
 share/man/man4/man4.hp300/st.4                                 |     229 -
 share/man/man4/man4.hp300/tc.4                                 |     178 -
 share/man/man4/man4.i386/Makefile                              |      10 -
 share/man/man4/man4.i386/apm.4                                 |     174 -
 share/man/man4/man4.i386/autoconf.4                            |      64 -
 share/man/man4/man4.i386/busmouse.4                            |      82 -
 share/man/man4/man4.i386/com.4                                 |      97 -
 share/man/man4/man4.i386/console.4                             |      91 -
 share/man/man4/man4.i386/fdc.4                                 |     113 -
 share/man/man4/man4.i386/ie.4                                  |      55 -
 share/man/man4/man4.i386/intro.4                               |     281 -
 share/man/man4/man4.i386/joy.4                                 |     135 -
 share/man/man4/man4.i386/le.4                                  |      58 -
 share/man/man4/man4.i386/lms.4                                 |      63 -
 share/man/man4/man4.i386/lpt.4                                 |      60 -
 share/man/man4/man4.i386/mem.4                                 |      84 -
 share/man/man4/man4.i386/mms.4                                 |      63 -
 share/man/man4/man4.i386/npx.4                                 |      76 -
 share/man/man4/man4.i386/opms.4                                |      79 -
 share/man/man4/man4.i386/pcvt.4                                |     969 -
 share/man/man4/man4.i386/speaker.4                             |     157 -
 share/man/man4/man4.mac68k/Makefile                            |       8 -
 share/man/man4/man4.mac68k/adb.4                               |     278 -
 share/man/man4/man4.mac68k/ae.4                                |      93 -
 share/man/man4/man4.mac68k/autoconf.4                          |     101 -
 share/man/man4/man4.mac68k/intro.4                             |     140 -
 share/man/man4/man4.mac68k/iwm.4                               |      95 -
 share/man/man4/man4.mac68k/mainbus.4                           |      65 -
 share/man/man4/man4.mac68k/mc.4                                |      83 -
 share/man/man4/man4.mac68k/mem.4                               |      79 -
 share/man/man4/man4.mac68k/obio.4                              |      64 -
 share/man/man4/man4.mac68k/sn.4                                |      93 -
 share/man/man4/man4.pc532/Makefile                             |       8 -
 share/man/man4/man4.pc532/intro.4                              |     128 -
 share/man/man4/man4.pc532/lpt.4                                |      88 -
 share/man/man4/man4.pc532/mem.4                                |      73 -
 share/man/man4/man4.pc532/ncr.4                                |      76 -
 share/man/man4/man4.pc532/plip.4                               |     109 -
 share/man/man4/man4.pc532/scn.4                                |     173 -
 share/man/man4/man4.pmax/Makefile                              |       8 -
 share/man/man4/man4.pmax/asc.4                                 |      89 -
 share/man/man4/man4.pmax/dc.4                                  |     118 -
 share/man/man4/man4.pmax/intro.4                               |     193 -
 share/man/man4/man4.pmax/ioasic.4                              |     101 -
 share/man/man4/man4.pmax/le.4                                  |     121 -
 share/man/man4/man4.pmax/lk201.4                               |      70 -
 share/man/man4/man4.pmax/px.4                                  |      87 -
 share/man/man4/man4.pmax/rz.4                                  |      87 -
 share/man/man4/man4.pmax/scc.4                                 |     108 -
 share/man/man4/man4.pmax/sii.4                                 |      95 -
 share/man/man4/man4.pmax/tc.4                                  |      65 -
 share/man/man4/man4.pmax/tz.4                                  |      87 -
 share/man/man4/man4.sparc/Makefile                             |      10 -
 share/man/man4/man4.sparc/autoconf.4                           |      64 -
 share/man/man4/man4.sparc/bwtwo.4                              |      57 -
 share/man/man4/man4.sparc/cgeight.4                            |      64 -
 share/man/man4/man4.sparc/cgfour.4                             |      64 -
 share/man/man4/man4.sparc/cgfourteen.4                         |      80 -
 share/man/man4/man4.sparc/cgsix.4                              |      90 -
 share/man/man4/man4.sparc/cgthree.4                            |      62 -
 share/man/man4/man4.sparc/cgtwo.4                              |      63 -
 share/man/man4/man4.sparc/fd.4                                 |     127 -
 share/man/man4/man4.sparc/intro.4                              |     279 -
 share/man/man4/man4.sparc/kbd.4                                |     190 -
 share/man/man4/man4.sparc/le.4                                 |     112 -
 share/man/man4/man4.sparc/magma.4                              |     128 -
 share/man/man4/man4.sparc/mem.4                                |      80 -
 share/man/man4/man4.sparc/ms.4                                 |     106 -
 share/man/man4/man4.sparc/openprom.4                           |     165 -
 share/man/man4/man4.sparc/tcx.4                                |      68 -
 share/man/man4/man4.sun3/Makefile                              |       9 -
 share/man/man4/man4.sun3/autoconf.4                            |      64 -
 share/man/man4/man4.sun3/bwtwo.4                               |      56 -
 share/man/man4/man4.sun3/cgfour.4                              |      56 -
 share/man/man4/man4.sun3/cgtwo.4                               |      58 -
 share/man/man4/man4.sun3/fd.4                                  |     124 -
 share/man/man4/man4.sun3/ie.4                                  |      73 -
 share/man/man4/man4.sun3/intro.4                               |     175 -
 share/man/man4/man4.sun3/kbd.4                                 |     187 -
 share/man/man4/man4.sun3/le.4                                  |     181 -
 share/man/man4/man4.sun3/leds.4                                |     118 -
 share/man/man4/man4.sun3/mem.4                                 |      79 -
 share/man/man4/man4.sun3/ms.4                                  |     106 -
 share/man/man4/man4.vax/Makefile                               |      12 -
 share/man/man4/man4.vax/acc.4                                  |     106 -
 share/man/man4/man4.vax/ad.4                                   |      89 -
 share/man/man4/man4.vax/autoconf.4                             |     275 -
 share/man/man4/man4.vax/cons.4                                 |     152 -
 share/man/man4/man4.vax/crl.4                                  |      84 -
 share/man/man4/man4.vax/css.4                                  |     106 -
 share/man/man4/man4.vax/ct.4                                   |      72 -
 share/man/man4/man4.vax/ddn.4                                  |     134 -
 share/man/man4/man4.vax/de.4                                   |     133 -
 share/man/man4/man4.vax/dh.4                                   |     135 -
 share/man/man4/man4.vax/dhu.4                                  |     114 -
 share/man/man4/man4.vax/dl.4                                   |     123 -
 share/man/man4/man4.vax/dmc.4                                  |     160 -
 share/man/man4/man4.vax/dmf.4                                  |     164 -
 share/man/man4/man4.vax/dmv.4                                  |     130 -
 share/man/man4/man4.vax/dmz.4                                  |     137 -
 share/man/man4/man4.vax/dn.4                                   |     115 -
 share/man/man4/man4.vax/dz.4                                   |     119 -
 share/man/man4/man4.vax/ec.4                                   |     141 -
 share/man/man4/man4.vax/en.4                                   |     148 -
 share/man/man4/man4.vax/ex.4                                   |     110 -
 share/man/man4/man4.vax/fl.4                                   |      75 -
 share/man/man4/man4.vax/hdh.4                                  |     126 -
 share/man/man4/man4.vax/hk.4                                   |     202 -
 share/man/man4/man4.vax/hp.4                                   |     173 -
 share/man/man4/man4.vax/ht.4                                   |     114 -
 share/man/man4/man4.vax/hy.4                                   |     138 -
 share/man/man4/man4.vax/ik.4                                   |      90 -
 share/man/man4/man4.vax/il.4                                   |     111 -
 share/man/man4/man4.vax/intro.4                                |     184 -
 share/man/man4/man4.vax/ix.4                                   |     139 -
 share/man/man4/man4.vax/kg.4                                   |      71 -
 share/man/man4/man4.vax/lp.4                                   |      87 -
 share/man/man4/man4.vax/mem.4                                  |     106 -
 share/man/man4/man4.vax/mt.4                                   |     118 -
 share/man/man4/man4.vax/mtc.4                                  |      74 -
 share/man/man4/man4.vax/np.4                                   |     137 -
 share/man/man4/man4.vax/pcl.4                                  |     134 -
 share/man/man4/man4.vax/ps.4                                   |     154 -
 share/man/man4/man4.vax/qe.4                                   |      87 -
 share/man/man4/man4.vax/rx.4                                   |     255 -
 share/man/man4/man4.vax/tm.4                                   |     111 -
 share/man/man4/man4.vax/ts.4                                   |     103 -
 share/man/man4/man4.vax/tu.4                                   |      99 -
 share/man/man4/man4.vax/uda.4                                  |      81 -
 share/man/man4/man4.vax/up.4                                   |     258 -
 share/man/man4/man4.vax/ut.4                                   |     109 -
 share/man/man4/man4.vax/uu.4                                   |     158 -
 share/man/man4/man4.vax/va.4                                   |     175 -
 share/man/man4/man4.vax/vp.4                                   |     123 -
 share/man/man4/man4.vax/vv.4                                   |     141 -
 share/man/man4/man4.x68k/Makefile                              |       6 -
 share/man/man4/man4.x68k/intio.4                               |      68 -
 share/man/man4/man4.x68k/intro.4                               |     154 -
 share/man/man4/man4.x68k/mfp.4                                 |      64 -
 share/man/man4/man4.x68k/neptune.4                             |      72 -
 share/man/man4/man4.x68k/pow.4                                 |     183 -
 share/man/man4/mcd.4                                           |      81 -
 share/man/man4/md.4                                            |      31 -
 share/man/man4/midi.4                                          |     117 -
 share/man/man4/mii.4                                           |     101 -
 share/man/man4/mpu.4                                           |      69 -
 share/man/man4/mtio.4                                          |     173 -
 share/man/man4/ncr.4                                           |     115 -
 share/man/man4/ne.4                                            |      77 -
 share/man/man4/netintro.4                                      |     332 -
 share/man/man4/ns.4                                            |     181 -
 share/man/man4/nsip.4                                          |     130 -
 share/man/man4/nsphy.4                                         |      56 -
 share/man/man4/null.4                                          |      58 -
 share/man/man4/ohci.4                                          |      59 -
 share/man/man4/opl.4                                           |      74 -
 share/man/man4/options.4                                       |    1545 -
 share/man/man4/pcdisplay.4                                     |      43 -
 share/man/man4/pci.4                                           |     212 -
 share/man/man4/pciide.4                                        |      97 -
 share/man/man4/pckbc.4                                         |      35 -
 share/man/man4/pckbd.4                                         |     113 -
 share/man/man4/pcmcia.4                                        |     105 -
 share/man/man4/pcppi.4                                         |      46 -
 share/man/man4/pcscp.4                                         |      81 -
 share/man/man4/pms.4                                           |      64 -
 share/man/man4/ppp.4                                           |      84 -
 share/man/man4/pss.4                                           |      72 -
 share/man/man4/pty.4                                           |     230 -
 share/man/man4/puc.4                                           |     132 -
 share/man/man4/qsphy.4                                         |      55 -
 share/man/man4/raid.4                                          |     329 -
 share/man/man4/rnd.4                                           |     236 -
 share/man/man4/route.4                                         |     314 -
 share/man/man4/rtfps.4                                         |     103 -
 share/man/man4/sb.4                                            |     108 -
 share/man/man4/scsi.4                                          |     354 -
 share/man/man4/sd.4                                            |     252 -
 share/man/man4/se.4                                            |      61 -
 share/man/man4/sea.4                                           |      56 -
 share/man/man4/si.4                                            |     191 -
 share/man/man4/sl.4                                            |     100 -
 share/man/man4/sm.4                                            |      89 -
 share/man/man4/spp.4                                           |     193 -
 share/man/man4/sqphy.4                                         |      56 -
 share/man/man4/ss.4                                            |      40 -
 share/man/man4/st.4                                            |     435 -
 share/man/man4/strip.4                                         |     254 -
 share/man/man4/sv.4                                            |      61 -
 share/man/man4/tb.4                                            |     110 -
 share/man/man4/tcom.4                                          |     146 -
 share/man/man4/tcp.4                                           |     193 -
 share/man/man4/termios.4                                       |    1547 -
 share/man/man4/tl.4                                            |      97 -
 share/man/man4/tlphy.4                                         |      57 -
 share/man/man4/tp.4                                            |     714 -
 share/man/man4/tqphy.4                                         |      55 -
 share/man/man4/tr.4                                            |      84 -
 share/man/man4/tty.4                                           |     424 -
 share/man/man4/tun.4                                           |     217 -
 share/man/man4/uaudio.4                                        |      59 -
 share/man/man4/udp.4                                           |     151 -
 share/man/man4/ugen.4                                          |     284 -
 share/man/man4/uha.4                                           |      56 -
 share/man/man4/uhci.4                                          |      59 -
 share/man/man4/uhid.4                                          |     118 -
 share/man/man4/uk.4                                            |      90 -
 share/man/man4/ukbd.4                                          |      63 -
 share/man/man4/ukphy.4                                         |      59 -
 share/man/man4/ulpt.4                                          |      69 -
 share/man/man4/umass.4                                         |      63 -
 share/man/man4/umodem.4                                        |      81 -
 share/man/man4/ums.4                                           |      62 -
 share/man/man4/unix.4                                          |     223 -
 share/man/man4/usb.4                                           |     332 -
 share/man/man4/vga.4                                           |     102 -
 share/man/man4/vnd.4                                           |      95 -
 share/man/man4/wd.4                                            |      57 -
 share/man/man4/wdc.4                                           |      70 -
 share/man/man4/wds.4                                           |      61 -
 share/man/man4/we.4                                            |     152 -
 share/man/man4/wi.4                                            |     108 -
 share/man/man4/wscons.4                                        |     265 -
 share/man/man4/wsdisplay.4                                     |     120 -
 share/man/man4/wskbd.4                                         |      93 -
 share/man/man4/wsmouse.4                                       |      64 -
 share/man/man4/wsmux.4                                         |      95 -
 share/man/man4/wss.4                                           |      67 -
 share/man/man4/wt.4                                            |      64 -
 share/man/man4/ym.4                                            |      59 -
 share/man/man4/zstty.4                                         |      92 -
 share/man/man5/Makefile                                        |      19 -
 share/man/man5/a.out.5                                         |     455 -
 share/man/man5/acct.5                                          |     114 -
 share/man/man5/ar.5                                            |     159 -
 share/man/man5/core.5                                          |     130 -
 share/man/man5/daily.conf.5                                    |     117 -
 share/man/man5/dir.5                                           |     153 -
 share/man/man5/disktab.5                                       |     144 -
 share/man/man5/ethers.5                                        |      46 -
 share/man/man5/fs.5                                            |     350 -
 share/man/man5/fstab.5                                         |     314 -
 share/man/man5/genassym.cf.5                                   |      92 -
 share/man/man5/group.5                                         |     216 -
 share/man/man5/hesiod.conf.5                                   |      52 -
 share/man/man5/hosts.5                                         |     123 -
 share/man/man5/hosts.equiv.5                                   |     176 -
 share/man/man5/ifaliases.5                                     |      70 -
 share/man/man5/intro.5                                         |      46 -
 share/man/man5/ld.so.conf.5                                    |      82 -
 share/man/man5/link.5                                          |     620 -
 share/man/man5/lkm.conf.5                                      |     118 -
 share/man/man5/man5.i386/Makefile                              |       6 -
 share/man/man5/man5.i386/keycap.5                              |     135 -
 share/man/man5/mk.conf.5                                       |     175 -
 share/man/man5/monthly.conf.5                                  |      58 -
 share/man/man5/motd.5                                          |      38 -
 share/man/man5/netgroup.5                                      |     120 -
 share/man/man5/networks.5                                      |     171 -
 share/man/man5/nsswitch.conf.5                                 |     265 -
 share/man/man5/passwd.5                                        |     333 -
 share/man/man5/phones.5                                        |      78 -
 share/man/man5/printcap.5                                      |     294 -
 share/man/man5/protocols.5                                     |      79 -
 share/man/man5/ranlib.5                                        |      81 -
 share/man/man5/rc.conf.5                                       |     715 -
 share/man/man5/remote.5                                        |     211 -
 share/man/man5/resolv.conf.5                                   |     204 -
 share/man/man5/rpc.5                                           |      75 -
 share/man/man5/security.conf.5                                 |     127 -
 share/man/man5/services.5                                      |      87 -
 share/man/man5/shells.5                                        |      82 -
 share/man/man5/stab.5                                          |     223 -
 share/man/man5/ttyaction.5                                     |     113 -
 share/man/man5/types.5                                         |     172 -
 share/man/man5/utmp.5                                          |     221 -
 share/man/man5/weekly.conf.5                                   |      67 -
 share/man/man6/Makefile                                        |       5 -
 share/man/man6/intro.6                                         |      46 -
 share/man/man7/Makefile                                        |      10 -
 share/man/man7/ascii.7                                         |     118 -
 share/man/man7/environ.7                                       |     201 -
 share/man/man7/hier.7                                          |     964 -
 share/man/man7/hostname.7                                      |      95 -
 share/man/man7/intro.7                                         |      71 -
 share/man/man7/mailaddr.7                                      |     112 -
 share/man/man7/mdoc.7                                          |     422 -
 share/man/man7/mdoc.samples.7                                  |    2925 -
 share/man/man7/operator.7                                      |      67 -
 share/man/man7/packages.7                                      |     650 -
 share/man/man7/release.7                                       |     379 -
 share/man/man7/signal.7                                        |     132 -
 share/man/man7/symlink.7                                       |     464 -
 share/man/man8/MAKEDEV2manpage.pl                              |     267 -
 share/man/man8/Makefile                                        |      17 -
 share/man/man8/adduser.8                                       |     295 -
 share/man/man8/compat_freebsd.8                                |     377 -
 share/man/man8/compat_ibcs2.8                                  |     185 -
 share/man/man8/compat_linux.8                                  |     407 -
 share/man/man8/compat_sunos.8                                  |     135 -
 share/man/man8/compat_svr4.8                                   |     182 -
 share/man/man8/compat_ultrix.8                                 |     129 -
 share/man/man8/diskless.8                                      |     337 -
 share/man/man8/genassym.sh.8                                   |      85 -
 share/man/man8/intro.8                                         |      73 -
 share/man/man8/makedev.8                                       |     114 -
 share/man/man8/man8.alpha/MAKEDEV.8                            |     268 -
 share/man/man8/man8.alpha/MAKEDEV.8.template                   |     127 -
 share/man/man8/man8.alpha/Makefile                             |      10 -
 share/man/man8/man8.alpha/boot.8                               |     156 -
 share/man/man8/man8.alpha/installboot.8                        |     208 -
 share/man/man8/man8.alpha/installboot.old.8                    |      95 -
 share/man/man8/man8.alpha/mkbootimage.8                        |     128 -
 share/man/man8/man8.alpha/setnetbootinfo.8                     |     147 -
 share/man/man8/man8.amiga/MAKEDEV.8                            |     203 -
 share/man/man8/man8.amiga/MAKEDEV.8.template                   |      81 -
 share/man/man8/man8.amiga/Makefile                             |       8 -
 share/man/man8/man8.amiga/binpatch.8                           |      96 -
 share/man/man8/man8.amiga/boot.8                               |     244 -
 share/man/man8/man8.amiga/installboot.8                        |     134 -
 share/man/man8/man8.arm32/MAKEDEV.8                            |     245 -
 share/man/man8/man8.arm32/MAKEDEV.8.template                   |      72 -
 share/man/man8/man8.arm32/Makefile                             |       8 -
 share/man/man8/man8.atari/MAKEDEV.8                            |     210 -
 share/man/man8/man8.atari/MAKEDEV.8.template                   |      80 -
 share/man/man8/man8.atari/Makefile                             |       8 -
 share/man/man8/man8.atari/binpatch.8                           |      96 -
 share/man/man8/man8.atari/boot.8                               |     208 -
 share/man/man8/man8.atari/bootpref.8                           |     205 -
 share/man/man8/man8.atari/installboot.8                        |     147 -
 share/man/man8/man8.bebox/MAKEDEV.8                            |     224 -
 share/man/man8/man8.bebox/MAKEDEV.8.template                   |      82 -
 share/man/man8/man8.bebox/Makefile                             |       7 -
 share/man/man8/man8.hp300/MAKEDEV.8                            |     173 -
 share/man/man8/man8.hp300/MAKEDEV.8.template                   |      80 -
 share/man/man8/man8.hp300/Makefile                             |       8 -
 share/man/man8/man8.hp300/boot.8                               |     119 -
 share/man/man8/man8.hp300/crash.8                              |     228 -
 share/man/man8/man8.hp300/format.8                             |      69 -
 share/man/man8/man8.hpcmips/MAKEDEV.8                          |     215 -
 share/man/man8/man8.hpcmips/MAKEDEV.8.template                 |      82 -
 share/man/man8/man8.hpcmips/Makefile                           |       7 -
 share/man/man8/man8.i386/MAKEDEV.8                             |     264 -
 share/man/man8/man8.i386/MAKEDEV.8.template                    |      82 -
 share/man/man8/man8.i386/Makefile                              |       9 -
 share/man/man8/man8.i386/boot.8                                |     163 -
 share/man/man8/man8.i386/boot_console.8                        |     127 -
 share/man/man8/man8.i386/dosboot.8                             |     124 -
 share/man/man8/man8.i386/installboot.8                         |     185 -
 share/man/man8/man8.i386/ispcvt.8                              |      91 -
 share/man/man8/man8.i386/kbdio.8                               |     330 -
 share/man/man8/man8.i386/vgaio.8                               |     156 -
 share/man/man8/man8.i386/w95boot.8                             |     194 -
 share/man/man8/man8.mac68k/MAKEDEV.8                           |     185 -
 share/man/man8/man8.mac68k/MAKEDEV.8.template                  |      81 -
 share/man/man8/man8.mac68k/Makefile                            |       8 -
 share/man/man8/man8.mac68k/boot.8                              |     124 -
 share/man/man8/man8.mvme68k/MAKEDEV.8                          |     176 -
 share/man/man8/man8.mvme68k/MAKEDEV.8.template                 |      81 -
 share/man/man8/man8.mvme68k/Makefile                           |       7 -
 share/man/man8/man8.mvme68k/installboot.8                      |      58 -
 share/man/man8/man8.next68k/MAKEDEV.8                          |     196 -
 share/man/man8/man8.next68k/MAKEDEV.8.template                 |      81 -
 share/man/man8/man8.next68k/Makefile                           |       8 -
 share/man/man8/man8.pc532/MAKEDEV.8                            |     180 -
 share/man/man8/man8.pc532/MAKEDEV.8.template                   |      81 -
 share/man/man8/man8.pc532/Makefile                             |       8 -
 share/man/man8/man8.pmax/MAKEDEV.8                             |     198 -
 share/man/man8/man8.pmax/MAKEDEV.8.template                    |      81 -
 share/man/man8/man8.pmax/Makefile                              |       8 -
 share/man/man8/man8.pmax/boot.8                                |     219 -
 share/man/man8/man8.sparc/MAKEDEV.8                            |     186 -
 share/man/man8/man8.sparc/MAKEDEV.8.template                   |      81 -
 share/man/man8/man8.sparc/Makefile                             |       8 -
 share/man/man8/man8.sparc/boot.8                               |     127 -
 share/man/man8/man8.sparc/installboot.8                        |     158 -
 share/man/man8/man8.sparc64/MAKEDEV.8                          |     179 -
 share/man/man8/man8.sparc64/MAKEDEV.8.template                 |      82 -
 share/man/man8/man8.sparc64/Makefile                           |       7 -
 share/man/man8/man8.sparc64/installboot.8                      |      97 -
 share/man/man8/man8.sun3/MAKEDEV.8                             |     156 -
 share/man/man8/man8.sun3/MAKEDEV.8.template                    |      81 -
 share/man/man8/man8.sun3/Makefile                              |       8 -
 share/man/man8/man8.sun3/boot.8                                |     112 -
 share/man/man8/man8.sun3/installboot.8                         |      58 -
 share/man/man8/man8.vax/MAKEDEV.8                              |     247 -
 share/man/man8/man8.vax/MAKEDEV.8.template                     |      73 -
 share/man/man8/man8.vax/Makefile                               |       8 -
 share/man/man8/man8.vax/boot.8                                 |     324 -
 share/man/man8/man8.vax/crash.8                                |     241 -
 share/man/man8/man8.vax/drtest.8                               |     116 -
 share/man/man8/man8.vax/format.8                               |     295 -
 share/man/man8/man8.vax/installboot.8                          |      82 -
 share/man/man8/man8.x68k/MAKEDEV.8                             |     206 -
 share/man/man8/man8.x68k/MAKEDEV.8.template                    |      81 -
 share/man/man8/man8.x68k/Makefile                              |       8 -
 share/man/man8/man8.x68k/boot.8                                |     119 -
 share/man/man8/man8.x68k/loadbsd.8                             |     135 -
 share/man/man8/man8.x68k/poffd.8                               |      84 -
 share/man/man8/man8.x68k/rtcalarm.8                            |      76 -
 share/man/man8/rc.8                                            |     108 -
 share/man/man8/sticky.8                                        |      85 -
 share/man/man8/yp.8                                            |     165 -
 share/man/man9/Makefile                                        |     127 -
 share/man/man9/access.9                                        |      83 -
 share/man/man9/arp.9                                           |     145 -
 share/man/man9/audio.9                                         |     419 -
 share/man/man9/bus_dma.9                                       |     672 -
 share/man/man9/bus_space.9                                     |    1238 -
 share/man/man9/copy.9                                          |     139 -
 share/man/man9/cpu_reboot.9                                    |     113 -
 share/man/man9/ctxsw.9                                         |     144 -
 share/man/man9/disk.9                                          |     373 -
 share/man/man9/disklabel.9                                     |     190 -
 share/man/man9/doshutdownhooks.9                               |      57 -
 share/man/man9/ethersubr.9                                     |     194 -
 share/man/man9/extent.9                                        |     384 -
 share/man/man9/fetch.9                                         |     100 -
 share/man/man9/fork1.9                                         |     123 -
 share/man/man9/humanize_number.9                               |     126 -
 share/man/man9/inittodr.9                                      |     103 -
 share/man/man9/intro.9                                         |      59 -
 share/man/man9/ioctl.9                                         |     129 -
 share/man/man9/kprintf.9                                       |     246 -
 share/man/man9/log.9                                           |      72 -
 share/man/man9/malloc.9                                        |     358 -
 share/man/man9/man9.i386/Makefile                              |       6 -
 share/man/man9/man9.i386/bioscall.9                            |     122 -
 share/man/man9/man9.sun3/Makefile                              |       9 -
 share/man/man9/man9.sun3/isr_add.9                             |     132 -
 share/man/man9/mbuf.9                                          |     573 -
 share/man/man9/microtime.9                                     |      77 -
 share/man/man9/panic.9                                         |      74 -
 share/man/man9/pfil.9                                          |     125 -
 share/man/man9/physio.9                                        |     145 -
 share/man/man9/pool.9                                          |     342 -
 share/man/man9/psignal.9                                       |     143 -
 share/man/man9/resettodr.9                                     |      57 -
 share/man/man9/rnd.9                                           |     190 -
 share/man/man9/rt_timer.9                                      |     136 -
 share/man/man9/shutdownhook_establish.9                        |      90 -
 share/man/man9/sleep.9                                         |     170 -
 share/man/man9/spl.9                                           |     163 -
 share/man/man9/store.9                                         |      88 -
 share/man/man9/time.9                                          |     122 -
 share/man/man9/timeout.9                                       |      82 -
 share/man/man9/uiomove.9                                       |     145 -
 share/man/man9/uvm.9                                           |    1011 -
 share/man/man9/vslock.9                                        |      67 -
 share/man/man9/wdc.9                                           |     412 -
 share/man/tools/.param                                         |      95 -
 share/man/tools/M.folio                                        |     251 -
 share/man/tools/M.tabs                                         |      70 -
 share/man/tools/README                                         |     198 -
 share/man/tools/TOOLKIT                                        |     198 -
 share/man/tools/badcref3                                       |      55 -
 share/man/tools/break                                          |       3 -
 share/man/tools/ckcrefs                                        |      78 -
 share/man/tools/ckfrefs                                        |      74 -
 share/man/tools/cknames                                        |      76 -
 share/man/tools/ckso                                           |      49 -
 share/man/tools/ckspell                                        |      26 -
 share/man/tools/ignore                                         |     891 -
 share/man/tools/line.c                                         |      45 -
 share/man/tools/list                                           |      13 -
 share/man/tools/mcmp                                           |      76 -
 share/man/tools/mgrep                                          |      19 -
 share/man/tools/missing                                        |       3 -
 share/man/tools/mklinks                                        |      42 -
 share/man/tools/mroff                                          |      26 -
 share/man/tools/newsp.errs                                     |    4570 -
 share/man/tools/noso.c                                         |      36 -
 share/man/tools/pages.c                                        |      36 -
 share/man/tools/pgcnt                                          |      92 -
 share/man/tools/prnames                                        |      25 -
 share/man/tools/prsynops                                       |      29 -
 share/man/tools/sp.ignore                                      |    1894 -
 share/man/tools/tocrc                                          |     114 -
 share/me/Makefile                                              |      59 -
 share/me/acm.me                                                |      89 -
 share/me/chars.me                                              |      96 -
 share/me/deltext.me                                            |      55 -
 share/me/eqn.me                                                |     113 -
 share/me/float.me                                              |     102 -
 share/me/footnote.me                                           |     120 -
 share/me/index.me                                              |     111 -
 share/me/letterhead.me                                         |     102 -
 share/me/local.me                                              |      45 -
 share/me/me.7                                                  |     319 -
 share/me/null.me                                               |      41 -
 share/me/refer.me                                              |     131 -
 share/me/revisions                                             |     233 -
 share/me/sh.me                                                 |     144 -
 share/me/strip.sed                                             |      46 -
 share/me/summary.external                                      |     238 -
 share/me/tbl.me                                                |     145 -
 share/me/test/test.accent                                      |       9 -
 share/me/test/test.umlaut                                      |      41 -
 share/me/thesis.me                                             |      55 -
 share/me/tmac.e                                                |    1193 -
 share/misc/Makefile                                            |      25 -
 share/misc/acronyms                                            |      98 -
 share/misc/airport                                             |     343 -
 share/misc/ascii                                               |      50 -
 share/misc/birthtoken                                          |      14 -
 share/misc/bsd-family-tree                                     |     310 -
 share/misc/country                                             |     239 -
 share/misc/domains                                             |     243 -
 share/misc/eqnchar                                             |      92 -
 share/misc/flowers                                             |      49 -
 share/misc/indent.pro                                          |      20 -
 share/misc/inter.phone                                         |     417 -
 share/misc/language                                            |     143 -
 share/misc/man.template                                        |      15 -
 share/misc/mdoc.template                                       |      31 -
 share/misc/na.phone                                            |     296 -
 share/misc/operator                                            |      17 -
 share/misc/style                                               |     324 -
 share/misc/zipcodes                                            |   42157 -
 share/mk/Makefile                                              |      20 -
 share/mk/bsd.README                                            |     614 -
 share/mk/bsd.crypto.mk                                         |      30 -
 share/mk/bsd.dep.mk                                            |      62 -
 share/mk/bsd.depall.mk                                         |       5 -
 share/mk/bsd.doc.mk                                            |      78 -
 share/mk/bsd.files.mk                                          |      44 -
 share/mk/bsd.hostprog.mk                                       |     133 -
 share/mk/bsd.inc.mk                                            |      26 -
 share/mk/bsd.info.mk                                           |      61 -
 share/mk/bsd.kinc.mk                                           |     138 -
 share/mk/bsd.kmod.mk                                           |      96 -
 share/mk/bsd.lib.mk                                            |     427 -
 share/mk/bsd.links.mk                                          |      43 -
 share/mk/bsd.man.mk                                            |     165 -
 share/mk/bsd.nls.mk                                            |      64 -
 share/mk/bsd.obj.mk                                            |      58 -
 share/mk/bsd.own.mk                                            |     253 -
 share/mk/bsd.prog.mk                                           |     205 -
 share/mk/bsd.subdir.mk                                         |      34 -
 share/mk/bsd.sys.mk                                            |     117 -
 share/mk/sys.mk                                                |     207 -
 share/skel/Makefile                                            |       8 -
 share/skel/dot.cshrc                                           |      26 -
 share/skel/dot.login                                           |      10 -
 share/skel/dot.mailrc                                          |       9 -
 share/skel/dot.profile                                         |      13 -
 share/skel/dot.rhosts                                          |       1 -
 share/tabset/3101                                              |       1 -
 share/tabset/9837                                              |       1 -
 share/tabset/Makefile                                          |      10 -
 share/tabset/aa                                                |       1 -
 share/tabset/aed512                                            |       1 -
 share/tabset/beehive                                           |       2 -
 share/tabset/diablo                                            |       3 -
 share/tabset/dtc382                                            |       1 -
 share/tabset/hp700-wy                                          |     Bin 
 share/tabset/ibm3101                                           |       1 -
 share/tabset/std                                               |       1 -
 share/tabset/stdcrt                                            |       1 -
 share/tabset/tandem653                                         |       1 -
 share/tabset/teleray                                           |       1 -
 share/tabset/vt100                                             |       1 -
 share/tabset/vt100-w                                           |       1 -
 share/tabset/wyse-adds                                         |       3 -
 share/tabset/xerox1720                                         |       1 -
 share/tabset/xerox1730                                         |     Bin 
 share/tabset/xerox1730-lm                                      |     Bin 
 share/tabset/zenith29                                          |       1 -
 share/termcap/Makefile                                         |      15 -
 share/termcap/README                                           |      60 -
 share/termcap/map3270                                          |    1027 -
 share/termcap/reorder                                          |      62 -
 share/termcap/tck                                              |      91 -
 share/termcap/termcap.5                                        |    1845 -
 share/termcap/termcap.src                                      |   12949 -
 share/tmac/Makefile                                            |      25 -
 share/tmac/README                                              |     179 -
 share/tmac/andoc                                               |      52 -
 share/tmac/doc                                                 |    3572 -
 share/tmac/doc-common                                          |     477 -
 share/tmac/doc-ditroff                                         |     275 -
 share/tmac/doc-nroff                                           |     227 -
 share/tmac/doc-syms                                            |     428 -
 share/tmac/doc2html                                            |    1463 -
 share/zoneinfo/Makefile                                        |      89 -
 share/zoneinfo/africa                                          |     604 -
 share/zoneinfo/antarctica                                      |     255 -
 share/zoneinfo/asia                                            |    1132 -
 share/zoneinfo/australasia                                     |    1009 -
 share/zoneinfo/backward                                        |      83 -
 share/zoneinfo/etcetera                                        |      65 -
 share/zoneinfo/europe                                          |    2444 -
 share/zoneinfo/factory                                         |       8 -
 share/zoneinfo/iso3166.tab                                     |     262 -
 share/zoneinfo/leapseconds                                     |      45 -
 share/zoneinfo/northamerica                                    |    1398 -
 share/zoneinfo/pacificnew                                      |      26 -
 share/zoneinfo/solar87                                         |     388 -
 share/zoneinfo/solar88                                         |     388 -
 share/zoneinfo/solar89                                         |     393 -
 share/zoneinfo/southamerica                                    |     670 -
 share/zoneinfo/systemv                                         |      35 -
 share/zoneinfo/yearistype.sh                                   |      29 -
 share/zoneinfo/zone.tab                                        |     378 -
 sys/arch/x68k/include/cdefs.h                                  |       2 +-
 sys/arch/x68k/include/cpufunc.h                                |       2 +-
 sys/arch/x68k/include/ieeefp.h                                 |       2 +-
 sys/arch/x68k/include/kbio.h                                   |       2 +-
 sys/arch/x68k/include/pci_machdep.h                            |       2 +-
 sys/arch/x68k/include/powioctl.h                               |       2 +-
 sys/arch/x68k/include/profile.h                                |       2 +-
 sys/arch/x68k/include/setjmp.h                                 |       2 +-
 sys/arch/x68k/include/vuid_event.h                             |       2 +-
 sys/arch/x68k/usr.bin/Makefile                                 |       2 +-
 sys/arch/x68k/usr.sbin/Makefile                                |       2 +-
 sys/arch/x68k/x68k/clockioctl.h                                |       2 +-
 sys/arch/x68k/x68k/kgdb_glue.c                                 |       4 +-
 sys/arch/x68k/x68k/kgdb_proto.h                                |       2 +-
 sys/dev/scsipi/atapi_base.c                                    |      79 +-
 sys/dev/scsipi/atapi_wdc.c                                     |     158 +-
 sys/dev/scsipi/atapiconf.c                                     |     296 +-
 sys/dev/scsipi/atapiconf.h                                     |      16 +-
 sys/dev/scsipi/cd.c                                            |     192 +-
 sys/dev/scsipi/cd_atapi.c                                      |      22 +-
 sys/dev/scsipi/cd_scsi.c                                       |      15 +-
 sys/dev/scsipi/cdvar.h                                         |       9 +-
 sys/dev/scsipi/ch.c                                            |     115 +-
 sys/dev/scsipi/if_se.c                                         |      84 +-
 sys/dev/scsipi/scsi_base.c                                     |      49 +-
 sys/dev/scsipi/scsiconf.c                                      |     670 +-
 sys/dev/scsipi/scsiconf.h                                      |      40 +-
 sys/dev/scsipi/scsipi_all.h                                    |      58 +-
 sys/dev/scsipi/scsipi_base.c                                   |    1544 +-
 sys/dev/scsipi/scsipi_base.h                                   |      23 +-
 sys/dev/scsipi/scsipi_ioctl.c                                  |      73 +-
 sys/dev/scsipi/scsipi_verbose.c                                |       4 +-
 sys/dev/scsipi/scsipiconf.c                                    |       7 +-
 sys/dev/scsipi/scsipiconf.h                                    |     554 +-
 sys/dev/scsipi/sd.c                                            |     245 +-
 sys/dev/scsipi/sd_atapi.c                                      |      12 +-
 sys/dev/scsipi/sd_scsi.c                                       |      30 +-
 sys/dev/scsipi/sdvar.h                                         |       9 +-
 sys/dev/scsipi/ss.c                                            |      65 +-
 sys/dev/scsipi/ss_mustek.c                                     |      26 +-
 sys/dev/scsipi/ss_scanjet.c                                    |      12 +-
 sys/dev/scsipi/ssvar.h                                         |       4 +-
 sys/dev/scsipi/st.c                                            |     197 +-
 sys/dev/scsipi/uk.c                                            |      44 +-
 usr.bin/Makefile                                               |      34 -
 usr.bin/Makefile.inc                                           |       5 -
 usr.bin/apply/Makefile                                         |       6 -
 usr.bin/apply/apply.1                                          |     134 -
 usr.bin/apply/apply.c                                          |     246 -
 usr.bin/apropos/Makefile                                       |       9 -
 usr.bin/apropos/apropos.1                                      |     124 -
 usr.bin/apropos/apropos.c                                      |     249 -
 usr.bin/asa/Makefile                                           |       5 -
 usr.bin/asa/asa.1                                              |      87 -
 usr.bin/asa/asa.c                                              |     122 -
 usr.bin/at/Makefile                                            |      17 -
 usr.bin/at/at.1                                                |     270 -
 usr.bin/at/at.c                                                |     736 -
 usr.bin/at/at.h                                                |      39 -
 usr.bin/at/panic.c                                             |     111 -
 usr.bin/at/panic.h                                             |      33 -
 usr.bin/at/parsetime.c                                         |     667 -
 usr.bin/at/parsetime.h                                         |      30 -
 usr.bin/at/pathnames.h                                         |      47 -
 usr.bin/at/perm.c                                              |     124 -
 usr.bin/at/perm.h                                              |      28 -
 usr.bin/at/privs.h                                             |     100 -
 usr.bin/audio/Makefile                                         |       5 -
 usr.bin/audio/Makefile.inc                                     |      13 -
 usr.bin/audio/common/Makefile                                  |      12 -
 usr.bin/audio/common/audio.c                                   |     376 -
 usr.bin/audio/common/libaudio.h                                |     183 -
 usr.bin/audio/ctl/Makefile                                     |       6 -
 usr.bin/audio/ctl/audioctl.1                                   |     117 -
 usr.bin/audio/ctl/audioctl.h                                   |      36 -
 usr.bin/audio/ctl/ctl.c                                        |     484 -
 usr.bin/audio/play/Makefile                                    |       6 -
 usr.bin/audio/play/audioplay.1                                 |     199 -
 usr.bin/audio/play/play.c                                      |     415 -
 usr.bin/audio/record/Makefile                                  |       6 -
 usr.bin/audio/record/audiorecord.1                             |     168 -
 usr.bin/audio/record/record.c                                  |     380 -
 usr.bin/banner/Makefile                                        |      17 -
 usr.bin/banner/banner.1                                        |      33 -
 usr.bin/banner/banner.c                                        |     186 -
 usr.bin/banner/banner.h                                        |      33 -
 usr.bin/banner/chset.c                                         |    2130 -
 usr.bin/basename/Makefile                                      |       7 -
 usr.bin/basename/basename.1                                    |      94 -
 usr.bin/basename/basename.c                                    |     148 -
 usr.bin/biff/Makefile                                          |       6 -
 usr.bin/biff/biff.1                                            |      88 -
 usr.bin/biff/biff.c                                            |     113 -
 usr.bin/bzip2/Makefile                                         |      19 -
 usr.bin/bzip2/README                                           |       3 -
 usr.bin/bzip2/bzip2.1                                          |     420 -
 usr.bin/bzip2/bzip2.c                                          |    1526 -
 usr.bin/bzip2recover/Makefile                                  |       9 -
 usr.bin/bzip2recover/bzip2recover.c                            |     435 -
 usr.bin/cal/Makefile                                           |       6 -
 usr.bin/cal/README                                             |      42 -
 usr.bin/cal/cal.1                                              |      84 -
 usr.bin/cal/cal.c                                              |     436 -
 usr.bin/calendar/Makefile                                      |      12 -
 usr.bin/calendar/calendar.1                                    |     173 -
 usr.bin/calendar/calendar.c                                    |     523 -
 usr.bin/calendar/calendars/calendar.birthday                   |     262 -
 usr.bin/calendar/calendars/calendar.christian                  |      16 -
 usr.bin/calendar/calendars/calendar.computer                   |      65 -
 usr.bin/calendar/calendars/calendar.history                    |     486 -
 usr.bin/calendar/calendars/calendar.holiday                    |     570 -
 usr.bin/calendar/calendars/calendar.judaic                     |      30 -
 usr.bin/calendar/calendars/calendar.music                      |     177 -
 usr.bin/calendar/calendars/calendar.usholiday                  |      31 -
 usr.bin/calendar/pathnames.h                                   |      41 -
 usr.bin/cap_mkdb/Makefile                                      |       6 -
 usr.bin/cap_mkdb/cap_mkdb.1                                    |     115 -
 usr.bin/cap_mkdb/cap_mkdb.c                                    |     275 -
 usr.bin/cdplay/Makefile                                        |       6 -
 usr.bin/cdplay/cdplay.1                                        |     147 -
 usr.bin/cdplay/cdplay.c                                        |    1067 -
 usr.bin/checknr/Makefile                                       |       6 -
 usr.bin/checknr/checknr.1                                      |     160 -
 usr.bin/checknr/checknr.c                                      |     622 -
 usr.bin/chflags/Makefile                                       |       9 -
 usr.bin/chflags/chflags.1                                      |     138 -
 usr.bin/chflags/chflags.c                                      |     188 -
 usr.bin/chpass/Makefile                                        |      18 -
 usr.bin/chpass/chpass.1                                        |     244 -
 usr.bin/chpass/chpass.c                                        |     305 -
 usr.bin/chpass/chpass.h                                        |      86 -
 usr.bin/chpass/edit.c                                          |     228 -
 usr.bin/chpass/field.c                                         |     280 -
 usr.bin/chpass/pathnames.h                                     |      41 -
 usr.bin/chpass/pw_yp.c                                         |     339 -
 usr.bin/chpass/table.c                                         |      67 -
 usr.bin/chpass/util.c                                          |     123 -
 usr.bin/cksum/Makefile                                         |      11 -
 usr.bin/cksum/cksum.1                                          |     229 -
 usr.bin/cksum/cksum.c                                          |     221 -
 usr.bin/cksum/crc.c                                            |     149 -
 usr.bin/cksum/extern.h                                         |      53 -
 usr.bin/cksum/md5.c                                            |     141 -
 usr.bin/cksum/print.c                                          |      82 -
 usr.bin/cksum/sum1.c                                           |      78 -
 usr.bin/cksum/sum2.c                                           |      80 -
 usr.bin/cmp/Makefile                                           |       7 -
 usr.bin/cmp/cmp.1                                              |     109 -
 usr.bin/cmp/cmp.c                                              |     158 -
 usr.bin/cmp/extern.h                                           |      47 -
 usr.bin/cmp/misc.c                                             |      71 -
 usr.bin/cmp/regular.c                                          |     107 -
 usr.bin/cmp/special.c                                          |     109 -
 usr.bin/col/Makefile                                           |       6 -
 usr.bin/col/README                                             |      48 -
 usr.bin/col/col.1                                              |     142 -
 usr.bin/col/col.c                                              |     553 -
 usr.bin/colcrt/Makefile                                        |       6 -
 usr.bin/colcrt/colcrt.1                                        |     110 -
 usr.bin/colcrt/colcrt.c                                        |     269 -
 usr.bin/colrm/Makefile                                         |       6 -
 usr.bin/colrm/colrm.1                                          |      80 -
 usr.bin/colrm/colrm.c                                          |     145 -
 usr.bin/column/Makefile                                        |       6 -
 usr.bin/column/column.1                                        |     101 -
 usr.bin/column/column.c                                        |     313 -
 usr.bin/comm/Makefile                                          |       6 -
 usr.bin/comm/comm.1                                            |     107 -
 usr.bin/comm/comm.c                                            |     201 -
 usr.bin/compress/Makefile                                      |      11 -
 usr.bin/compress/compress.1                                    |     175 -
 usr.bin/compress/compress.c                                    |     491 -
 usr.bin/compress/doc/NOTES                                     |     139 -
 usr.bin/compress/doc/README                                    |     283 -
 usr.bin/compress/doc/revision.log                              |     116 -
 usr.bin/compress/zopen.3                                       |     142 -
 usr.bin/compress/zopen.c                                       |     748 -
 usr.bin/crontab/Makefile                                       |      13 -
 usr.bin/crunch/COPYRIGHT                                       |      26 -
 usr.bin/crunch/Makefile                                        |       5 -
 usr.bin/crunch/Makefile.inc                                    |       5 -
 usr.bin/crunch/README                                          |      91 -
 usr.bin/crunch/crunchgen/Makefile                              |      10 -
 usr.bin/crunch/crunchgen/crunched_main.c                       |     108 -
 usr.bin/crunch/crunchgen/crunchgen.1                           |     311 -
 usr.bin/crunch/crunchgen/crunchgen.c                           |     906 -
 usr.bin/crunch/crunchgen/mkskel.sh                             |      18 -
 usr.bin/crunch/crunchide/Makefile                              |       6 -
 usr.bin/crunch/crunchide/crunchide.1                           |      87 -
 usr.bin/crunch/crunchide/crunchide.c                           |     267 -
 usr.bin/crunch/crunchide/exec_aout.c                           |     203 -
 usr.bin/crunch/crunchide/exec_ecoff.c                          |      83 -
 usr.bin/crunch/crunchide/exec_elf32.c                          |     335 -
 usr.bin/crunch/crunchide/exec_elf64.c                          |      40 -
 usr.bin/crunch/crunchide/extern.h                              |      67 -
 usr.bin/crunch/examples/Makefile                               |      30 -
 usr.bin/crunch/examples/fixit.conf                             |      46 -
 usr.bin/crunch/examples/freebsd-filesystem.conf                |      26 -
 usr.bin/crunch/examples/freebsd-kcopy.conf                     |      18 -
 usr.bin/crunch/examples/really-big.conf                        |     148 -
 usr.bin/ctags/C.c                                              |     547 -
 usr.bin/ctags/Makefile                                         |       8 -
 usr.bin/ctags/ctags.1                                          |     216 -
 usr.bin/ctags/ctags.c                                          |     279 -
 usr.bin/ctags/ctags.h                                          |      92 -
 usr.bin/ctags/fortran.c                                        |     175 -
 usr.bin/ctags/lisp.c                                           |     112 -
 usr.bin/ctags/print.c                                          |     122 -
 usr.bin/ctags/test/ctags.test                                  |      69 -
 usr.bin/ctags/tree.c                                           |     144 -
 usr.bin/ctags/yacc.c                                           |     158 -
 usr.bin/cut/Makefile                                           |       6 -
 usr.bin/cut/cut.1                                              |     122 -
 usr.bin/cut/cut.c                                              |     289 -
 usr.bin/dirname/Makefile                                       |       7 -
 usr.bin/dirname/dirname.c                                      |     155 -
 usr.bin/du/Makefile                                            |       6 -
 usr.bin/du/du.1                                                |     134 -
 usr.bin/du/du.c                                                |     255 -
 usr.bin/eject/Makefile                                         |       6 -
 usr.bin/eject/eject.1                                          |      90 -
 usr.bin/eject/eject.c                                          |     417 -
 usr.bin/elf2aout/Makefile                                      |      11 -
 usr.bin/elf2aout/elf2aout.1                                    |      67 -
 usr.bin/elf2aout/elf2aout.c                                    |     493 -
 usr.bin/elf2ecoff/Makefile                                     |      11 -
 usr.bin/elf2ecoff/elf2ecoff.1                                  |      63 -
 usr.bin/elf2ecoff/elf2ecoff.c                                  |     755 -
 usr.bin/env/Makefile                                           |       6 -
 usr.bin/env/env.1                                              |     125 -
 usr.bin/env/env.c                                              |     104 -
 usr.bin/error/Makefile                                         |       7 -
 usr.bin/error/error.1                                          |     306 -
 usr.bin/error/error.h                                          |     255 -
 usr.bin/error/filter.c                                         |     210 -
 usr.bin/error/input.c                                          |     578 -
 usr.bin/error/main.c                                           |     307 -
 usr.bin/error/pathnames.h                                      |      45 -
 usr.bin/error/pi.c                                             |     424 -
 usr.bin/error/subr.c                                           |     438 -
 usr.bin/error/touch.c                                          |     822 -
 usr.bin/expand/Makefile                                        |       7 -
 usr.bin/expand/expand.1                                        |      89 -
 usr.bin/expand/expand.c                                        |     188 -
 usr.bin/false/Makefile                                         |       7 -
 usr.bin/false/false.1                                          |      60 -
 usr.bin/false/false.sh                                         |       2 -
 usr.bin/fdformat/Makefile                                      |      10 -
 usr.bin/fdformat/fdformat.1                                    |     142 -
 usr.bin/fdformat/fdformat.c                                    |     304 -
 usr.bin/fdformat/pathnames.h                                   |      40 -
 usr.bin/fgen/Makefile                                          |       8 -
 usr.bin/fgen/fgen.1                                            |      75 -
 usr.bin/fgen/fgen.h                                            |     135 -
 usr.bin/fgen/fgen.l                                            |    2001 -
 usr.bin/file/Header                                            |       5 -
 usr.bin/file/LEGAL.NOTICE                                      |      35 -
 usr.bin/file/Localstuff                                        |       7 -
 usr.bin/file/MAINT                                             |      34 -
 usr.bin/file/Makefile                                          |      36 -
 usr.bin/file/PORTING                                           |      77 -
 usr.bin/file/README                                            |      92 -
 usr.bin/file/apprentice.c                                      |     635 -
 usr.bin/file/ascmagic.c                                        |     131 -
 usr.bin/file/compress.c                                        |     137 -
 usr.bin/file/file.1                                            |     370 -
 usr.bin/file/file.c                                            |     416 -
 usr.bin/file/file.h                                            |     161 -
 usr.bin/file/file2netbsd                                       |     283 -
 usr.bin/file/fsmagic.c                                         |     198 -
 usr.bin/file/internat.c                                        |      93 -
 usr.bin/file/is_tar.c                                          |     113 -
 usr.bin/file/magdir/adventure                                  |      39 -
 usr.bin/file/magdir/alliant                                    |      17 -
 usr.bin/file/magdir/alpha                                      |      21 -
 usr.bin/file/magdir/amanda                                     |      10 -
 usr.bin/file/magdir/amigaos                                    |      10 -
 usr.bin/file/magdir/animation                                  |      58 -
 usr.bin/file/magdir/apl                                        |       6 -
 usr.bin/file/magdir/apple                                      |      12 -
 usr.bin/file/magdir/applix                                     |      12 -
 usr.bin/file/magdir/archive                                    |     216 -
 usr.bin/file/magdir/asterix                                    |      17 -
 usr.bin/file/magdir/att3b                                      |      40 -
 usr.bin/file/magdir/audio                                      |     252 -
 usr.bin/file/magdir/blit                                       |      19 -
 usr.bin/file/magdir/bsdi                                       |      41 -
 usr.bin/file/magdir/c-lang                                     |      13 -
 usr.bin/file/magdir/chi                                        |       7 -
 usr.bin/file/magdir/cisco                                      |      10 -
 usr.bin/file/magdir/clipper                                    |      64 -
 usr.bin/file/magdir/commands                                   |      99 -
 usr.bin/file/magdir/compress                                   |     145 -
 usr.bin/file/magdir/convex                                     |      69 -
 usr.bin/file/magdir/database                                   |      44 -
 usr.bin/file/magdir/diamond                                    |      11 -
 usr.bin/file/magdir/diff                                       |       8 -
 usr.bin/file/magdir/digital                                    |      41 -
 usr.bin/file/magdir/dump                                       |      81 -
 usr.bin/file/magdir/elf                                        |     120 -
 usr.bin/file/magdir/encore                                     |      21 -
 usr.bin/file/magdir/filesystems                                |      62 -
 usr.bin/file/magdir/flash                                      |      10 -
 usr.bin/file/magdir/fonts                                      |      48 -
 usr.bin/file/magdir/frame                                      |      38 -
 usr.bin/file/magdir/freebsd                                    |     130 -
 usr.bin/file/magdir/gimp                                       |      32 -
 usr.bin/file/magdir/gnu                                        |       9 -
 usr.bin/file/magdir/hp                                         |     251 -
 usr.bin/file/magdir/ibm370                                     |      47 -
 usr.bin/file/magdir/ibm6000                                    |      17 -
 usr.bin/file/magdir/iff                                        |      28 -
 usr.bin/file/magdir/images                                     |     245 -
 usr.bin/file/magdir/intel                                      |      35 -
 usr.bin/file/magdir/interleaf                                  |       8 -
 usr.bin/file/magdir/island                                     |       9 -
 usr.bin/file/magdir/ispell                                     |      54 -
 usr.bin/file/magdir/java                                       |      11 -
 usr.bin/file/magdir/karma                                      |       8 -
 usr.bin/file/magdir/lecter                                     |       4 -
 usr.bin/file/magdir/lex                                        |      11 -
 usr.bin/file/magdir/lif                                        |       7 -
 usr.bin/file/magdir/linux                                      |     104 -
 usr.bin/file/magdir/lisp                                       |      18 -
 usr.bin/file/magdir/mach                                       |      38 -
 usr.bin/file/magdir/macintosh                                  |      79 -
 usr.bin/file/magdir/magic                                      |       5 -
 usr.bin/file/magdir/mail.news                                  |      21 -
 usr.bin/file/magdir/mime                                       |       7 -
 usr.bin/file/magdir/mirage                                     |       7 -
 usr.bin/file/magdir/mkid                                       |      10 -
 usr.bin/file/magdir/mmdf                                       |       5 -
 usr.bin/file/magdir/modem                                      |      33 -
 usr.bin/file/magdir/motorola                                   |      32 -
 usr.bin/file/magdir/msdos                                      |     178 -
 usr.bin/file/magdir/ncr                                        |      48 -
 usr.bin/file/magdir/netbsd                                     |     230 -
 usr.bin/file/magdir/news                                       |      12 -
 usr.bin/file/magdir/octave                                     |       4 -
 usr.bin/file/magdir/olf                                        |      97 -
 usr.bin/file/magdir/os2                                        |      23 -
 usr.bin/file/magdir/os9                                        |      85 -
 usr.bin/file/magdir/osf1                                       |       7 -
 usr.bin/file/magdir/pbm                                        |       7 -
 usr.bin/file/magdir/pdf                                        |       7 -
 usr.bin/file/magdir/pdp                                        |      35 -
 usr.bin/file/magdir/pgp                                        |      13 -
 usr.bin/file/magdir/pkgadd                                     |       5 -
 usr.bin/file/magdir/plus5                                      |      17 -
 usr.bin/file/magdir/printer                                    |      84 -
 usr.bin/file/magdir/psdbms                                     |       7 -
 usr.bin/file/magdir/pyramid                                    |      11 -
 usr.bin/file/magdir/riff                                       |      93 -
 usr.bin/file/magdir/rpm                                        |      17 -
 usr.bin/file/magdir/rtf                                        |      12 -
 usr.bin/file/magdir/sc                                         |       5 -
 usr.bin/file/magdir/sccs                                       |      21 -
 usr.bin/file/magdir/sendmail                                   |      10 -
 usr.bin/file/magdir/sequent                                    |      34 -
 usr.bin/file/magdir/sgi                                        |     174 -
 usr.bin/file/magdir/sgml                                       |      21 -
 usr.bin/file/magdir/sniffer                                    |      79 -
 usr.bin/file/magdir/softquad                                   |      30 -
 usr.bin/file/magdir/sun                                        |     107 -
 usr.bin/file/magdir/teapot                                     |       4 -
 usr.bin/file/magdir/terminfo                                   |       9 -
 usr.bin/file/magdir/tex                                        |      47 -
 usr.bin/file/magdir/ti-8x                                      |      36 -
 usr.bin/file/magdir/timezone                                   |      14 -
 usr.bin/file/magdir/troff                                      |      27 -
 usr.bin/file/magdir/typeset                                    |       7 -
 usr.bin/file/magdir/unknown                                    |      36 -
 usr.bin/file/magdir/uuencode                                   |      30 -
 usr.bin/file/magdir/varied.out                                 |      21 -
 usr.bin/file/magdir/vax                                        |      34 -
 usr.bin/file/magdir/vicar                                      |      16 -
 usr.bin/file/magdir/visx                                       |      31 -
 usr.bin/file/magdir/vms                                        |      27 -
 usr.bin/file/magdir/wordperfect                                |      91 -
 usr.bin/file/magdir/xenix                                      |      72 -
 usr.bin/file/magdir/zilog                                      |      11 -
 usr.bin/file/magdir/zyxel                                      |      16 -
 usr.bin/file/magic.5                                           |     210 -
 usr.bin/file/names.h                                           |     150 -
 usr.bin/file/patchlevel.h                                      |     147 -
 usr.bin/file/print.c                                           |     212 -
 usr.bin/file/readelf.c                                         |     358 -
 usr.bin/file/readelf.h                                         |     177 -
 usr.bin/file/softmagic.c                                       |     538 -
 usr.bin/file/tar.h                                             |     179 -
 usr.bin/file/tst/Makefile                                      |      34 -
 usr.bin/find/Makefile                                          |      10 -
 usr.bin/find/extern.h                                          |      90 -
 usr.bin/find/find.1                                            |     578 -
 usr.bin/find/find.c                                            |     211 -
 usr.bin/find/find.h                                            |     114 -
 usr.bin/find/function.c                                        |    1433 -
 usr.bin/find/ls.c                                              |     131 -
 usr.bin/find/main.c                                            |     158 -
 usr.bin/find/misc.c                                            |     135 -
 usr.bin/find/operator.c                                        |     281 -
 usr.bin/find/option.c                                          |     151 -
 usr.bin/finger/Makefile                                        |       9 -
 usr.bin/finger/extern.h                                        |      60 -
 usr.bin/finger/finger.1                                        |     197 -
 usr.bin/finger/finger.c                                        |     304 -
 usr.bin/finger/finger.h                                        |      74 -
 usr.bin/finger/lprint.c                                        |     368 -
 usr.bin/finger/net.c                                           |     163 -
 usr.bin/finger/sprint.c                                        |     176 -
 usr.bin/finger/util.c                                          |     412 -
 usr.bin/fmt/Makefile                                           |       8 -
 usr.bin/fmt/fmt.1                                              |      91 -
 usr.bin/fmt/fmt.c                                              |     500 -
 usr.bin/fold/Makefile                                          |       6 -
 usr.bin/fold/fold.1                                            |      85 -
 usr.bin/fold/fold.c                                            |     232 -
 usr.bin/fpr/Makefile                                           |       6 -
 usr.bin/fpr/fpr.1                                              |      85 -
 usr.bin/fpr/fpr.c                                              |     380 -
 usr.bin/from/Makefile                                          |       6 -
 usr.bin/from/from.1                                            |      85 -
 usr.bin/from/from.c                                            |     163 -
 usr.bin/fsplit/Makefile                                        |       6 -
 usr.bin/fsplit/fsplit.1                                        |     105 -
 usr.bin/fsplit/fsplit.c                                        |     439 -
 usr.bin/fstat/Makefile                                         |      11 -
 usr.bin/fstat/fstat.1                                          |     260 -
 usr.bin/fstat/fstat.c                                          |     809 -
 usr.bin/fstat/fstat.h                                          |      56 -
 usr.bin/fstat/isofs.c                                          |      97 -
 usr.bin/fstat/ntfs.c                                           |      85 -
 usr.bin/ftp/Makefile                                           |      19 -
 usr.bin/ftp/cmds.c                                             |    2543 -
 usr.bin/ftp/cmdtab.c                                           |     271 -
 usr.bin/ftp/complete.c                                         |     408 -
 usr.bin/ftp/domacro.c                                          |     155 -
 usr.bin/ftp/extern.h                                           |     247 -
 usr.bin/ftp/fetch.c                                            |    1660 -
 usr.bin/ftp/ftp.1                                              |    1805 -
 usr.bin/ftp/ftp.c                                              |    2166 -
 usr.bin/ftp/ftp_var.h                                          |     303 -
 usr.bin/ftp/main.c                                             |     870 -
 usr.bin/ftp/ruserpass.c                                        |     304 -
 usr.bin/ftp/util.c                                             |    1290 -
 usr.bin/gencat/Makefile                                        |       6 -
 usr.bin/gencat/gencat.c                                        |     824 -
 usr.bin/getconf/Makefile                                       |       5 -
 usr.bin/getconf/getconf.1                                      |      72 -
 usr.bin/getconf/getconf.c                                      |     259 -
 usr.bin/getopt/Makefile                                        |       5 -
 usr.bin/getopt/getopt.1                                        |     121 -
 usr.bin/getopt/getopt.c                                        |      40 -
 usr.bin/gprof/Makefile                                         |       7 -
 usr.bin/gprof/PSD.doc/Makefile                                 |      14 -
 usr.bin/gprof/PSD.doc/abstract.me                              |      68 -
 usr.bin/gprof/PSD.doc/gathering.me                             |     233 -
 usr.bin/gprof/PSD.doc/header.me                                |      40 -
 usr.bin/gprof/PSD.doc/intro.me                                 |      83 -
 usr.bin/gprof/PSD.doc/postp.me                                 |     192 -
 usr.bin/gprof/PSD.doc/postp1.pic                               |      56 -
 usr.bin/gprof/PSD.doc/postp2.pic                               |      58 -
 usr.bin/gprof/PSD.doc/postp3.pic                               |      53 -
 usr.bin/gprof/PSD.doc/pres1.pic                                |      58 -
 usr.bin/gprof/PSD.doc/pres2.pic                                |      54 -
 usr.bin/gprof/PSD.doc/present.me                               |     308 -
 usr.bin/gprof/PSD.doc/profiling.me                             |     117 -
 usr.bin/gprof/PSD.doc/refs.me                                  |      65 -
 usr.bin/head/Makefile                                          |       6 -
 usr.bin/head/head.1                                            |      80 -
 usr.bin/head/head.c                                            |     169 -
 usr.bin/hesinfo/Makefile                                       |       5 -
 usr.bin/hesinfo/hesinfo.1                                      |     225 -
 usr.bin/hesinfo/hesinfo.c                                      |     119 -
 usr.bin/hexdump/Makefile                                       |       9 -
 usr.bin/hexdump/conv.c                                         |     134 -
 usr.bin/hexdump/display.c                                      |     381 -
 usr.bin/hexdump/hexdump.1                                      |     341 -
 usr.bin/hexdump/hexdump.c                                      |      92 -
 usr.bin/hexdump/hexdump.h                                      |     107 -
 usr.bin/hexdump/hexsyntax.c                                    |     140 -
 usr.bin/hexdump/od.1                                           |      77 -
 usr.bin/hexdump/odsyntax.c                                     |     271 -
 usr.bin/hexdump/parse.c                                        |     522 -
 usr.bin/id/Makefile                                            |       9 -
 usr.bin/id/groups.1                                            |      66 -
 usr.bin/id/id.1                                                |     141 -
 usr.bin/id/id.c                                                |     348 -
 usr.bin/id/whoami.1                                            |      64 -
 usr.bin/indent/Makefile                                        |       7 -
 usr.bin/indent/README                                          |      97 -
 usr.bin/indent/args.c                                          |     437 -
 usr.bin/indent/indent.1                                        |     478 -
 usr.bin/indent/indent.c                                        |    1252 -
 usr.bin/indent/indent_codes.h                                  |      72 -
 usr.bin/indent/indent_globs.h                                  |     334 -
 usr.bin/indent/io.c                                            |     684 -
 usr.bin/indent/lexi.c                                          |     591 -
 usr.bin/indent/parse.c                                         |     333 -
 usr.bin/indent/pr_comment.c                                    |     431 -
 usr.bin/innetgr/Makefile                                       |       5 -
 usr.bin/innetgr/innetgr.1                                      |      74 -
 usr.bin/innetgr/innetgr.c                                      |      98 -
 usr.bin/ipcrm/Makefile                                         |       5 -
 usr.bin/ipcrm/ipcrm.1                                          |      97 -
 usr.bin/ipcrm/ipcrm.c                                          |     193 -
 usr.bin/ipcs/Makefile                                          |       9 -
 usr.bin/ipcs/ipcs.1                                            |     154 -
 usr.bin/ipcs/ipcs.c                                            |     555 -
 usr.bin/join/Makefile                                          |       6 -
 usr.bin/join/join.1                                            |     223 -
 usr.bin/join/join.c                                            |     619 -
 usr.bin/jot/Makefile                                           |       6 -
 usr.bin/jot/jot.1                                              |     209 -
 usr.bin/jot/jot.c                                              |     399 -
 usr.bin/kdump/Makefile                                         |      15 -
 usr.bin/kdump/Makefile.ioctl-c                                 |       5 -
 usr.bin/kdump/kdump.1                                          |     105 -
 usr.bin/kdump/kdump.c                                          |     623 -
 usr.bin/kdump/mkioctls                                         |      74 -
 usr.bin/ktrace/Makefile                                        |      11 -
 usr.bin/ktrace/ktrace.1                                        |     189 -
 usr.bin/ktrace/ktrace.c                                        |     309 -
 usr.bin/ktrace/ktrace.h                                        |      50 -
 usr.bin/ktrace/subr.c                                          |      91 -
 usr.bin/ktruss/Makefile                                        |      20 -
 usr.bin/ktruss/dump.c                                          |     576 -
 usr.bin/ktruss/makeerrnos.sh                                   |      75 -
 usr.bin/lam/Makefile                                           |       6 -
 usr.bin/lam/lam.1                                              |     129 -
 usr.bin/lam/lam.c                                              |     237 -
 usr.bin/last/Makefile                                          |       6 -
 usr.bin/last/last.1                                            |     127 -
 usr.bin/last/last.c                                            |     449 -
 usr.bin/lastcomm/Makefile                                      |       8 -
 usr.bin/lastcomm/lastcomm.1                                    |     128 -
 usr.bin/lastcomm/lastcomm.c                                    |     240 -
 usr.bin/lastcomm/pathnames.h                                   |      40 -
 usr.bin/ldd/Makefile                                           |      14 -
 usr.bin/ldd/Makefile.inc                                       |       5 -
 usr.bin/ldd/ldd.1                                              |      75 -
 usr.bin/ldd/ldd_aout/Makefile                                  |       9 -
 usr.bin/ldd/ldd_aout/ldd.c                                     |     163 -
 usr.bin/ldd/ldd_elf/Makefile                                   |      27 -
 usr.bin/ldd/ldd_elf/README                                     |      17 -
 usr.bin/ldd/ldd_elf/ldd.c                                      |     180 -
 usr.bin/leave/Makefile                                         |       6 -
 usr.bin/leave/leave.1                                          |     104 -
 usr.bin/leave/leave.c                                          |     189 -
 usr.bin/less/Makefile                                          |       5 -
 usr.bin/less/Makefile.inc                                      |       5 -
 usr.bin/less/less/INSTALL                                      |     186 -
 usr.bin/less/less/Makefile                                     |      16 -
 usr.bin/less/less/NEWS                                         |     382 -
 usr.bin/less/less/README                                       |     186 -
 usr.bin/less/less/acconfig.h                                   |      82 -
 usr.bin/less/less/brac.c                                       |     117 -
 usr.bin/less/less/ch.c                                         |     813 -
 usr.bin/less/less/charset.c                                    |     294 -
 usr.bin/less/less/cmd.h                                        |     122 -
 usr.bin/less/less/cmdbuf.c                                     |    1057 -
 usr.bin/less/less/command.c                                    |    1421 -
 usr.bin/less/less/decode.c                                     |     724 -
 usr.bin/less/less/defines.h                                    |     319 -
 usr.bin/less/less/edit.c                                       |     788 -
 usr.bin/less/less/filename.c                                   |    1046 -
 usr.bin/less/less/forwback.c                                   |     418 -
 usr.bin/less/less/funcs.h                                      |     302 -
 usr.bin/less/less/help.c                                       |     172 -
 usr.bin/less/less/ifile.c                                      |     363 -
 usr.bin/less/less/input.c                                      |     357 -
 usr.bin/less/less/jump.c                                       |     294 -
 usr.bin/less/less/less.1                                       |    1380 -
 usr.bin/less/less/less.h                                       |     382 -
 usr.bin/less/less/lglob.h                                      |     112 -
 usr.bin/less/less/line.c                                       |     641 -
 usr.bin/less/less/linenum.c                                    |     477 -
 usr.bin/less/less/lsystem.c                                    |     514 -
 usr.bin/less/less/main.c                                       |     383 -
 usr.bin/less/less/mark.c                                       |     268 -
 usr.bin/less/less/optfunc.c                                    |     536 -
 usr.bin/less/less/option.c                                     |     554 -
 usr.bin/less/less/option.h                                     |      70 -
 usr.bin/less/less/opttbl.c                                     |     283 -
 usr.bin/less/less/os.c                                         |     335 -
 usr.bin/less/less/output.c                                     |     480 -
 usr.bin/less/less/position.c                                   |     250 -
 usr.bin/less/less/position.h                                   |      37 -
 usr.bin/less/less/prompt.c                                     |     512 -
 usr.bin/less/less/screen.c                                     |    2337 -
 usr.bin/less/less/search.c                                     |    1293 -
 usr.bin/less/less/signal.c                                     |     294 -
 usr.bin/less/less/tags.c                                       |     249 -
 usr.bin/less/less/ttyin.c                                      |     179 -
 usr.bin/less/less/version.c                                    |     582 -
 usr.bin/less/less2netbsd                                       |     105 -
 usr.bin/less/lessecho/Makefile                                 |      10 -
 usr.bin/less/lessecho/lessecho.c                               |     246 -
 usr.bin/less/lesskey/Makefile                                  |       9 -
 usr.bin/less/lesskey/lesskey.1                                 |     301 -
 usr.bin/less/lesskey/lesskey.c                                 |     805 -
 usr.bin/less/lesskey/lesskey.h                                 |      57 -
 usr.bin/lex/COPYING                                            |      38 -
 usr.bin/lex/FlexLexer.h                                        |     185 -
 usr.bin/lex/Makefile                                           |      42 -
 usr.bin/lex/NEWS                                               |    1233 -
 usr.bin/lex/VERSION                                            |       2 -
 usr.bin/lex/ccl.c                                              |     149 -
 usr.bin/lex/config.h                                           |      29 -
 usr.bin/lex/dfa.c                                              |    1095 -
 usr.bin/lex/ecs.c                                              |     225 -
 usr.bin/lex/flex.1                                             |    4062 -
 usr.bin/lex/flex.skl                                           |    1548 -
 usr.bin/lex/flexdef.h                                          |    1052 -
 usr.bin/lex/gen.c                                              |    1626 -
 usr.bin/lex/initscan.c                                         |    3697 -
 usr.bin/lex/libmain.c                                          |      21 -
 usr.bin/lex/libyywrap.c                                        |      13 -
 usr.bin/lex/main.c                                             |    1178 -
 usr.bin/lex/misc.c                                             |     886 -
 usr.bin/lex/mkskel.sh                                          |      19 -
 usr.bin/lex/nfa.c                                              |     709 -
 usr.bin/lex/parse.y                                            |     913 -
 usr.bin/lex/scan.l                                             |     709 -
 usr.bin/lex/sym.c                                              |     256 -
 usr.bin/lex/tblcmp.c                                           |     887 -
 usr.bin/lex/version.h                                          |       3 -
 usr.bin/lex/yylex.c                                            |     216 -
 usr.bin/locate/Makefile                                        |       6 -
 usr.bin/locate/Makefile.inc                                    |       5 -
 usr.bin/locate/bigram/Makefile                                 |       8 -
 usr.bin/locate/bigram/locate.bigram.c                          |      95 -
 usr.bin/locate/code/Makefile                                   |       9 -
 usr.bin/locate/code/locate.code.c                              |     220 -
 usr.bin/locate/locate/Makefile                                 |      11 -
 usr.bin/locate/locate/locate.1                                 |     103 -
 usr.bin/locate/locate/locate.c                                 |     269 -
 usr.bin/locate/locate/locate.h                                 |      43 -
 usr.bin/locate/locate/pathnames.h                              |      38 -
 usr.bin/locate/locate/updatedb.csh                             |      80 -
 usr.bin/lock/Makefile                                          |      17 -
 usr.bin/lock/lock.1                                            |      80 -
 usr.bin/lock/lock.c                                            |     293 -
 usr.bin/logger/Makefile                                        |       6 -
 usr.bin/logger/logger.1                                        |     101 -
 usr.bin/logger/logger.c                                        |     198 -
 usr.bin/login/Makefile                                         |      27 -
 usr.bin/login/k5login.c                                        |     335 -
 usr.bin/login/klogin.c                                         |     274 -
 usr.bin/login/login.1                                          |     186 -
 usr.bin/login/login.c                                          |     797 -
 usr.bin/login/pathnames.h                                      |      42 -
 usr.bin/logname/Makefile                                       |       6 -
 usr.bin/logname/logname.1                                      |      78 -
 usr.bin/logname/logname.c                                      |      92 -
 usr.bin/look/Makefile                                          |       6 -
 usr.bin/look/look.1                                            |     107 -
 usr.bin/look/look.c                                            |     338 -
 usr.bin/look/pathnames.h                                       |      38 -
 usr.bin/lorder/Makefile                                        |       8 -
 usr.bin/lorder/lorder.1                                        |      75 -
 usr.bin/lorder/lorder.sh                                       |      91 -
 usr.bin/m4/Makefile                                            |      13 -
 usr.bin/m4/NOTES                                               |      64 -
 usr.bin/m4/PSD.doc/Makefile                                    |      12 -
 usr.bin/m4/TEST/ack.m4                                         |      41 -
 usr.bin/m4/TEST/hanoi.m4                                       |      46 -
 usr.bin/m4/TEST/hash.m4                                        |      56 -
 usr.bin/m4/TEST/sqroot.m4                                      |      46 -
 usr.bin/m4/TEST/string.m4                                      |      46 -
 usr.bin/m4/TEST/test.m4                                        |     244 -
 usr.bin/m4/eval.c                                              |     822 -
 usr.bin/m4/expr.c                                              |     598 -
 usr.bin/m4/extern.h                                            |      98 -
 usr.bin/m4/look.c                                              |     153 -
 usr.bin/m4/m4.1                                                |     192 -
 usr.bin/m4/main.c                                              |     512 -
 usr.bin/m4/mdef.h                                              |     181 -
 usr.bin/m4/misc.c                                              |     253 -
 usr.bin/m4/pathnames.h                                         |      59 -
 usr.bin/m4/stdd.h                                              |      58 -
 usr.bin/machine/Makefile                                       |       7 -
 usr.bin/machine/machine.1                                      |      55 -
 usr.bin/machine/machine.sh                                     |       2 -
 usr.bin/mail/Makefile                                          |      28 -
 usr.bin/mail/USD.doc/Makefile                                  |      12 -
 usr.bin/mail/USD.doc/mail0.nr                                  |      73 -
 usr.bin/mail/USD.doc/mail1.nr                                  |      94 -
 usr.bin/mail/USD.doc/mail2.nr                                  |     618 -
 usr.bin/mail/USD.doc/mail3.nr                                  |     135 -
 usr.bin/mail/USD.doc/mail4.nr                                  |     438 -
 usr.bin/mail/USD.doc/mail5.nr                                  |    1042 -
 usr.bin/mail/USD.doc/mail6.nr                                  |     126 -
 usr.bin/mail/USD.doc/mail7.nr                                  |     109 -
 usr.bin/mail/USD.doc/mail8.nr                                  |      76 -
 usr.bin/mail/USD.doc/mail9.nr                                  |     203 -
 usr.bin/mail/USD.doc/maila.nr                                  |      35 -
 usr.bin/mail/aux.c                                             |     688 -
 usr.bin/mail/cmd1.c                                            |     500 -
 usr.bin/mail/cmd2.c                                            |     549 -
 usr.bin/mail/cmd3.c                                            |     756 -
 usr.bin/mail/cmdtab.c                                          |     125 -
 usr.bin/mail/collect.c                                         |     739 -
 usr.bin/mail/def.h                                             |     288 -
 usr.bin/mail/dotlock.c                                         |     187 -
 usr.bin/mail/edit.c                                            |     228 -
 usr.bin/mail/extern.h                                          |     263 -
 usr.bin/mail/fio.c                                             |     474 -
 usr.bin/mail/getname.c                                         |      77 -
 usr.bin/mail/glob.h                                            |     107 -
 usr.bin/mail/head.c                                            |     265 -
 usr.bin/mail/lex.c                                             |     720 -
 usr.bin/mail/list.c                                            |     857 -
 usr.bin/mail/mail.1                                            |    1088 -
 usr.bin/mail/main.c                                            |     311 -
 usr.bin/mail/misc/mail.help                                    |      23 -
 usr.bin/mail/misc/mail.rc                                      |       2 -
 usr.bin/mail/misc/mail.tildehelp                               |      34 -
 usr.bin/mail/names.c                                           |     713 -
 usr.bin/mail/pathnames.h                                       |      45 -
 usr.bin/mail/popen.c                                           |     395 -
 usr.bin/mail/quit.c                                            |     556 -
 usr.bin/mail/rcv.h                                             |      47 -
 usr.bin/mail/send.c                                            |     578 -
 usr.bin/mail/strings.c                                         |     134 -
 usr.bin/mail/temp.c                                            |      99 -
 usr.bin/mail/tty.c                                             |     315 -
 usr.bin/mail/v7.local.c                                        |     100 -
 usr.bin/mail/vars.c                                            |     197 -
 usr.bin/mail/version.c                                         |      49 -
 usr.bin/make/Makefile                                          |      20 -
 usr.bin/make/Makefile.boot                                     |      44 -
 usr.bin/make/PSD.doc/Makefile                                  |       8 -
 usr.bin/make/PSD.doc/tutorial.ms                               |    3744 -
 usr.bin/make/arch.c                                            |    1309 -
 usr.bin/make/bit.h                                             |     102 -
 usr.bin/make/buf.c                                             |     308 -
 usr.bin/make/buf.h                                             |      79 -
 usr.bin/make/compat.c                                          |     620 -
 usr.bin/make/cond.c                                            |    1303 -
 usr.bin/make/config.h                                          |     125 -
 usr.bin/make/dir.c                                             |    1469 -
 usr.bin/make/dir.h                                             |      72 -
 usr.bin/make/for.c                                             |     310 -
 usr.bin/make/hash.c                                            |     429 -
 usr.bin/make/hash.h                                            |     118 -
 usr.bin/make/job.c                                             |    3159 -
 usr.bin/make/job.h                                             |     236 -
 usr.bin/make/list.h                                            |     300 -
 usr.bin/make/lst.h                                             |     166 -
 usr.bin/make/lst.lib/Makefile                                  |      10 -
 usr.bin/make/lst.lib/lstAppend.c                               |     124 -
 usr.bin/make/lst.lib/lstAtEnd.c                                |      81 -
 usr.bin/make/lst.lib/lstAtFront.c                              |      82 -
 usr.bin/make/lst.lib/lstClose.c                                |      88 -
 usr.bin/make/lst.lib/lstConcat.c                               |     187 -
 usr.bin/make/lst.lib/lstDatum.c                                |      82 -
 usr.bin/make/lst.lib/lstDeQueue.c                              |      92 -
 usr.bin/make/lst.lib/lstDestroy.c                              |     113 -
 usr.bin/make/lst.lib/lstDupl.c                                 |     110 -
 usr.bin/make/lst.lib/lstEnQueue.c                              |      84 -
 usr.bin/make/lst.lib/lstFind.c                                 |      81 -
 usr.bin/make/lst.lib/lstFindFrom.c                             |     105 -
 usr.bin/make/lst.lib/lstFirst.c                                |      82 -
 usr.bin/make/lst.lib/lstForEach.c                              |      83 -
 usr.bin/make/lst.lib/lstForEachFrom.c                          |     123 -
 usr.bin/make/lst.lib/lstInit.c                                 |      87 -
 usr.bin/make/lst.lib/lstInsert.c                               |     124 -
 usr.bin/make/lst.lib/lstInt.h                                  |     113 -
 usr.bin/make/lst.lib/lstIsAtEnd.c                              |      92 -
 usr.bin/make/lst.lib/lstIsEmpty.c                              |      80 -
 usr.bin/make/lst.lib/lstLast.c                                 |      82 -
 usr.bin/make/lst.lib/lstMember.c                               |      80 -
 usr.bin/make/lst.lib/lstNext.c                                 |     125 -
 usr.bin/make/lst.lib/lstOpen.c                                 |      92 -
 usr.bin/make/lst.lib/lstRemove.c                               |     142 -
 usr.bin/make/lst.lib/lstReplace.c                              |      84 -
 usr.bin/make/lst.lib/lstSucc.c                                 |      84 -
 usr.bin/make/main.c                                            |    1314 -
 usr.bin/make/make.1                                            |    1060 -
 usr.bin/make/make.c                                            |    1060 -
 usr.bin/make/make.h                                            |     399 -
 usr.bin/make/nonints.h                                         |     148 -
 usr.bin/make/parse.c                                           |    2734 -
 usr.bin/make/pathnames.h                                       |      44 -
 usr.bin/make/sprite.h                                          |     113 -
 usr.bin/make/str.c                                             |     468 -
 usr.bin/make/suff.c                                            |    2543 -
 usr.bin/make/targ.c                                            |     722 -
 usr.bin/make/util.c                                            |     499 -
 usr.bin/make/var.c                                             |    2443 -
 usr.bin/man/Makefile                                           |       8 -
 usr.bin/man/config.c                                           |     216 -
 usr.bin/man/config.h                                           |      61 -
 usr.bin/man/man.1                                              |     216 -
 usr.bin/man/man.c                                              |     774 -
 usr.bin/man/man.conf.5                                         |     203 -
 usr.bin/man/pathnames.h                                        |      43 -
 usr.bin/menuc/Makefile                                         |      17 -
 usr.bin/menuc/avl.c                                            |     204 -
 usr.bin/menuc/defs.h                                           |     100 -
 usr.bin/menuc/main.c                                           |     112 -
 usr.bin/menuc/mdb.c                                            |     401 -
 usr.bin/menuc/mdb.h                                            |      95 -
 usr.bin/menuc/menu_sys.def                                     |     765 -
 usr.bin/menuc/menuc.1                                          |      64 -
 usr.bin/menuc/parse.y                                          |     209 -
 usr.bin/menuc/scan.l                                           |     188 -
 usr.bin/menuc/testm/Makefile                                   |      25 -
 usr.bin/menuc/testm/main.c                                     |     127 -
 usr.bin/menuc/testm/menus.mc                                   |     269 -
 usr.bin/menuc/testm/menus.msg                                  |      12 -
 usr.bin/menuc/util.c                                           |     101 -
 usr.bin/mesg/Makefile                                          |       6 -
 usr.bin/mesg/mesg.1                                            |      93 -
 usr.bin/mesg/mesg.c                                            |     112 -
 usr.bin/midiplay/Makefile                                      |       6 -
 usr.bin/midiplay/midiplay.1                                    |     101 -
 usr.bin/midiplay/midiplay.c                                    |     574 -
 usr.bin/mixerctl/Makefile                                      |       6 -
 usr.bin/mixerctl/mixerctl.1                                    |     143 -
 usr.bin/mixerctl/mixerctl.c                                    |     379 -
 usr.bin/mkdep/Makefile                                         |       8 -
 usr.bin/mkdep/mkdep.1                                          |     106 -
 usr.bin/mkdep/mkdep.append                                     |     125 -
 usr.bin/mkdep/mkdep.c                                          |     249 -
 usr.bin/mkdep/mkdep.gcc.sh                                     |     110 -
 usr.bin/mkdep/mkdep.old.compiler                               |     145 -
 usr.bin/mkdep/mkdep.sh                                         |     110 -
 usr.bin/mkdep/mkdep.ultrix                                     |     126 -
 usr.bin/mkfifo/Makefile                                        |       6 -
 usr.bin/mkfifo/mkfifo.1                                        |      91 -
 usr.bin/mkfifo/mkfifo.c                                        |     113 -
 usr.bin/mkstr/Makefile                                         |       6 -
 usr.bin/mkstr/mkstr.1                                          |     135 -
 usr.bin/mkstr/mkstr.c                                          |     335 -
 usr.bin/mktemp/Makefile                                        |       6 -
 usr.bin/mktemp/mktemp.1                                        |     186 -
 usr.bin/mktemp/mktemp.c                                        |     157 -
 usr.bin/modstat/Makefile                                       |      45 -
 usr.bin/modstat/modstat.8                                      |      71 -
 usr.bin/modstat/modstat.c                                      |     204 -
 usr.bin/modstat/pathnames.h                                    |       5 -
 usr.bin/msgc/Makefile                                          |      18 -
 usr.bin/msgc/defs.h                                            |      92 -
 usr.bin/msgc/msg_sys.def                                       |     380 -
 usr.bin/msgc/msgc.1                                            |     149 -
 usr.bin/msgc/msgdb.c                                           |     196 -
 usr.bin/msgc/msgdb.h                                           |      60 -
 usr.bin/msgc/msgmain.c                                         |      97 -
 usr.bin/msgc/msgparse.y                                        |      63 -
 usr.bin/msgc/msgscan.l                                         |     126 -
 usr.bin/msgs/Makefile                                          |       8 -
 usr.bin/msgs/msgs.1                                            |     232 -
 usr.bin/msgs/msgs.c                                            |     911 -
 usr.bin/msgs/pathnames.h                                       |      42 -
 usr.bin/netgroup/Makefile                                      |       5 -
 usr.bin/netgroup/netgroup.1                                    |      71 -
 usr.bin/netgroup/netgroup.c                                    |      92 -
 usr.bin/netstat/Makefile                                       |      14 -
 usr.bin/netstat/atalk.c                                        |     316 -
 usr.bin/netstat/if.c                                           |     510 -
 usr.bin/netstat/inet.c                                         |     747 -
 usr.bin/netstat/inet6.c                                        |    1132 -
 usr.bin/netstat/iso.c                                          |     851 -
 usr.bin/netstat/main.c                                         |     680 -
 usr.bin/netstat/mbuf.c                                         |     155 -
 usr.bin/netstat/mroute.c                                       |     271 -
 usr.bin/netstat/mroute6.c                                      |     280 -
 usr.bin/netstat/netstat.1                                      |     326 -
 usr.bin/netstat/netstat.h                                      |     139 -
 usr.bin/netstat/ns.c                                           |     364 -
 usr.bin/netstat/route.c                                        |     981 -
 usr.bin/netstat/unix.c                                         |     136 -
 usr.bin/newsyslog/Makefile                                     |      12 -
 usr.bin/newsyslog/newsyslog.8                                  |     180 -
 usr.bin/newsyslog/newsyslog.c                                  |     624 -
 usr.bin/nfsstat/Makefile                                       |      11 -
 usr.bin/nfsstat/nfsstat.1                                      |      95 -
 usr.bin/nfsstat/nfsstat.c                                      |     437 -
 usr.bin/nice/Makefile                                          |       6 -
 usr.bin/nice/nice.1                                            |     122 -
 usr.bin/nice/nice.c                                            |     123 -
 usr.bin/nl/Makefile                                            |       5 -
 usr.bin/nl/nl.1                                                |     242 -
 usr.bin/nl/nl.c                                                |     441 -
 usr.bin/nohup/Makefile                                         |       6 -
 usr.bin/nohup/nohup.1                                          |     105 -
 usr.bin/nohup/nohup.c                                          |     143 -
 usr.bin/pagesize/Makefile                                      |       7 -
 usr.bin/pagesize/pagesize.1                                    |      58 -
 usr.bin/pagesize/pagesize.sh                                   |      42 -
 usr.bin/passwd/Makefile                                        |      30 -
 usr.bin/passwd/extern.h                                        |      43 -
 usr.bin/passwd/krb5_passwd.c                                   |    1010 -
 usr.bin/passwd/local_passwd.c                                  |     188 -
 usr.bin/passwd/passwd.1                                        |     113 -
 usr.bin/passwd/passwd.c                                        |     213 -
 usr.bin/passwd/yp_passwd.c                                     |     342 -
 usr.bin/paste/Makefile                                         |       6 -
 usr.bin/paste/paste.1                                          |     122 -
 usr.bin/paste/paste.c                                          |     253 -
 usr.bin/patch/ChangeLog                                        |     274 -
 usr.bin/patch/EXTERN.h                                         |      15 -
 usr.bin/patch/INTERN.h                                         |      13 -
 usr.bin/patch/Makefile                                         |       6 -
 usr.bin/patch/README                                           |     110 -
 usr.bin/patch/backupfile.c                                     |     348 -
 usr.bin/patch/backupfile.h                                     |      40 -
 usr.bin/patch/common.h                                         |     189 -
 usr.bin/patch/config.h                                         |     135 -
 usr.bin/patch/inp.c                                            |     365 -
 usr.bin/patch/inp.h                                            |      11 -
 usr.bin/patch/malloc.c                                         |     469 -
 usr.bin/patch/patch.1                                          |     518 -
 usr.bin/patch/patch.c                                          |     931 -
 usr.bin/patch/patchlevel.h                                     |       3 -
 usr.bin/patch/pch.c                                            |    1287 -
 usr.bin/patch/pch.h                                            |      26 -
 usr.bin/patch/util.c                                           |     507 -
 usr.bin/patch/util.h                                           |      81 -
 usr.bin/patch/version.c                                        |      21 -
 usr.bin/patch/version.h                                        |       3 -
 usr.bin/pr/Makefile                                            |       7 -
 usr.bin/pr/egetopt.c                                           |     222 -
 usr.bin/pr/extern.h                                            |      63 -
 usr.bin/pr/pr.1                                                |     349 -
 usr.bin/pr/pr.c                                                |    1826 -
 usr.bin/pr/pr.h                                                |      75 -
 usr.bin/printenv/Makefile                                      |       6 -
 usr.bin/printenv/printenv.1                                    |      69 -
 usr.bin/printenv/printenv.c                                    |     104 -
 usr.bin/printf/Makefile                                        |       6 -
 usr.bin/printf/printf.1                                        |     280 -
 usr.bin/printf/printf.c                                        |     546 -
 usr.bin/qsubst/Makefile                                        |       7 -
 usr.bin/qsubst/qsubst.1                                        |     129 -
 usr.bin/qsubst/qsubst.c                                        |     619 -
 usr.bin/quota/Makefile                                         |       9 -
 usr.bin/quota/quota.1                                          |     144 -
 usr.bin/quota/quota.c                                          |     737 -
 usr.bin/rdist/Makefile                                         |       7 -
 usr.bin/rdist/cron.entry                                       |       2 -
 usr.bin/rdist/defs.h                                           |     182 -
 usr.bin/rdist/docmd.c                                          |     686 -
 usr.bin/rdist/expand.c                                         |     680 -
 usr.bin/rdist/gram.y                                           |     514 -
 usr.bin/rdist/lookup.c                                         |     176 -
 usr.bin/rdist/main.c                                           |     318 -
 usr.bin/rdist/pathnames.h                                      |      40 -
 usr.bin/rdist/rdist.1                                          |     414 -
 usr.bin/rdist/server.c                                         |    1633 -
 usr.bin/renice/Makefile                                        |       7 -
 usr.bin/renice/renice.8                                        |     155 -
 usr.bin/renice/renice.c                                        |     182 -
 usr.bin/rev/Makefile                                           |       6 -
 usr.bin/rev/rev.1                                              |      50 -
 usr.bin/rev/rev.c                                              |     117 -
 usr.bin/rlogin/Makefile                                        |      18 -
 usr.bin/rlogin/kcmd.c                                          |     313 -
 usr.bin/rlogin/krb.h                                           |      48 -
 usr.bin/rlogin/krcmd.c                                         |     166 -
 usr.bin/rlogin/rlogin.1                                        |     199 -
 usr.bin/rlogin/rlogin.c                                        |    1040 -
 usr.bin/rpcgen/Makefile                                        |       7 -
 usr.bin/rpcgen/rpc_clntout.c                                   |     230 -
 usr.bin/rpcgen/rpc_cout.c                                      |     741 -
 usr.bin/rpcgen/rpc_hout.c                                      |     534 -
 usr.bin/rpcgen/rpc_main.c                                      |    1169 -
 usr.bin/rpcgen/rpc_parse.c                                     |     633 -
 usr.bin/rpcgen/rpc_parse.h                                     |     168 -
 usr.bin/rpcgen/rpc_sample.c                                    |     261 -
 usr.bin/rpcgen/rpc_scan.c                                      |     512 -
 usr.bin/rpcgen/rpc_scan.h                                      |     102 -
 usr.bin/rpcgen/rpc_svcout.c                                    |     982 -
 usr.bin/rpcgen/rpc_tblout.c                                    |     179 -
 usr.bin/rpcgen/rpc_util.c                                      |     513 -
 usr.bin/rpcgen/rpc_util.h                                      |     174 -
 usr.bin/rpcgen/rpcgen.1                                        |     452 -
 usr.bin/rpcinfo/Makefile                                       |       7 -
 usr.bin/rpcinfo/rpcinfo.8                                      |     166 -
 usr.bin/rpcinfo/rpcinfo.c                                      |     671 -
 usr.bin/rs/Makefile                                            |       7 -
 usr.bin/rs/rs.1                                                |     201 -
 usr.bin/rs/rs.c                                                |     555 -
 usr.bin/rsh/Makefile                                           |      12 -
 usr.bin/rsh/pathnames.h                                        |      39 -
 usr.bin/rsh/rsh.1                                              |     192 -
 usr.bin/rsh/rsh.c                                              |     620 -
 usr.bin/rup/Makefile                                           |       8 -
 usr.bin/rup/rup.1                                              |     105 -
 usr.bin/rup/rup.c                                              |     360 -
 usr.bin/ruptime/Makefile                                       |       6 -
 usr.bin/ruptime/ruptime.1                                      |      86 -
 usr.bin/ruptime/ruptime.c                                      |     285 -
 usr.bin/rusers/Makefile                                        |       8 -
 usr.bin/rusers/rusers.1                                        |      97 -
 usr.bin/rusers/rusers.c                                        |     269 -
 usr.bin/rwall/Makefile                                         |       8 -
 usr.bin/rwall/rwall.1                                          |      79 -
 usr.bin/rwall/rwall.c                                          |     175 -
 usr.bin/rwho/Makefile                                          |       6 -
 usr.bin/rwho/rwho.1                                            |      87 -
 usr.bin/rwho/rwho.c                                            |     204 -
 usr.bin/script/Makefile                                        |       8 -
 usr.bin/script/script.1                                        |     125 -
 usr.bin/script/script.c                                        |     248 -
 usr.bin/sed/Makefile                                           |       7 -
 usr.bin/sed/POSIX                                              |     199 -
 usr.bin/sed/TEST/hanoi.sed                                     |     103 -
 usr.bin/sed/TEST/math.sed                                      |     164 -
 usr.bin/sed/TEST/sed.test                                      |     554 -
 usr.bin/sed/compile.c                                          |     820 -
 usr.bin/sed/defs.h                                             |     148 -
 usr.bin/sed/extern.h                                           |      62 -
 usr.bin/sed/main.c                                             |     361 -
 usr.bin/sed/misc.c                                             |     148 -
 usr.bin/sed/process.c                                          |     657 -
 usr.bin/sed/sed.1                                              |     517 -
 usr.bin/shar/Makefile                                          |       8 -
 usr.bin/shar/shar.1                                            |     105 -
 usr.bin/shar/shar.sh                                           |      76 -
 usr.bin/shlock/Makefile                                        |       5 -
 usr.bin/shlock/shlock.1                                        |     122 -
 usr.bin/shlock/shlock.c                                        |     345 -
 usr.bin/showmount/Makefile                                     |       7 -
 usr.bin/showmount/showmount.8                                  |      96 -
 usr.bin/showmount/showmount.c                                  |     370 -
 usr.bin/shuffle/Makefile                                       |       5 -
 usr.bin/shuffle/shuffle.1                                      |      96 -
 usr.bin/shuffle/shuffle.c                                      |     266 -
 usr.bin/skey/Makefile                                          |       9 -
 usr.bin/skey/skey.1                                            |     152 -
 usr.bin/skey/skey.c                                            |     131 -
 usr.bin/skey/skeyaudit.1                                       |      29 -
 usr.bin/skey/skeyaudit.sh                                      |      52 -
 usr.bin/skeyinfo/Makefile                                      |      10 -
 usr.bin/skeyinfo/skeyinfo.1                                    |      19 -
 usr.bin/skeyinfo/skeyinfo.c                                    |     101 -
 usr.bin/skeyinit/Makefile                                      |      10 -
 usr.bin/skeyinit/skeyinit.1                                    |      45 -
 usr.bin/skeyinit/skeyinit.c                                    |     235 -
 usr.bin/soelim/Makefile                                        |       6 -
 usr.bin/soelim/soelim.1                                        |      97 -
 usr.bin/soelim/soelim.c                                        |     259 -
 usr.bin/split/Makefile                                         |       6 -
 usr.bin/split/split.1                                          |     101 -
 usr.bin/split/split.c                                          |     294 -
 usr.bin/su/Makefile                                            |      32 -
 usr.bin/su/su.1                                                |     198 -
 usr.bin/su/su.c                                                |     522 -
 usr.bin/systat/Makefile                                        |      20 -
 usr.bin/systat/cmds.c                                          |     205 -
 usr.bin/systat/cmdtab.c                                        |      83 -
 usr.bin/systat/disks.c                                         |     111 -
 usr.bin/systat/extern.h                                        |     143 -
 usr.bin/systat/fetch.c                                         |      59 -
 usr.bin/systat/icmp.c                                          |     178 -
 usr.bin/systat/iostat.c                                        |     337 -
 usr.bin/systat/ip.c                                            |     204 -
 usr.bin/systat/keyboard.c                                      |     146 -
 usr.bin/systat/main.c                                          |     366 -
 usr.bin/systat/mbufs.c                                         |     174 -
 usr.bin/systat/netcmds.c                                       |     311 -
 usr.bin/systat/netstat.c                                       |     493 -
 usr.bin/systat/pigs.c                                          |     259 -
 usr.bin/systat/ps.c                                            |     387 -
 usr.bin/systat/ps.h                                            |      45 -
 usr.bin/systat/swap.c                                          |     184 -
 usr.bin/systat/systat.1                                        |     466 -
 usr.bin/systat/systat.h                                        |      65 -
 usr.bin/systat/tcp.c                                           |     235 -
 usr.bin/systat/vmstat.c                                        |     667 -
 usr.bin/tail/Makefile                                          |       7 -
 usr.bin/tail/extern.h                                          |      55 -
 usr.bin/tail/forward.c                                         |     289 -
 usr.bin/tail/misc.c                                            |      95 -
 usr.bin/tail/read.c                                            |     213 -
 usr.bin/tail/reverse.c                                         |     268 -
 usr.bin/tail/tail.1                                            |     196 -
 usr.bin/tail/tail.c                                            |     310 -
 usr.bin/talk/Makefile                                          |      10 -
 usr.bin/talk/ctl.c                                             |     119 -
 usr.bin/talk/ctl_transact.c                                    |     121 -
 usr.bin/talk/display.c                                         |     207 -
 usr.bin/talk/get_addrs.c                                       |      88 -
 usr.bin/talk/get_names.c                                       |     124 -
 usr.bin/talk/init_disp.c                                       |     157 -
 usr.bin/talk/invite.c                                          |     194 -
 usr.bin/talk/io.c                                              |     148 -
 usr.bin/talk/look_up.c                                         |     119 -
 usr.bin/talk/msgs.c                                            |      87 -
 usr.bin/talk/talk.1                                            |     131 -
 usr.bin/talk/talk.c                                            |      87 -
 usr.bin/talk/talk.h                                            |      92 -
 usr.bin/talk/talk_ctl.h                                        |      45 -
 usr.bin/tcopy/Makefile                                         |       6 -
 usr.bin/tcopy/tcopy.1                                          |      91 -
 usr.bin/tcopy/tcopy.c                                          |     339 -
 usr.bin/tee/Makefile                                           |       6 -
 usr.bin/tee/tee.1                                              |      90 -
 usr.bin/tee/tee.c                                              |     156 -
 usr.bin/telnet/Makefile                                        |      70 -
 usr.bin/telnet/README                                          |     763 -
 usr.bin/telnet/authenc.c                                       |     111 -
 usr.bin/telnet/commands.c                                      |    2945 -
 usr.bin/telnet/defines.h                                       |      63 -
 usr.bin/telnet/externs.h                                       |     569 -
 usr.bin/telnet/fdset.h                                         |      51 -
 usr.bin/telnet/general.h                                       |      47 -
 usr.bin/telnet/main.c                                          |     349 -
 usr.bin/telnet/network.c                                       |     181 -
 usr.bin/telnet/ring.c                                          |     327 -
 usr.bin/telnet/ring.h                                          |     100 -
 usr.bin/telnet/sys_bsd.c                                       |    1229 -
 usr.bin/telnet/telnet.1                                        |    1403 -
 usr.bin/telnet/telnet.c                                        |    2579 -
 usr.bin/telnet/terminal.c                                      |     230 -
 usr.bin/telnet/tn3270.c                                        |     425 -
 usr.bin/telnet/types.h                                         |      54 -
 usr.bin/telnet/utilities.c                                     |     881 -
 usr.bin/tftp/Makefile                                          |      10 -
 usr.bin/tftp/extern.h                                          |      39 -
 usr.bin/tftp/main.c                                            |     748 -
 usr.bin/tftp/tftp.1                                            |     175 -
 usr.bin/tftp/tftp.c                                            |     499 -
 usr.bin/tftp/tftpsubs.c                                        |     279 -
 usr.bin/tftp/tftpsubs.h                                        |      50 -
 usr.bin/time/Makefile                                          |       6 -
 usr.bin/time/time.1                                            |     126 -
 usr.bin/time/time.c                                            |     194 -
 usr.bin/tip/Makefile                                           |      51 -
 usr.bin/tip/README                                             |      61 -
 usr.bin/tip/TODO                                               |      18 -
 usr.bin/tip/acu.c                                              |     212 -
 usr.bin/tip/aculib/biz22.c                                     |     202 -
 usr.bin/tip/aculib/biz31.c                                     |     253 -
 usr.bin/tip/aculib/courier.c                                   |     412 -
 usr.bin/tip/aculib/df.c                                        |     153 -
 usr.bin/tip/aculib/dn11.c                                      |     154 -
 usr.bin/tip/aculib/hayes.c                                     |     329 -
 usr.bin/tip/aculib/t3000.c                                     |     422 -
 usr.bin/tip/aculib/v3451.c                                     |     231 -
 usr.bin/tip/aculib/v831.c                                      |     268 -
 usr.bin/tip/aculib/ventel.c                                    |     268 -
 usr.bin/tip/acutab.c                                           |      89 -
 usr.bin/tip/cmds.c                                             |     941 -
 usr.bin/tip/cmdtab.c                                           |      66 -
 usr.bin/tip/cu.c                                               |     139 -
 usr.bin/tip/hunt.c                                             |     106 -
 usr.bin/tip/log.c                                              |     101 -
 usr.bin/tip/partab.c                                           |      64 -
 usr.bin/tip/pathnames.h                                        |      43 -
 usr.bin/tip/remote.c                                           |     232 -
 usr.bin/tip/tip.1                                              |     453 -
 usr.bin/tip/tip.c                                              |     629 -
 usr.bin/tip/tip.h                                              |     357 -
 usr.bin/tip/tipout.c                                           |     173 -
 usr.bin/tip/uucplock.c                                         |     124 -
 usr.bin/tip/value.c                                            |     358 -
 usr.bin/tip/vars.c                                             |     118 -
 usr.bin/tn3270/Makefile                                        |       9 -
 usr.bin/tn3270/Makefile.inc                                    |       9 -
 usr.bin/tn3270/api/api.order                                   |       8 -
 usr.bin/tn3270/api/api_bsd.c                                   |     298 -
 usr.bin/tn3270/api/api_exch.c                                  |     451 -
 usr.bin/tn3270/api/api_exch.h                                  |     171 -
 usr.bin/tn3270/api/apilib.c                                    |     438 -
 usr.bin/tn3270/api/apilib.h                                    |      61 -
 usr.bin/tn3270/api/asc_ebc.c                                   |     117 -
 usr.bin/tn3270/api/asc_ebc.h                                   |      53 -
 usr.bin/tn3270/api/astosc.c                                    |     107 -
 usr.bin/tn3270/api/astosc.h                                    |      60 -
 usr.bin/tn3270/api/dctype.c                                    |     252 -
 usr.bin/tn3270/api/dctype.h                                    |      56 -
 usr.bin/tn3270/api/disp_asc.c                                  |      52 -
 usr.bin/tn3270/api/disp_asc.h                                  |      45 -
 usr.bin/tn3270/api/ebc_disp.c                                  |     113 -
 usr.bin/tn3270/api/ebc_disp.h                                  |      40 -
 usr.bin/tn3270/ascii/ascii.order                               |       2 -
 usr.bin/tn3270/ascii/default.map                               |      79 -
 usr.bin/tn3270/ascii/map3270.c                                 |     965 -
 usr.bin/tn3270/ascii/map3270.h                                 |      47 -
 usr.bin/tn3270/ascii/mset.c                                    |     427 -
 usr.bin/tn3270/ascii/state.h                                   |      59 -
 usr.bin/tn3270/ascii/termin.c                                  |     289 -
 usr.bin/tn3270/ctlr/3180.kbd                                   |     182 -
 usr.bin/tn3270/ctlr/3270pc.kbd                                 |     182 -
 usr.bin/tn3270/ctlr/api.c                                      |     781 -
 usr.bin/tn3270/ctlr/api.h                                      |     413 -
 usr.bin/tn3270/ctlr/ctlr.order                                 |       5 -
 usr.bin/tn3270/ctlr/declare.h                                  |      61 -
 usr.bin/tn3270/ctlr/function.c                                 |      54 -
 usr.bin/tn3270/ctlr/function.h                                 |     168 -
 usr.bin/tn3270/ctlr/hostctlr.h                                 |     224 -
 usr.bin/tn3270/ctlr/inbound.c                                  |    1217 -
 usr.bin/tn3270/ctlr/oia.c                                      |      59 -
 usr.bin/tn3270/ctlr/oia.h                                      |     195 -
 usr.bin/tn3270/ctlr/options.c                                  |     189 -
 usr.bin/tn3270/ctlr/options.h                                  |      46 -
 usr.bin/tn3270/ctlr/outbound.c                                 |     617 -
 usr.bin/tn3270/ctlr/screen.h                                   |     144 -
 usr.bin/tn3270/ctlr/scrnctlr.h                                 |      50 -
 usr.bin/tn3270/ctlr/unix.kbd                                   |     184 -
 usr.bin/tn3270/general/genbsubs.c                              |     134 -
 usr.bin/tn3270/general/general.h                               |      55 -
 usr.bin/tn3270/general/general.order                           |       2 -
 usr.bin/tn3270/general/globals.c                               |      81 -
 usr.bin/tn3270/general/globals.h                               |     134 -
 usr.bin/tn3270/general/vaxbsubs.s                              |     104 -
 usr.bin/tn3270/mset/Makefile                                   |      24 -
 usr.bin/tn3270/mset/map3270.5                                  |     344 -
 usr.bin/tn3270/mset/mset.1                                     |     192 -
 usr.bin/tn3270/sys_curses/system.c                             |     786 -
 usr.bin/tn3270/sys_curses/telextrn.h                           |      75 -
 usr.bin/tn3270/sys_curses/terminal.h                           |      83 -
 usr.bin/tn3270/sys_curses/termout.c                            |     989 -
 usr.bin/tn3270/tn3270/Makefile                                 |      70 -
 usr.bin/tn3270/tn3270/tn3270.1                                 |     343 -
 usr.bin/tn3270/tools/Makefile                                  |       5 -
 usr.bin/tn3270/tools/Makefile.inc                              |      11 -
 usr.bin/tn3270/tools/mkastods/Makefile                         |       6 -
 usr.bin/tn3270/tools/mkastods/mkastods.c                       |      84 -
 usr.bin/tn3270/tools/mkastosc/Makefile                         |      10 -
 usr.bin/tn3270/tools/mkastosc/mkastosc.c                       |     171 -
 usr.bin/tn3270/tools/mkdctype/Makefile                         |       6 -
 usr.bin/tn3270/tools/mkdctype/ectype.c                         |     320 -
 usr.bin/tn3270/tools/mkdctype/ectype.h                         |      57 -
 usr.bin/tn3270/tools/mkdctype/mkdctype.c                       |     110 -
 usr.bin/tn3270/tools/mkdstoas/Makefile                         |       6 -
 usr.bin/tn3270/tools/mkdstoas/mkdstoas.c                       |      85 -
 usr.bin/tn3270/tools/mkhits/Makefile                           |       6 -
 usr.bin/tn3270/tools/mkhits/dohits.c                           |     297 -
 usr.bin/tn3270/tools/mkhits/dohits.h                           |      59 -
 usr.bin/tn3270/tools/mkhits/mkhits.c                           |     151 -
 usr.bin/tn3270/tools/mkmake/Makefile                           |       8 -
 usr.bin/tn3270/tools/mkmake/mkmake.y                           |    1139 -
 usr.bin/tn3270/tools/prt3270/Makefile                          |      38 -
 usr.bin/tn3270/tools/prt3270/prt3270.c                         |     648 -
 usr.bin/top/.defaults                                          |      19 -
 usr.bin/top/Configure                                          |     528 -
 usr.bin/top/Make.desc.X                                        |      24 -
 usr.bin/top/Makefile                                           |      21 -
 usr.bin/top/Makefile.X                                         |     116 -
 usr.bin/top/boolean.h                                          |       7 -
 usr.bin/top/commands.c                                         |     527 -
 usr.bin/top/commands.h                                         |      14 -
 usr.bin/top/display.c                                          |    1169 -
 usr.bin/top/display.h                                          |      35 -
 usr.bin/top/getans                                             |      90 -
 usr.bin/top/layout.h                                           |      29 -
 usr.bin/top/loadavg.h                                          |      59 -
 usr.bin/top/machine.h                                          |      71 -
 usr.bin/top/machine/m_netbsd13.c                               |     895 -
 usr.bin/top/os.h                                               |      37 -
 usr.bin/top/patchlevel.h                                       |       4 -
 usr.bin/top/screen.c                                           |     501 -
 usr.bin/top/screen.h                                           |      45 -
 usr.bin/top/sigconv.awk                                        |      53 -
 usr.bin/top/top.1                                              |     337 -
 usr.bin/top/top.X                                              |     336 -
 usr.bin/top/top.c                                              |     970 -
 usr.bin/top/top.h                                              |      41 -
 usr.bin/top/top.local.H                                        |      68 -
 usr.bin/top/top.local.h                                        |      70 -
 usr.bin/top/username.c                                         |     190 -
 usr.bin/top/username.h                                         |       7 -
 usr.bin/top/utils.c                                            |     470 -
 usr.bin/top/utils.h                                            |      26 -
 usr.bin/top/version.c                                          |      28 -
 usr.bin/touch/Makefile                                         |       6 -
 usr.bin/touch/touch.1                                          |     177 -
 usr.bin/touch/touch.c                                          |     378 -
 usr.bin/tput/Makefile                                          |      10 -
 usr.bin/tput/clear.sh                                          |      38 -
 usr.bin/tput/tput.1                                            |     131 -
 usr.bin/tput/tput.c                                            |     239 -
 usr.bin/tr/Makefile                                            |       7 -
 usr.bin/tr/extern.h                                            |      52 -
 usr.bin/tr/str.c                                               |     335 -
 usr.bin/tr/tr.1                                                |     298 -
 usr.bin/tr/tr.c                                                |     268 -
 usr.bin/true/Makefile                                          |       7 -
 usr.bin/true/true.1                                            |      60 -
 usr.bin/true/true.sh                                           |       2 -
 usr.bin/tset/Makefile                                          |      12 -
 usr.bin/tset/extern.h                                          |      55 -
 usr.bin/tset/map.c                                             |     239 -
 usr.bin/tset/misc.c                                            |      76 -
 usr.bin/tset/set.c                                             |     329 -
 usr.bin/tset/term.c                                            |     167 -
 usr.bin/tset/tset.1                                            |     417 -
 usr.bin/tset/tset.c                                            |     312 -
 usr.bin/tset/wrterm.c                                          |     119 -
 usr.bin/tsort/Makefile                                         |       6 -
 usr.bin/tsort/tsort.1                                          |      90 -
 usr.bin/tsort/tsort.c                                          |     443 -
 usr.bin/tty/Makefile                                           |       6 -
 usr.bin/tty/tty.1                                              |      79 -
 usr.bin/tty/tty.c                                              |      89 -
 usr.bin/ul/Makefile                                            |       8 -
 usr.bin/ul/ul.1                                                |     109 -
 usr.bin/ul/ul.c                                                |     544 -
 usr.bin/uname/Makefile                                         |       6 -
 usr.bin/uname/uname.1                                          |      90 -
 usr.bin/uname/uname.c                                          |     162 -
 usr.bin/unexpand/Makefile                                      |       7 -
 usr.bin/unexpand/unexpand.c                                    |     152 -
 usr.bin/unifdef/Makefile                                       |       6 -
 usr.bin/unifdef/unifdef.1                                      |     167 -
 usr.bin/unifdef/unifdef.c                                      |     682 -
 usr.bin/uniq/Makefile                                          |       6 -
 usr.bin/uniq/uniq.1                                            |     132 -
 usr.bin/uniq/uniq.c                                            |     255 -
 usr.bin/units/Makefile                                         |      11 -
 usr.bin/units/README                                           |      18 -
 usr.bin/units/pathnames.h                                      |      33 -
 usr.bin/units/units.1                                          |     124 -
 usr.bin/units/units.c                                          |     726 -
 usr.bin/units/units.lib                                        |     612 -
 usr.bin/unvis/Makefile                                         |       6 -
 usr.bin/unvis/unvis.1                                          |      59 -
 usr.bin/unvis/unvis.c                                          |     122 -
 usr.bin/usbhidctl/Makefile                                     |      12 -
 usr.bin/usbhidctl/usbhid.c                                     |     338 -
 usr.bin/usbhidctl/usbhidctl.1                                  |      88 -
 usr.bin/users/Makefile                                         |       6 -
 usr.bin/users/users.1                                          |      61 -
 usr.bin/users/users.c                                          |     126 -
 usr.bin/uudecode/Makefile                                      |       7 -
 usr.bin/uudecode/uudecode.c                                    |     229 -
 usr.bin/uuencode/Makefile                                      |       8 -
 usr.bin/uuencode/uuencode.1                                    |     124 -
 usr.bin/uuencode/uuencode.5                                    |     149 -
 usr.bin/uuencode/uuencode.c                                    |     160 -
 usr.bin/vacation/Makefile                                      |       6 -
 usr.bin/vacation/vacation.1                                    |     176 -
 usr.bin/vacation/vacation.c                                    |     451 -
 usr.bin/vgrind/Makefile                                        |      32 -
 usr.bin/vgrind/RETEST/Makefile                                 |      12 -
 usr.bin/vgrind/RETEST/retest.c                                 |     110 -
 usr.bin/vgrind/extern.h                                        |      67 -
 usr.bin/vgrind/pathnames.h                                     |      38 -
 usr.bin/vgrind/regexp.c                                        |     598 -
 usr.bin/vgrind/tmac.vgrind                                     |      68 -
 usr.bin/vgrind/vfontedpr.c                                     |     714 -
 usr.bin/vgrind/vgrind.1                                        |     234 -
 usr.bin/vgrind/vgrind.sh                                       |     145 -
 usr.bin/vgrind/vgrindefs.5                                     |     160 -
 usr.bin/vgrind/vgrindefs.c                                     |     341 -
 usr.bin/vgrind/vgrindefs.src                                   |     148 -
 usr.bin/vi/FAQ                                                 |      71 -
 usr.bin/vi/LAYOUT                                              |     134 -
 usr.bin/vi/LICENSE                                             |      37 -
 usr.bin/vi/Makefile                                            |       9 -
 usr.bin/vi/README                                              |     110 -
 usr.bin/vi/build/Makefile                                      |      45 -
 usr.bin/vi/build/README                                        |     371 -
 usr.bin/vi/build/config.h                                      |     140 -
 usr.bin/vi/build/pathnames.h                                   |      47 -
 usr.bin/vi/build/port.h                                        |     182 -
 usr.bin/vi/catalog/Makefile                                    |      87 -
 usr.bin/vi/catalog/README                                      |     166 -
 usr.bin/vi/catalog/dump.c                                      |     116 -
 usr.bin/vi/catalog/dutch                                       |     303 -
 usr.bin/vi/catalog/dutch.base                                  |     293 -
 usr.bin/vi/catalog/dutch.check                                 |      58 -
 usr.bin/vi/catalog/dutch.owner                                 |       1 -
 usr.bin/vi/catalog/english                                     |     314 -
 usr.bin/vi/catalog/english.base                                |     306 -
 usr.bin/vi/catalog/english.check                               |      33 -
 usr.bin/vi/catalog/english.owner                               |       1 -
 usr.bin/vi/catalog/german                                      |     303 -
 usr.bin/vi/catalog/german.base                                 |     294 -
 usr.bin/vi/catalog/german.check                                |      57 -
 usr.bin/vi/catalog/german.owner                                |       1 -
 usr.bin/vi/catalog/ru_SU.KOI8-R                                |     267 -
 usr.bin/vi/catalog/ru_SU.KOI8-R.base                           |     221 -
 usr.bin/vi/catalog/ru_SU.KOI8-R.check                          |     164 -
 usr.bin/vi/catalog/ru_SU.KOI8-R.owner                          |       1 -
 usr.bin/vi/catalog/spell.ok                                    |      19 -
 usr.bin/vi/catalog/swedish                                     |     314 -
 usr.bin/vi/catalog/swedish.base                                |     305 -
 usr.bin/vi/catalog/swedish.check                               |      32 -
 usr.bin/vi/catalog/swedish.owner                               |       1 -
 usr.bin/vi/cl/README.signal                                    |     174 -
 usr.bin/vi/cl/cl.h                                             |      83 -
 usr.bin/vi/cl/cl_bsd.c                                         |     311 -
 usr.bin/vi/cl/cl_funcs.c                                       |     610 -
 usr.bin/vi/cl/cl_main.c                                        |     390 -
 usr.bin/vi/cl/cl_read.c                                        |     336 -
 usr.bin/vi/cl/cl_screen.c                                      |     603 -
 usr.bin/vi/cl/cl_term.c                                        |     438 -
 usr.bin/vi/common/api.c                                        |     456 -
 usr.bin/vi/common/args.h                                       |      31 -
 usr.bin/vi/common/common.h                                     |      98 -
 usr.bin/vi/common/cut.c                                        |     370 -
 usr.bin/vi/common/cut.h                                        |      79 -
 usr.bin/vi/common/delete.c                                     |     162 -
 usr.bin/vi/common/exf.c                                        |    1358 -
 usr.bin/vi/common/exf.h                                        |      83 -
 usr.bin/vi/common/gs.h                                         |     212 -
 usr.bin/vi/common/key.c                                        |     867 -
 usr.bin/vi/common/key.h                                        |     224 -
 usr.bin/vi/common/line.c                                       |     579 -
 usr.bin/vi/common/log.c                                        |     719 -
 usr.bin/vi/common/log.h                                        |      22 -
 usr.bin/vi/common/main.c                                       |     619 -
 usr.bin/vi/common/mark.c                                       |     279 -
 usr.bin/vi/common/mark.h                                       |      44 -
 usr.bin/vi/common/mem.h                                        |     170 -
 usr.bin/vi/common/msg.c                                        |     872 -
 usr.bin/vi/common/msg.h                                        |      67 -
 usr.bin/vi/common/options.awk                                  |      10 -
 usr.bin/vi/common/options.c                                    |    1132 -
 usr.bin/vi/common/options.h                                    |     100 -
 usr.bin/vi/common/options_f.c                                  |     369 -
 usr.bin/vi/common/put.c                                        |     231 -
 usr.bin/vi/common/recover.c                                    |     878 -
 usr.bin/vi/common/screen.c                                     |     231 -
 usr.bin/vi/common/screen.h                                     |     202 -
 usr.bin/vi/common/search.c                                     |     514 -
 usr.bin/vi/common/seq.c                                        |     397 -
 usr.bin/vi/common/seq.h                                        |      46 -
 usr.bin/vi/common/util.c                                       |     232 -
 usr.bin/vi/common/util.h                                       |      58 -
 usr.bin/vi/docs/TODO                                           |     150 -
 usr.bin/vi/docs/USD.doc/edit/Makefile                          |      20 -
 usr.bin/vi/docs/USD.doc/edit/edit.vindex                       |     117 -
 usr.bin/vi/docs/USD.doc/edit/edittut.ms                        |    2324 -
 usr.bin/vi/docs/USD.doc/exref/Makefile                         |      16 -
 usr.bin/vi/docs/USD.doc/exref/ex.rm                            |    2232 -
 usr.bin/vi/docs/USD.doc/exref/ex.summary                       |     736 -
 usr.bin/vi/docs/USD.doc/vi.man/Makefile                        |      16 -
 usr.bin/vi/docs/USD.doc/vi.man/spell.ok                        |     171 -
 usr.bin/vi/docs/USD.doc/vi.man/vi.1                            |    1626 -
 usr.bin/vi/docs/USD.doc/vi.ref/COPYRIGHT                       |      42 -
 usr.bin/vi/docs/USD.doc/vi.ref/Makefile                        |      28 -
 usr.bin/vi/docs/USD.doc/vi.ref/ex.cmd.roff                     |    1929 -
 usr.bin/vi/docs/USD.doc/vi.ref/merge.awk                       |      16 -
 usr.bin/vi/docs/USD.doc/vi.ref/ref.so                          |     129 -
 usr.bin/vi/docs/USD.doc/vi.ref/set.opt.roff                    |    1296 -
 usr.bin/vi/docs/USD.doc/vi.ref/spell.ok                        |     401 -
 usr.bin/vi/docs/USD.doc/vi.ref/vi.cmd.roff                     |    3113 -
 usr.bin/vi/docs/USD.doc/vi.ref/vi.ref                          |    1851 -
 usr.bin/vi/docs/USD.doc/vitut/Makefile                         |      19 -
 usr.bin/vi/docs/USD.doc/vitut/vi.apwh.ms                       |    1081 -
 usr.bin/vi/docs/USD.doc/vitut/vi.chars                         |     646 -
 usr.bin/vi/docs/USD.doc/vitut/vi.in                            |    2066 -
 usr.bin/vi/docs/USD.doc/vitut/vi.summary                       |     470 -
 usr.bin/vi/docs/changelog                                      |     934 -
 usr.bin/vi/docs/ev                                             |      55 -
 usr.bin/vi/docs/features                                       |      88 -
 usr.bin/vi/docs/internals/autowrite                            |      88 -
 usr.bin/vi/docs/internals/context                              |      32 -
 usr.bin/vi/docs/internals/cscope.NOTES                         |     142 -
 usr.bin/vi/docs/internals/gdb.script                           |      76 -
 usr.bin/vi/docs/internals/input                                |     350 -
 usr.bin/vi/docs/internals/openmode                             |      36 -
 usr.bin/vi/docs/internals/quoting                              |     208 -
 usr.bin/vi/docs/internals/structures                           |      68 -
 usr.bin/vi/docs/interp/interp                                  |     190 -
 usr.bin/vi/docs/interp/spell.ok                                |      46 -
 usr.bin/vi/docs/spell.ok                                       |      93 -
 usr.bin/vi/docs/tutorial/vi.advanced                           |    1458 -
 usr.bin/vi/docs/tutorial/vi.beginner                           |     741 -
 usr.bin/vi/docs/tutorial/vi.tut.csh                            |      24 -
 usr.bin/vi/docs/vi.0.ps                                        |     668 -
 usr.bin/vi/docs/vi.0.txt                                       |     399 -
 usr.bin/vi/ex/ex.awk                                           |       7 -
 usr.bin/vi/ex/ex.c                                             |    2357 -
 usr.bin/vi/ex/ex.h                                             |     252 -
 usr.bin/vi/ex/ex_abbrev.c                                      |     119 -
 usr.bin/vi/ex/ex_append.c                                      |     277 -
 usr.bin/vi/ex/ex_args.c                                        |     321 -
 usr.bin/vi/ex/ex_argv.c                                        |     623 -
 usr.bin/vi/ex/ex_at.c                                          |     129 -
 usr.bin/vi/ex/ex_bang.c                                        |     188 -
 usr.bin/vi/ex/ex_cd.c                                          |     206 -
 usr.bin/vi/ex/ex_cmd.c                                         |     466 -
 usr.bin/vi/ex/ex_cscope.c                                      |    1047 -
 usr.bin/vi/ex/ex_delete.c                                      |      67 -
 usr.bin/vi/ex/ex_display.c                                     |     147 -
 usr.bin/vi/ex/ex_edit.c                                        |     155 -
 usr.bin/vi/ex/ex_equal.c                                       |      61 -
 usr.bin/vi/ex/ex_file.c                                        |      82 -
 usr.bin/vi/ex/ex_filter.c                                      |     318 -
 usr.bin/vi/ex/ex_global.c                                      |     329 -
 usr.bin/vi/ex/ex_init.c                                        |     420 -
 usr.bin/vi/ex/ex_join.c                                        |     179 -
 usr.bin/vi/ex/ex_map.c                                         |     123 -
 usr.bin/vi/ex/ex_mark.c                                        |      47 -
 usr.bin/vi/ex/ex_mkexrc.c                                      |     103 -
 usr.bin/vi/ex/ex_move.c                                        |     200 -
 usr.bin/vi/ex/ex_open.c                                        |      48 -
 usr.bin/vi/ex/ex_perl.c                                        |     180 -
 usr.bin/vi/ex/ex_preserve.c                                    |     105 -
 usr.bin/vi/ex/ex_print.c                                       |     354 -
 usr.bin/vi/ex/ex_put.c                                         |      53 -
 usr.bin/vi/ex/ex_quit.c                                        |      48 -
 usr.bin/vi/ex/ex_read.c                                        |     348 -
 usr.bin/vi/ex/ex_screen.c                                      |     128 -
 usr.bin/vi/ex/ex_script.c                                      |     800 -
 usr.bin/vi/ex/ex_set.c                                         |      48 -
 usr.bin/vi/ex/ex_shell.c                                       |     370 -
 usr.bin/vi/ex/ex_shift.c                                       |     193 -
 usr.bin/vi/ex/ex_source.c                                      |      88 -
 usr.bin/vi/ex/ex_stop.c                                        |      53 -
 usr.bin/vi/ex/ex_subst.c                                       |    1433 -
 usr.bin/vi/ex/ex_tag.c                                         |    1472 -
 usr.bin/vi/ex/ex_tcl.c                                         |      83 -
 usr.bin/vi/ex/ex_txt.c                                         |     431 -
 usr.bin/vi/ex/ex_undo.c                                        |      79 -
 usr.bin/vi/ex/ex_usage.c                                       |     198 -
 usr.bin/vi/ex/ex_util.c                                        |     226 -
 usr.bin/vi/ex/ex_version.c                                     |      41 -
 usr.bin/vi/ex/ex_visual.c                                      |     163 -
 usr.bin/vi/ex/ex_write.c                                       |     370 -
 usr.bin/vi/ex/ex_yank.c                                        |      48 -
 usr.bin/vi/ex/ex_z.c                                           |     152 -
 usr.bin/vi/ex/script.h                                         |      25 -
 usr.bin/vi/ex/tag.h                                            |     109 -
 usr.bin/vi/ex/version.h                                        |       4 -
 usr.bin/vi/include/bitstring.h                                 |     145 -
 usr.bin/vi/include/cl_extern.h                                 |      56 -
 usr.bin/vi/include/common_extern.h                             |     139 -
 usr.bin/vi/include/ex_def.h                                    |      81 -
 usr.bin/vi/include/ex_extern.h                                 |     135 -
 usr.bin/vi/include/options_def.h                               |      80 -
 usr.bin/vi/include/perl_extern.h                               |       4 -
 usr.bin/vi/include/sys/queue.h                                 |     261 -
 usr.bin/vi/include/tcl_extern.h                                |       3 -
 usr.bin/vi/include/tk_extern.h                                 |      31 -
 usr.bin/vi/include/vi_extern.h                                 |     144 -
 usr.bin/vi/recover/recover.script                              |      46 -
 usr.bin/vi/vi/getc.c                                           |     236 -
 usr.bin/vi/vi/v_at.c                                           |     111 -
 usr.bin/vi/vi/v_ch.c                                           |     297 -
 usr.bin/vi/vi/v_cmd.c                                          |     507 -
 usr.bin/vi/vi/v_delete.c                                       |     109 -
 usr.bin/vi/vi/v_ex.c                                           |     693 -
 usr.bin/vi/vi/v_increment.c                                    |     269 -
 usr.bin/vi/vi/v_init.c                                         |     128 -
 usr.bin/vi/vi/v_itxt.c                                         |     539 -
 usr.bin/vi/vi/v_left.c                                         |     295 -
 usr.bin/vi/vi/v_mark.c                                         |     233 -
 usr.bin/vi/vi/v_match.c                                        |     172 -
 usr.bin/vi/vi/v_paragraph.c                                    |     346 -
 usr.bin/vi/vi/v_put.c                                          |     148 -
 usr.bin/vi/vi/v_redraw.c                                       |      41 -
 usr.bin/vi/vi/v_replace.c                                      |     201 -
 usr.bin/vi/vi/v_right.c                                        |     147 -
 usr.bin/vi/vi/v_screen.c                                       |      67 -
 usr.bin/vi/vi/v_scroll.c                                       |     476 -
 usr.bin/vi/vi/v_search.c                                       |     477 -
 usr.bin/vi/vi/v_section.c                                      |     254 -
 usr.bin/vi/vi/v_sentence.c                                     |     361 -
 usr.bin/vi/vi/v_status.c                                       |      43 -
 usr.bin/vi/vi/v_txt.c                                          |    2870 -
 usr.bin/vi/vi/v_ulcase.c                                       |     181 -
 usr.bin/vi/vi/v_undo.c                                         |     141 -
 usr.bin/vi/vi/v_util.c                                         |     179 -
 usr.bin/vi/vi/v_word.c                                         |     549 -
 usr.bin/vi/vi/v_xchar.c                                        |     109 -
 usr.bin/vi/vi/v_yank.c                                         |      84 -
 usr.bin/vi/vi/v_z.c                                            |     151 -
 usr.bin/vi/vi/v_zexit.c                                        |      56 -
 usr.bin/vi/vi/vi.c                                             |    1233 -
 usr.bin/vi/vi/vi.h                                             |     379 -
 usr.bin/vi/vi/vs_line.c                                        |     512 -
 usr.bin/vi/vi/vs_msg.c                                         |     925 -
 usr.bin/vi/vi/vs_refresh.c                                     |     830 -
 usr.bin/vi/vi/vs_relative.c                                    |     307 -
 usr.bin/vi/vi/vs_smap.c                                        |    1259 -
 usr.bin/vi/vi/vs_split.c                                       |     530 -
 usr.bin/vis/Makefile                                           |       7 -
 usr.bin/vis/foldit.c                                           |      84 -
 usr.bin/vis/vis.1                                              |     126 -
 usr.bin/vis/vis.c                                              |     183 -
 usr.bin/vmstat/Makefile                                        |      13 -
 usr.bin/vmstat/dkstats.c                                       |     282 -
 usr.bin/vmstat/dkstats.h                                       |      49 -
 usr.bin/vmstat/vmstat.8                                        |     212 -
 usr.bin/vmstat/vmstat.c                                        |    1179 -
 usr.bin/w/Makefile                                             |      15 -
 usr.bin/w/extern.h                                             |      43 -
 usr.bin/w/pr_time.c                                            |     116 -
 usr.bin/w/proc_compare.c                                       |     127 -
 usr.bin/w/uptime.1                                             |      62 -
 usr.bin/w/w.1                                                  |     143 -
 usr.bin/w/w.c                                                  |     469 -
 usr.bin/wall/Makefile                                          |      10 -
 usr.bin/wall/wall.1                                            |      65 -
 usr.bin/wall/wall.c                                            |     199 -
 usr.bin/wc/Makefile                                            |       6 -
 usr.bin/wc/wc.1                                                |     137 -
 usr.bin/wc/wc.c                                                |     282 -
 usr.bin/what/Makefile                                          |       6 -
 usr.bin/what/what.1                                            |      87 -
 usr.bin/what/what.c                                            |     132 -
 usr.bin/whatis/Makefile                                        |       9 -
 usr.bin/whatis/whatis.1                                        |     108 -
 usr.bin/whatis/whatis.c                                        |     246 -
 usr.bin/whereis/Makefile                                       |       6 -
 usr.bin/whereis/whereis.1                                      |      75 -
 usr.bin/whereis/whereis.c                                      |     138 -
 usr.bin/which/Makefile                                         |       7 -
 usr.bin/which/which.1                                          |      85 -
 usr.bin/which/which.csh                                        |      81 -
 usr.bin/who/Makefile                                           |       6 -
 usr.bin/who/who.1                                              |     134 -
 usr.bin/who/who.c                                              |     274 -
 usr.bin/whois/Makefile                                         |       7 -
 usr.bin/whois/whois.1                                          |     188 -
 usr.bin/whois/whois.c                                          |     633 -
 usr.bin/window/:tt                                             |      11 -
 usr.bin/window/:tty                                            |       6 -
 usr.bin/window/:var                                            |       2 -
 usr.bin/window/:ww                                             |      19 -
 usr.bin/window/Makefile                                        |      22 -
 usr.bin/window/README                                          |     199 -
 usr.bin/window/alias.h                                         |      58 -
 usr.bin/window/char.c                                          |     157 -
 usr.bin/window/char.h                                          |      63 -
 usr.bin/window/cmd.c                                           |     316 -
 usr.bin/window/cmd1.c                                          |     182 -
 usr.bin/window/cmd2.c                                          |     167 -
 usr.bin/window/cmd3.c                                          |      74 -
 usr.bin/window/cmd4.c                                          |      64 -
 usr.bin/window/cmd5.c                                          |     142 -
 usr.bin/window/cmd6.c                                          |     119 -
 usr.bin/window/cmd7.c                                          |     294 -
 usr.bin/window/compress.c                                      |     940 -
 usr.bin/window/context.c                                       |     147 -
 usr.bin/window/context.h                                       |      89 -
 usr.bin/window/defs.h                                          |     131 -
 usr.bin/window/error.c                                         |     123 -
 usr.bin/window/lcmd.c                                          |     139 -
 usr.bin/window/lcmd.h                                          |      87 -
 usr.bin/window/lcmd1.c                                         |     466 -
 usr.bin/window/lcmd2.c                                         |     408 -
 usr.bin/window/local.h                                         |      53 -
 usr.bin/window/main.c                                          |     207 -
 usr.bin/window/mloop.c                                         |      96 -
 usr.bin/window/parser.h                                        |      65 -
 usr.bin/window/parser1.c                                       |     249 -
 usr.bin/window/parser2.c                                       |     247 -
 usr.bin/window/parser3.c                                       |     203 -
 usr.bin/window/parser4.c                                       |     307 -
 usr.bin/window/parser5.c                                       |     211 -
 usr.bin/window/scanner.c                                       |     598 -
 usr.bin/window/startup.c                                       |     104 -
 usr.bin/window/string.c                                        |     165 -
 usr.bin/window/token.h                                         |      85 -
 usr.bin/window/tt.h                                            |     183 -
 usr.bin/window/ttf100.c                                        |      77 -
 usr.bin/window/ttgeneric.c                                     |     607 -
 usr.bin/window/tth19.c                                         |     322 -
 usr.bin/window/tth29.c                                         |     105 -
 usr.bin/window/ttinit.c                                        |     127 -
 usr.bin/window/ttoutput.c                                      |     157 -
 usr.bin/window/tttermcap.c                                     |     133 -
 usr.bin/window/tttvi925.c                                      |      72 -
 usr.bin/window/ttwyse60.c                                      |      84 -
 usr.bin/window/ttwyse75.c                                      |      84 -
 usr.bin/window/ttzapple.c                                      |     552 -
 usr.bin/window/ttzentec.c                                      |      74 -
 usr.bin/window/value.h                                         |      55 -
 usr.bin/window/var.c                                           |     168 -
 usr.bin/window/var.h                                           |      67 -
 usr.bin/window/win.c                                           |     396 -
 usr.bin/window/window.1                                        |     950 -
 usr.bin/window/window_string.h                                 |      79 -
 usr.bin/window/windowrc                                        |      88 -
 usr.bin/window/ww.h                                            |     400 -
 usr.bin/window/wwadd.c                                         |      96 -
 usr.bin/window/wwalloc.c                                       |      82 -
 usr.bin/window/wwbox.c                                         |      74 -
 usr.bin/window/wwchild.c                                       |      79 -
 usr.bin/window/wwclose.c                                       |      69 -
 usr.bin/window/wwclreol.c                                      |     104 -
 usr.bin/window/wwclreos.c                                      |      64 -
 usr.bin/window/wwcursor.c                                      |     103 -
 usr.bin/window/wwdata.c                                        |      46 -
 usr.bin/window/wwdelchar.c                                     |     133 -
 usr.bin/window/wwdelete.c                                      |     149 -
 usr.bin/window/wwdelline.c                                     |      96 -
 usr.bin/window/wwdump.c                                        |     128 -
 usr.bin/window/wwend.c                                         |      75 -
 usr.bin/window/wwenviron.c                                     |     117 -
 usr.bin/window/wwerror.c                                       |      75 -
 usr.bin/window/wwflush.c                                       |     127 -
 usr.bin/window/wwframe.c                                       |     255 -
 usr.bin/window/wwgets.c                                        |     120 -
 usr.bin/window/wwinit.c                                        |     423 -
 usr.bin/window/wwinschar.c                                     |     140 -
 usr.bin/window/wwinsline.c                                     |      96 -
 usr.bin/window/wwiomux.c                                       |     209 -
 usr.bin/window/wwlabel.c                                       |     106 -
 usr.bin/window/wwmisc.c                                        |      76 -
 usr.bin/window/wwmove.c                                        |     107 -
 usr.bin/window/wwopen.c                                        |     206 -
 usr.bin/window/wwprintf.c                                      |      80 -
 usr.bin/window/wwpty.c                                         |      97 -
 usr.bin/window/wwputc.c                                        |      56 -
 usr.bin/window/wwputs.c                                        |      60 -
 usr.bin/window/wwredraw.c                                      |      65 -
 usr.bin/window/wwredrawwin.c                                   |      81 -
 usr.bin/window/wwrint.c                                        |      87 -
 usr.bin/window/wwscroll.c                                      |     244 -
 usr.bin/window/wwsize.c                                        |     201 -
 usr.bin/window/wwspawn.c                                       |     103 -
 usr.bin/window/wwsuspend.c                                     |      64 -
 usr.bin/window/wwterminfo.c                                    |     126 -
 usr.bin/window/wwtty.c                                         |     195 -
 usr.bin/window/wwunframe.c                                     |      84 -
 usr.bin/window/wwupdate.c                                      |     281 -
 usr.bin/window/wwwrite.c                                       |     313 -
 usr.bin/window/xx.c                                            |     287 -
 usr.bin/window/xx.h                                            |      81 -
 usr.bin/window/xxflush.c                                       |     205 -
 usr.bin/write/Makefile                                         |       8 -
 usr.bin/write/write.1                                          |     110 -
 usr.bin/write/write.c                                          |     334 -
 usr.bin/xargs/Makefile                                         |       6 -
 usr.bin/xargs/pathnames.h                                      |      38 -
 usr.bin/xargs/xargs.1                                          |     199 -
 usr.bin/xargs/xargs.c                                          |     340 -
 usr.bin/xinstall/Makefile                                      |      12 -
 usr.bin/xinstall/install.1                                     |     254 -
 usr.bin/xinstall/pathnames.h                                   |      38 -
 usr.bin/xinstall/xinstall.c                                    |     677 -
 usr.bin/xlint/Makefile                                         |       5 -
 usr.bin/xlint/Makefile.inc                                     |       5 -
 usr.bin/xlint/lint1/Makefile                                   |      17 -
 usr.bin/xlint/lint1/cgram.y                                    |    1788 -
 usr.bin/xlint/lint1/decl.c                                     |    3158 -
 usr.bin/xlint/lint1/emit.c                                     |     242 -
 usr.bin/xlint/lint1/emit1.c                                    |     610 -
 usr.bin/xlint/lint1/err.c                                      |     546 -
 usr.bin/xlint/lint1/externs.h                                  |      56 -
 usr.bin/xlint/lint1/externs1.h                                 |     281 -
 usr.bin/xlint/lint1/func.c                                     |    1266 -
 usr.bin/xlint/lint1/init.c                                     |     514 -
 usr.bin/xlint/lint1/lint.h                                     |     118 -
 usr.bin/xlint/lint1/lint1.h                                    |     392 -
 usr.bin/xlint/lint1/main1.c                                    |     186 -
 usr.bin/xlint/lint1/mem.c                                      |      92 -
 usr.bin/xlint/lint1/mem1.c                                     |     359 -
 usr.bin/xlint/lint1/op.h                                       |     120 -
 usr.bin/xlint/lint1/param.h                                    |     132 -
 usr.bin/xlint/lint1/scan.l                                     |    1463 -
 usr.bin/xlint/lint1/tree.c                                     |    4011 -
 usr.bin/xlint/lint2/Makefile                                   |      13 -
 usr.bin/xlint/lint2/chk.c                                      |    1485 -
 usr.bin/xlint/lint2/emit2.c                                    |     304 -
 usr.bin/xlint/lint2/externs2.h                                 |      94 -
 usr.bin/xlint/lint2/hash.c                                     |     173 -
 usr.bin/xlint/lint2/lint2.h                                    |     188 -
 usr.bin/xlint/lint2/main2.c                                    |     192 -
 usr.bin/xlint/lint2/mem2.c                                     |      98 -
 usr.bin/xlint/lint2/msg.c                                      |     159 -
 usr.bin/xlint/lint2/read.c                                     |    1258 -
 usr.bin/xlint/llib/Makefile                                    |      17 -
 usr.bin/xlint/llib/llib-lposix                                 |     311 -
 usr.bin/xlint/llib/llib-lstdc                                  |     252 -
 usr.bin/xlint/xlint/Makefile                                   |      12 -
 usr.bin/xlint/xlint/lint.1                                     |     563 -
 usr.bin/xlint/xlint/pathnames.h                                |      41 -
 usr.bin/xlint/xlint/xlint.c                                    |     802 -
 usr.bin/xstr/Makefile                                          |       6 -
 usr.bin/xstr/pathnames.h                                       |      39 -
 usr.bin/xstr/xstr.1                                            |     165 -
 usr.bin/xstr/xstr.c                                            |     516 -
 usr.bin/yacc/ACKNOWLEDGEMENTS                                  |      25 -
 usr.bin/yacc/Makefile                                          |       7 -
 usr.bin/yacc/NEW_FEATURES                                      |      46 -
 usr.bin/yacc/NOTES                                             |      21 -
 usr.bin/yacc/README                                            |      23 -
 usr.bin/yacc/closure.c                                         |     308 -
 usr.bin/yacc/defs.h                                            |     374 -
 usr.bin/yacc/error.c                                           |     365 -
 usr.bin/yacc/lalr.c                                            |     707 -
 usr.bin/yacc/lr0.c                                             |     672 -
 usr.bin/yacc/main.c                                            |     491 -
 usr.bin/yacc/mkpar.c                                           |     422 -
 usr.bin/yacc/output.c                                          |    1300 -
 usr.bin/yacc/reader.c                                          |    1913 -
 usr.bin/yacc/skeleton.c                                        |     389 -
 usr.bin/yacc/symtab.c                                          |     172 -
 usr.bin/yacc/test/error.output                                 |      27 -
 usr.bin/yacc/test/error.tab.c                                  |     276 -
 usr.bin/yacc/test/error.tab.h                                  |       2 -
 usr.bin/yacc/test/error.y                                      |       6 -
 usr.bin/yacc/test/ftp.output                                   |    1625 -
 usr.bin/yacc/test/ftp.tab.c                                    |    1745 -
 usr.bin/yacc/test/ftp.tab.h                                    |      65 -
 usr.bin/yacc/test/ftp.y                                        |    1185 -
 usr.bin/yacc/verbose.c                                         |     399 -
 usr.bin/yacc/warshall.c                                        |     133 -
 usr.bin/yacc/yacc.1                                            |     192 -
 usr.bin/yacc/yyfix.1                                           |     112 -
 usr.bin/yes/Makefile                                           |       6 -
 usr.bin/yes/yes.1                                              |      56 -
 usr.bin/yes/yes.c                                              |      63 -
 usr.bin/ypcat/Makefile                                         |       6 -
 usr.bin/ypcat/ypcat.1                                          |      75 -
 usr.bin/ypcat/ypcat.c                                          |     175 -
 usr.bin/ypmatch/Makefile                                       |       6 -
 usr.bin/ypmatch/ypmatch.1                                      |      76 -
 usr.bin/ypmatch/ypmatch.c                                      |     165 -
 usr.bin/ypwhich/Makefile                                       |       6 -
 usr.bin/ypwhich/ypwhich.1                                      |     114 -
 usr.bin/ypwhich/ypwhich.c                                      |     413 -
 usr.sbin/Makefile                                              |      46 -
 usr.sbin/Makefile.inc                                          |       5 -
 usr.sbin/ac/Makefile                                           |       6 -
 usr.sbin/ac/ac.8                                               |     145 -
 usr.sbin/ac/ac.c                                               |     574 -
 usr.sbin/accton/Makefile                                       |       7 -
 usr.sbin/accton/accton.8                                       |      51 -
 usr.sbin/accton/accton.c                                       |      99 -
 usr.sbin/amd/AUTHORS                                           |     261 -
 usr.sbin/amd/COPYING                                           |      38 -
 usr.sbin/amd/Makefile                                          |       7 -
 usr.sbin/amd/Makefile.inc                                      |      22 -
 usr.sbin/amd/amd/Makefile                                      |      19 -
 usr.sbin/amd/amd/am_ops.c                                      |     460 -
 usr.sbin/amd/amd/amd.8                                         |     354 -
 usr.sbin/amd/amd/amd.c                                         |     542 -
 usr.sbin/amd/amd/amfs_auto.c                                   |    1602 -
 usr.sbin/amd/amd/amfs_direct.c                                 |     108 -
 usr.sbin/amd/amd/amfs_error.c                                  |     152 -
 usr.sbin/amd/amd/amfs_host.c                                   |     688 -
 usr.sbin/amd/amd/amfs_inherit.c                                |     202 -
 usr.sbin/amd/amd/amfs_link.c                                   |     143 -
 usr.sbin/amd/amd/amfs_linkx.c                                  |     105 -
 usr.sbin/amd/amd/amfs_nfsl.c                                   |     239 -
 usr.sbin/amd/amd/amfs_nfsx.c                                   |     534 -
 usr.sbin/amd/amd/amfs_program.c                                |     195 -
 usr.sbin/amd/amd/amfs_root.c                                   |     101 -
 usr.sbin/amd/amd/amfs_toplvl.c                                 |     361 -
 usr.sbin/amd/amd/amfs_union.c                                  |     126 -
 usr.sbin/amd/amd/amq_subr.c                                    |     504 -
 usr.sbin/amd/amd/amq_svc.c                                     |     163 -
 usr.sbin/amd/amd/autil.c                                       |     420 -
 usr.sbin/amd/amd/build_version.h                               |       5 -
 usr.sbin/amd/amd/clock.c                                       |     250 -
 usr.sbin/amd/amd/conf.c                                        |     953 -
 usr.sbin/amd/amd/conf_parse.y                                  |     177 -
 usr.sbin/amd/amd/conf_tok.l                                    |     188 -
 usr.sbin/amd/amd/get_args.c                                    |     393 -
 usr.sbin/amd/amd/info_file.c                                   |     267 -
 usr.sbin/amd/amd/info_hesiod.c                                 |     202 -
 usr.sbin/amd/amd/info_ndbm.c                                   |     143 -
 usr.sbin/amd/amd/info_nis.c                                    |     456 -
 usr.sbin/amd/amd/info_passwd.c                                 |     197 -
 usr.sbin/amd/amd/info_union.c                                  |     151 -
 usr.sbin/amd/amd/map.c                                         |    1114 -
 usr.sbin/amd/amd/mapc.c                                        |    1229 -
 usr.sbin/amd/amd/mntfs.c                                       |     337 -
 usr.sbin/amd/amd/nfs_prot_svc.c                                |     273 -
 usr.sbin/amd/amd/nfs_start.c                                   |     478 -
 usr.sbin/amd/amd/nfs_subr.c                                    |     619 -
 usr.sbin/amd/amd/ops_autofs.c                                  |    1283 -
 usr.sbin/amd/amd/ops_cdfs.c                                    |     221 -
 usr.sbin/amd/amd/ops_mfs.c                                     |      57 -
 usr.sbin/amd/amd/ops_nfs.c                                     |     806 -
 usr.sbin/amd/amd/ops_nfs3.c                                    |      57 -
 usr.sbin/amd/amd/ops_nullfs.c                                  |      57 -
 usr.sbin/amd/amd/ops_pcfs.c                                    |     181 -
 usr.sbin/amd/amd/ops_tfs.c                                     |      57 -
 usr.sbin/amd/amd/ops_tmpfs.c                                   |      57 -
 usr.sbin/amd/amd/ops_ufs.c                                     |     175 -
 usr.sbin/amd/amd/ops_umapfs.c                                  |      57 -
 usr.sbin/amd/amd/ops_unionfs.c                                 |      57 -
 usr.sbin/amd/amd/opts.c                                        |    1325 -
 usr.sbin/amd/amd/restart.c                                     |     210 -
 usr.sbin/amd/amd/rpc_fwd.c                                     |     478 -
 usr.sbin/amd/amd/sched.c                                       |     302 -
 usr.sbin/amd/amd/srvr_amfs_auto.c                              |     216 -
 usr.sbin/amd/amd/srvr_nfs.c                                    |     871 -
 usr.sbin/amd/amd2netbsd                                        |    2655 -
 usr.sbin/amd/amq/Makefile                                      |       7 -
 usr.sbin/amd/amq/amq.8                                         |     216 -
 usr.sbin/amd/amq/amq.c                                         |     965 -
 usr.sbin/amd/amq/amq.h                                         |      65 -
 usr.sbin/amd/amq/amq_clnt.c                                    |     210 -
 usr.sbin/amd/amq/amq_xdr.c                                     |     261 -
 usr.sbin/amd/doc/Makefile                                      |       6 -
 usr.sbin/amd/doc/am-utils.texi                                 |    8026 -
 usr.sbin/amd/doc/hlfsd.ps                                      |    2719 -
 usr.sbin/amd/doc/texinfo.tex                                   |    5485 -
 usr.sbin/amd/doc/version.texi                                  |       4 -
 usr.sbin/amd/fixmount/Makefile                                 |       7 -
 usr.sbin/amd/fixmount/check_mount.c                            |      81 -
 usr.sbin/amd/fixmount/fixmount.8                               |     161 -
 usr.sbin/amd/fixmount/fixmount.c                               |     609 -
 usr.sbin/amd/fsinfo/Makefile                                   |      12 -
 usr.sbin/amd/fsinfo/conf/automounts                            |      48 -
 usr.sbin/amd/fsinfo/conf/csg_sun3                              |      18 -
 usr.sbin/amd/fsinfo/conf/csg_vax                               |      67 -
 usr.sbin/amd/fsinfo/conf/diskless_sun3_sos4                    |       9 -
 usr.sbin/amd/fsinfo/conf/hosts/achilles.doc.ic.ac.uk           |     116 -
 usr.sbin/amd/fsinfo/conf/hosts/bigears.doc.ic.ac.uk            |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/dylan.doc.ic.ac.uk              |      68 -
 usr.sbin/amd/fsinfo/conf/hosts/flamingo.doc.ic.ac.uk           |     104 -
 usr.sbin/amd/fsinfo/conf/hosts/ganymede.doc.ic.ac.uk           |      33 -
 usr.sbin/amd/fsinfo/conf/hosts/gould.doc.ic.ac.uk              |     477 -
 usr.sbin/amd/fsinfo/conf/hosts/gummo.doc.ic.ac.uk              |      12 -
 usr.sbin/amd/fsinfo/conf/hosts/ivax.doc.ic.ac.uk               |      84 -
 usr.sbin/amd/fsinfo/conf/hosts/obsidian.doc.ic.ac.uk           |      28 -
 usr.sbin/amd/fsinfo/conf/hosts/pelican.doc.ic.ac.uk            |     208 -
 usr.sbin/amd/fsinfo/conf/hosts/rvax.doc.ic.ac.uk               |      66 -
 usr.sbin/amd/fsinfo/conf/hosts/sky.doc.ic.ac.uk                |      79 -
 usr.sbin/amd/fsinfo/conf/hosts/svax.doc.ic.ac.uk               |      66 -
 usr.sbin/amd/fsinfo/conf/hosts/tcsun1.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tcsun2.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tcsun3.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tcsun4.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tcsun5.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/toytown.doc.ic.ac.uk            |     116 -
 usr.sbin/amd/fsinfo/conf/hosts/truth.doc.ic.ac.uk              |       9 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun1.doc.ic.ac.uk              |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun10.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun11.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun12.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun13.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun14.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun15.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun16.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun17.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun18.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun19.doc.ic.ac.uk             |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun2.doc.ic.ac.uk              |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun3.doc.ic.ac.uk              |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun4.doc.ic.ac.uk              |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun5.doc.ic.ac.uk              |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun6.doc.ic.ac.uk              |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun7.doc.ic.ac.uk              |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun8.doc.ic.ac.uk              |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsun9.doc.ic.ac.uk              |       3 -
 usr.sbin/amd/fsinfo/conf/hosts/tsunfs.doc.ic.ac.uk             |     211 -
 usr.sbin/amd/fsinfo/conf/hosts/whoops.doc.ic.ac.uk             |      21 -
 usr.sbin/amd/fsinfo/conf/users                                 |     106 -
 usr.sbin/amd/fsinfo/fsi_analyze.c                              |     672 -
 usr.sbin/amd/fsinfo/fsi_data.h                                 |     237 -
 usr.sbin/amd/fsinfo/fsi_dict.c                                 |     140 -
 usr.sbin/amd/fsinfo/fsi_gram.y                                 |     437 -
 usr.sbin/amd/fsinfo/fsi_lex.l                                  |     273 -
 usr.sbin/amd/fsinfo/fsi_util.c                                 |     695 -
 usr.sbin/amd/fsinfo/fsinfo.8                                   |     103 -
 usr.sbin/amd/fsinfo/fsinfo.c                                   |     291 -
 usr.sbin/amd/fsinfo/fsinfo.h                                   |     134 -
 usr.sbin/amd/fsinfo/wr_atab.c                                  |     336 -
 usr.sbin/amd/fsinfo/wr_bparam.c                                |     111 -
 usr.sbin/amd/fsinfo/wr_dumpset.c                               |      98 -
 usr.sbin/amd/fsinfo/wr_exportfs.c                              |     110 -
 usr.sbin/amd/fsinfo/wr_fstab.c                                 |     344 -
 usr.sbin/amd/hlfsd/Makefile                                    |       7 -
 usr.sbin/amd/hlfsd/hlfsd.8                                     |     312 -
 usr.sbin/amd/hlfsd/hlfsd.c                                     |     955 -
 usr.sbin/amd/hlfsd/hlfsd.h                                     |     173 -
 usr.sbin/amd/hlfsd/homedir.c                                   |     801 -
 usr.sbin/amd/hlfsd/nfs_prot_svc.c                              |     252 -
 usr.sbin/amd/hlfsd/stubs.c                                     |     533 -
 usr.sbin/amd/include/am_compat.h                               |     272 -
 usr.sbin/amd/include/am_defs.h                                 |    1410 -
 usr.sbin/amd/include/am_utils.h                                |     977 -
 usr.sbin/amd/include/am_xdr_func.h                             |     205 -
 usr.sbin/amd/include/amd.h                                     |     305 -
 usr.sbin/amd/include/amq_defs.h                                |     159 -
 usr.sbin/amd/include/amu_nfs_prot.h                            |     227 -
 usr.sbin/amd/include/aux_conf.h                                |      71 -
 usr.sbin/amd/include/config.h                                  |    1983 -
 usr.sbin/amd/libamu/Makefile                                   |      17 -
 usr.sbin/amd/libamu/amu.h                                      |      80 -
 usr.sbin/amd/libamu/hasmntopt.c                                |     121 -
 usr.sbin/amd/libamu/misc_rpc.c                                 |     170 -
 usr.sbin/amd/libamu/mkconf                                     |      29 -
 usr.sbin/amd/libamu/mount_fs.c                                 |     927 -
 usr.sbin/amd/libamu/mtab.c                                     |     123 -
 usr.sbin/amd/libamu/mtabutil.c                                 |     147 -
 usr.sbin/amd/libamu/nfs_prot_xdr.c                             |      61 -
 usr.sbin/amd/libamu/shlib_version                              |       2 -
 usr.sbin/amd/libamu/tranputil.c                                |     388 -
 usr.sbin/amd/libamu/umount_fs.c                                |      91 -
 usr.sbin/amd/libamu/util.c                                     |     178 -
 usr.sbin/amd/libamu/wire.c                                     |     493 -
 usr.sbin/amd/libamu/xdr_func.c                                 |    1157 -
 usr.sbin/amd/libamu/xutil.c                                    |     901 -
 usr.sbin/amd/maps/a_master                                     |      79 -
 usr.sbin/amd/maps/a_net                                        |       3 -
 usr.sbin/amd/mk-amd-map/Makefile                               |       7 -
 usr.sbin/amd/mk-amd-map/mk-amd-map.8                           |      64 -
 usr.sbin/amd/mk-amd-map/mk-amd-map.c                           |     384 -
 usr.sbin/amd/pawd/Makefile                                     |      11 -
 usr.sbin/amd/pawd/pawd.1                                       |      74 -
 usr.sbin/amd/pawd/pawd.c                                       |     290 -
 usr.sbin/amd/wire-test/Makefile                                |       7 -
 usr.sbin/amd/wire-test/wire-test.8                             |      72 -
 usr.sbin/amd/wire-test/wire-test.c                             |     131 -
 usr.sbin/apm/Makefile                                          |      15 -
 usr.sbin/apm/apm.8                                             |     137 -
 usr.sbin/apm/apm.c                                             |     331 -
 usr.sbin/apmd/Makefile                                         |      14 -
 usr.sbin/apmd/apm-proto.h                                      |      66 -
 usr.sbin/apmd/apmd.8                                           |     212 -
 usr.sbin/apmd/apmd.c                                           |     557 -
 usr.sbin/apmd/apmsubr.c                                        |      88 -
 usr.sbin/apmd/pathnames.h                                      |      48 -
 usr.sbin/arp/Makefile                                          |       7 -
 usr.sbin/arp/arp.4                                             |     128 -
 usr.sbin/arp/arp.8                                             |     135 -
 usr.sbin/arp/arp.c                                             |     610 -
 usr.sbin/bad144/Makefile                                       |      12 -
 usr.sbin/bad144/bad144.8                                       |     187 -
 usr.sbin/bad144/bad144.c                                       |     679 -
 usr.sbin/bind/Makefile                                         |       8 -
 usr.sbin/bind/Makefile.inc                                     |      15 -
 usr.sbin/bind/dig/Makefile                                     |      16 -
 usr.sbin/bind/dig/dig.c                                        |    1245 -
 usr.sbin/bind/dnsquery/Makefile                                |      14 -
 usr.sbin/bind/dnsquery/dnsquery.c                              |     209 -
 usr.sbin/bind/host/Makefile                                    |      15 -
 usr.sbin/bind/host/host.c                                      |    1413 -
 usr.sbin/bind/include/arpa/nameser.h                           |     454 -
 usr.sbin/bind/include/arpa/nameser_compat.h                    |     226 -
 usr.sbin/bind/include/fd_setsize.h                             |      11 -
 usr.sbin/bind/include/hesiod.h                                 |      39 -
 usr.sbin/bind/include/isc/assertions.h                         |     124 -
 usr.sbin/bind/include/isc/eventlib.h                           |     193 -
 usr.sbin/bind/include/isc/heap.h                               |      49 -
 usr.sbin/bind/include/isc/list.h                               |     103 -
 usr.sbin/bind/include/isc/logging.h                            |     100 -
 usr.sbin/bind/include/isc/memcluster.h                         |      42 -
 usr.sbin/bind/include/isc/misc.h                               |      31 -
 usr.sbin/bind/include/isc/tree.h                               |      50 -
 usr.sbin/bind/include/namespace.h                              |      69 -
 usr.sbin/bind/include/port_after.h                             |      41 -
 usr.sbin/bind/include/port_before.h                            |      10 -
 usr.sbin/bind/include/resolv.h                                 |     311 -
 usr.sbin/bind/lib/Makefile                                     |      19 -
 usr.sbin/bind/lib/inet/Makefile.inc                            |       7 -
 usr.sbin/bind/lib/inet/hostnamelen.c                           |      96 -
 usr.sbin/bind/lib/inet/inet_addr.c                             |     187 -
 usr.sbin/bind/lib/inet/inet_lnaof.c                            |      65 -
 usr.sbin/bind/lib/inet/inet_makeaddr.c                         |      68 -
 usr.sbin/bind/lib/inet/inet_net_ntop.c                         |     145 -
 usr.sbin/bind/lib/inet/inet_net_pton.c                         |     214 -
 usr.sbin/bind/lib/inet/inet_neta.c                             |      89 -
 usr.sbin/bind/lib/inet/inet_netof.c                            |      64 -
 usr.sbin/bind/lib/inet/inet_network.c                          |      98 -
 usr.sbin/bind/lib/inet/inet_ntoa.c                             |      64 -
 usr.sbin/bind/lib/inet/inet_ntop.c                             |     203 -
 usr.sbin/bind/lib/inet/inet_pton.c                             |     217 -
 usr.sbin/bind/lib/inet/nsap_addr.c                             |     103 -
 usr.sbin/bind/lib/isc/Makefile.inc                             |       7 -
 usr.sbin/bind/lib/isc/assertions.c                             |      92 -
 usr.sbin/bind/lib/isc/base64.c                                 |     322 -
 usr.sbin/bind/lib/isc/bitncmp.c                                |      68 -
 usr.sbin/bind/lib/isc/ev_connects.c                            |     318 -
 usr.sbin/bind/lib/isc/ev_files.c                               |     273 -
 usr.sbin/bind/lib/isc/ev_streams.c                             |     303 -
 usr.sbin/bind/lib/isc/ev_timers.c                              |     408 -
 usr.sbin/bind/lib/isc/ev_waits.c                               |     247 -
 usr.sbin/bind/lib/isc/eventlib.c                               |     658 -
 usr.sbin/bind/lib/isc/eventlib_p.h                             |     201 -
 usr.sbin/bind/lib/isc/heap.c                                   |     223 -
 usr.sbin/bind/lib/isc/logging.c                                |     676 -
 usr.sbin/bind/lib/isc/logging_p.h                              |      60 -
 usr.sbin/bind/lib/isc/memcluster.c                             |     317 -
 usr.sbin/bind/lib/isc/tree.c                                   |     534 -
 usr.sbin/bind/lib/nameser/Makefile.inc                         |       5 -
 usr.sbin/bind/lib/nameser/ns_name.c                            |     599 -
 usr.sbin/bind/lib/nameser/ns_netint.c                          |      60 -
 usr.sbin/bind/lib/nameser/ns_parse.c                           |     196 -
 usr.sbin/bind/lib/nameser/ns_print.c                           |     753 -
 usr.sbin/bind/lib/nameser/ns_ttl.c                             |     161 -
 usr.sbin/bind/lib/resolv/Makefile.inc                          |       7 -
 usr.sbin/bind/lib/resolv/herror.c                              |     114 -
 usr.sbin/bind/lib/resolv/res_comp.c                            |     251 -
 usr.sbin/bind/lib/resolv/res_data.c                            |      85 -
 usr.sbin/bind/lib/resolv/res_debug.c                           |     976 -
 usr.sbin/bind/lib/resolv/res_init.c                            |     483 -
 usr.sbin/bind/lib/resolv/res_mkquery.c                         |     203 -
 usr.sbin/bind/lib/resolv/res_mkupdate.c                        |     421 -
 usr.sbin/bind/lib/resolv/res_mkupdate.h                        |       9 -
 usr.sbin/bind/lib/resolv/res_query.c                           |     410 -
 usr.sbin/bind/lib/resolv/res_send.c                            |     811 -
 usr.sbin/bind/lib/resolv/res_update.c                          |     520 -
 usr.sbin/bind/man/dig.1                                        |     681 -
 usr.sbin/bind/man/dnsquery.1                                   |     180 -
 usr.sbin/bind/man/host.1                                       |     317 -
 usr.sbin/bind/man/named-bootconf.8                             |      55 -
 usr.sbin/bind/man/named-xfer.8                                 |     149 -
 usr.sbin/bind/man/named.8                                      |     451 -
 usr.sbin/bind/man/named.conf.5                                 |    2082 -
 usr.sbin/bind/man/named.reload.8                               |      71 -
 usr.sbin/bind/man/named.restart.8                              |      75 -
 usr.sbin/bind/man/ndc.8                                        |     144 -
 usr.sbin/bind/man/nslookup.8                                   |     538 -
 usr.sbin/bind/named-xfer/Makefile                              |      22 -
 usr.sbin/bind/named-xfer/named-xfer.c                          |    2179 -
 usr.sbin/bind/named/Makefile                                   |      35 -
 usr.sbin/bind/named/db_defs.h                                  |     235 -
 usr.sbin/bind/named/db_dict.c                                  |     113 -
 usr.sbin/bind/named/db_dump.c                                  |     637 -
 usr.sbin/bind/named/db_func.h                                  |     153 -
 usr.sbin/bind/named/db_glob.h                                  |      96 -
 usr.sbin/bind/named/db_glue.c                                  |     618 -
 usr.sbin/bind/named/db_load.c                                  |    2220 -
 usr.sbin/bind/named/db_lookup.c                                |     271 -
 usr.sbin/bind/named/db_save.c                                  |     223 -
 usr.sbin/bind/named/db_update.c                                |     934 -
 usr.sbin/bind/named/named-bootconf.sh                          |     253 -
 usr.sbin/bind/named/named.conf                                 |     431 -
 usr.sbin/bind/named/named.h                                    |      70 -
 usr.sbin/bind/named/ns_config.c                                |    2371 -
 usr.sbin/bind/named/ns_defs.h                                  |     758 -
 usr.sbin/bind/named/ns_forw.c                                  |    1134 -
 usr.sbin/bind/named/ns_func.h                                  |     382 -
 usr.sbin/bind/named/ns_glob.h                                  |     321 -
 usr.sbin/bind/named/ns_glue.c                                  |     418 -
 usr.sbin/bind/named/ns_init.c                                  |     514 -
 usr.sbin/bind/named/ns_lexer.c                                 |     752 -
 usr.sbin/bind/named/ns_lexer.h                                 |      47 -
 usr.sbin/bind/named/ns_main.c                                  |    2243 -
 usr.sbin/bind/named/ns_maint.c                                 |    1213 -
 usr.sbin/bind/named/ns_ncache.c                                |     228 -
 usr.sbin/bind/named/ns_parser.h                                |     112 -
 usr.sbin/bind/named/ns_parser.y                                |    1475 -
 usr.sbin/bind/named/ns_parseutil.c                             |     244 -
 usr.sbin/bind/named/ns_parseutil.h                             |      67 -
 usr.sbin/bind/named/ns_req.c                                   |    1671 -
 usr.sbin/bind/named/ns_resp.c                                  |    3300 -
 usr.sbin/bind/named/ns_stats.c                                 |     417 -
 usr.sbin/bind/named/ns_udp.c                                   |     125 -
 usr.sbin/bind/named/ns_update.c                                |    2397 -
 usr.sbin/bind/named/ns_xfr.c                                   |     644 -
 usr.sbin/bind/named/pathnames.c                                |      57 -
 usr.sbin/bind/named/pathnames.h                                |      72 -
 usr.sbin/bind/named/pathtemplate.h                             |      72 -
 usr.sbin/bind/named/version.c                                  |      91 -
 usr.sbin/bind/ndc/Makefile                                     |      24 -
 usr.sbin/bind/ndc/ndc.sh                                       |      89 -
 usr.sbin/bind/nslookup/Makefile                                |      17 -
 usr.sbin/bind/nslookup/commands.l                              |     222 -
 usr.sbin/bind/nslookup/debug.c                                 |     649 -
 usr.sbin/bind/nslookup/getinfo.c                               |     875 -
 usr.sbin/bind/nslookup/list.c                                  |     624 -
 usr.sbin/bind/nslookup/main.c                                  |    1127 -
 usr.sbin/bind/nslookup/nslookup.help                           |      35 -
 usr.sbin/bind/nslookup/pathnames.h                             |      73 -
 usr.sbin/bind/nslookup/res.h                                   |     185 -
 usr.sbin/bind/nslookup/send.c                                  |     417 -
 usr.sbin/bind/nslookup/skip.c                                  |     220 -
 usr.sbin/bind/nslookup/subr.c                                  |     477 -
 usr.sbin/bind/nsupdate/Makefile                                |      12 -
 usr.sbin/bind/nsupdate/nsupdate.c                              |     473 -
 usr.sbin/bind/reload/Makefile                                  |      20 -
 usr.sbin/bind/reload/named.reload.sh                           |       8 -
 usr.sbin/bind/restart/Makefile                                 |      21 -
 usr.sbin/bind/restart/named.restart.sh                         |       8 -
 usr.sbin/bootp/Makefile                                        |       7 -
 usr.sbin/bootp/Makefile.inc                                    |      11 -
 usr.sbin/bootp/bootpd/Announce                                 |      63 -
 usr.sbin/bootp/bootpd/Announce.old                             |     141 -
 usr.sbin/bootp/bootpd/Changes                                  |     245 -
 usr.sbin/bootp/bootpd/ConvOldTab.sh                            |     144 -
 usr.sbin/bootp/bootpd/Installation                             |      29 -
 usr.sbin/bootp/bootpd/Makefile                                 |       9 -
 usr.sbin/bootp/bootpd/Makefile.UNIX                            |     186 -
 usr.sbin/bootp/bootpd/Problems                                 |      93 -
 usr.sbin/bootp/bootpd/README                                   |     133 -
 usr.sbin/bootp/bootpd/bootpd.8                                 |     305 -
 usr.sbin/bootp/bootpd/bootpd.c                                 |    1414 -
 usr.sbin/bootp/bootpd/bootptab.5                               |     408 -
 usr.sbin/bootp/bootpd/bootptab.cmu                             |     124 -
 usr.sbin/bootp/bootpd/bootptab.mcs                             |      92 -
 usr.sbin/bootp/bootpd/syslog.conf                              |      63 -
 usr.sbin/bootp/bootpef/Makefile                                |       6 -
 usr.sbin/bootp/bootpef/bootpef.8                               |      54 -
 usr.sbin/bootp/bootpef/bootpef.c                               |     348 -
 usr.sbin/bootp/bootpgw/Makefile                                |       6 -
 usr.sbin/bootp/bootpgw/bootpgw.c                               |     677 -
 usr.sbin/bootp/bootptest/Makefile                              |       7 -
 usr.sbin/bootp/bootptest/bootptest.8                           |      73 -
 usr.sbin/bootp/bootptest/bootptest.c                           |     519 -
 usr.sbin/bootp/bootptest/bootptest.h                           |      34 -
 usr.sbin/bootp/bootptest/getether.c                            |     395 -
 usr.sbin/bootp/bootptest/print-bootp.c                         |     500 -
 usr.sbin/bootp/bootptest/trygetea.c                            |      53 -
 usr.sbin/bootp/common/Makefile                                 |      15 -
 usr.sbin/bootp/common/bootp.h                                  |     147 -
 usr.sbin/bootp/common/bootpd.h                                 |     213 -
 usr.sbin/bootp/common/bptypes.h                                |      27 -
 usr.sbin/bootp/common/dovend.c                                 |     422 -
 usr.sbin/bootp/common/dovend.h                                 |      15 -
 usr.sbin/bootp/common/dumptab.c                                |     390 -
 usr.sbin/bootp/common/getif.c                                  |     161 -
 usr.sbin/bootp/common/getif.h                                  |       9 -
 usr.sbin/bootp/common/hash.c                                   |     426 -
 usr.sbin/bootp/common/hash.h                                   |     160 -
 usr.sbin/bootp/common/hwaddr.c                                 |     294 -
 usr.sbin/bootp/common/hwaddr.h                                 |      41 -
 usr.sbin/bootp/common/lookup.c                                 |     132 -
 usr.sbin/bootp/common/lookup.h                                 |      17 -
 usr.sbin/bootp/common/patchlevel.h                             |       5 -
 usr.sbin/bootp/common/readfile.c                               |    2097 -
 usr.sbin/bootp/common/readfile.h                               |      21 -
 usr.sbin/bootp/common/report.c                                 |     161 -
 usr.sbin/bootp/common/report.h                                 |      15 -
 usr.sbin/bootp/common/trygetif.c                               |      73 -
 usr.sbin/bootp/common/trylook.c                                |      57 -
 usr.sbin/bootp/common/tzone.c                                  |      53 -
 usr.sbin/bootp/common/tzone.h                                  |      15 -
 usr.sbin/catman/Makefile                                       |      10 -
 usr.sbin/catman/TODO                                           |       1 -
 usr.sbin/catman/catman.8                                       |     106 -
 usr.sbin/catman/catman.c                                       |     660 -
 usr.sbin/catman/pathnames.h                                    |      41 -
 usr.sbin/chown/Makefile                                        |       9 -
 usr.sbin/chown/chgrp.1                                         |     146 -
 usr.sbin/chown/chown.8                                         |     154 -
 usr.sbin/chown/chown.c                                         |     255 -
 usr.sbin/chroot/Makefile                                       |       7 -
 usr.sbin/chroot/chroot.8                                       |     102 -
 usr.sbin/chroot/chroot.c                                       |     178 -
 usr.sbin/chrtbl/Makefile                                       |      13 -
 usr.sbin/chrtbl/chrtbl.8                                       |      90 -
 usr.sbin/chrtbl/chrtbl.c                                       |     560 -
 usr.sbin/config/config.h                                       |     451 -
 usr.sbin/config/files.c                                        |     500 -
 usr.sbin/config/gram.y                                         |     592 -
 usr.sbin/config/hash.c                                         |     324 -
 usr.sbin/config/main.c                                         |     961 -
 usr.sbin/config/mkheaders.c                                    |     421 -
 usr.sbin/config/mkioconf.c                                     |     464 -
 usr.sbin/config/mkmakefile.c                                   |     485 -
 usr.sbin/config/mkswap.c                                       |     160 -
 usr.sbin/config/pack.c                                         |     557 -
 usr.sbin/config/scan.l                                         |     278 -
 usr.sbin/config/sem.c                                          |    1245 -
 usr.sbin/config/sem.h                                          |      72 -
 usr.sbin/config/strerror.c                                     |      21 -
 usr.sbin/config/util.c                                         |     379 -
 usr.sbin/cron/Makefile                                         |       9 -
 usr.sbin/cron/compat.c                                         |     240 -
 usr.sbin/cron/compat.h                                         |     139 -
 usr.sbin/cron/config.h                                         |      96 -
 usr.sbin/cron/cron.8                                           |      63 -
 usr.sbin/cron/cron.c                                           |     304 -
 usr.sbin/cron/cron.h                                           |     279 -
 usr.sbin/cron/crontab.1                                        |     109 -
 usr.sbin/cron/crontab.5                                        |     224 -
 usr.sbin/cron/crontab.c                                        |     686 -
 usr.sbin/cron/database.c                                       |     268 -
 usr.sbin/cron/do_command.c                                     |     517 -
 usr.sbin/cron/entry.c                                          |     514 -
 usr.sbin/cron/env.c                                            |     219 -
 usr.sbin/cron/externs.h                                        |     146 -
 usr.sbin/cron/job.c                                            |      81 -
 usr.sbin/cron/misc.c                                           |     677 -
 usr.sbin/cron/pathnames.h                                      |      86 -
 usr.sbin/cron/popen.c                                          |     145 -
 usr.sbin/cron/user.c                                           |     109 -
 usr.sbin/dev_mkdb/Makefile                                     |       7 -
 usr.sbin/dev_mkdb/dev_mkdb.8                                   |      82 -
 usr.sbin/dev_mkdb/dev_mkdb.c                                   |     156 -
 usr.sbin/dhcp/Makefile                                         |      37 -
 usr.sbin/dhcp/Makefile.inc                                     |      44 -
 usr.sbin/dhcp/README                                           |     422 -
 usr.sbin/dhcp/RELNOTES                                         |     701 -
 usr.sbin/dhcp/client/Makefile                                  |      45 -
 usr.sbin/dhcp/client/clparse.c                                 |    1009 -
 usr.sbin/dhcp/client/dhclient-script.8                         |     225 -
 usr.sbin/dhcp/client/dhclient.8                                |     184 -
 usr.sbin/dhcp/client/dhclient.c                                |    2331 -
 usr.sbin/dhcp/client/dhclient.conf                             |      36 -
 usr.sbin/dhcp/client/dhclient.conf.5                           |     545 -
 usr.sbin/dhcp/client/dhclient.leases.5                         |      62 -
 usr.sbin/dhcp/client/scripts/Makefile                          |      37 -
 usr.sbin/dhcp/client/scripts/bsdos                             |     203 -
 usr.sbin/dhcp/client/scripts/freebsd                           |     203 -
 usr.sbin/dhcp/client/scripts/linux                             |     188 -
 usr.sbin/dhcp/client/scripts/netbsd                            |     219 -
 usr.sbin/dhcp/client/scripts/nextstep                          |      37 -
 usr.sbin/dhcp/client/scripts/solaris                           |     172 -
 usr.sbin/dhcp/common/Makefile                                  |      45 -
 usr.sbin/dhcp/common/alloc.c                                   |     332 -
 usr.sbin/dhcp/common/bpf.c                                     |     437 -
 usr.sbin/dhcp/common/conflex.c                                 |     562 -
 usr.sbin/dhcp/common/convert.c                                 |     118 -
 usr.sbin/dhcp/common/dhcp-options.5                            |     690 -
 usr.sbin/dhcp/common/dispatch.c                                |     882 -
 usr.sbin/dhcp/common/dlpi.c                                    |    1271 -
 usr.sbin/dhcp/common/dns.c                                     |     403 -
 usr.sbin/dhcp/common/errwarn.c                                 |     391 -
 usr.sbin/dhcp/common/hash.c                                    |     164 -
 usr.sbin/dhcp/common/icmp.c                                    |     175 -
 usr.sbin/dhcp/common/inet.c                                    |     183 -
 usr.sbin/dhcp/common/inet_addr.c                               |     150 -
 usr.sbin/dhcp/common/lpf.c                                     |     303 -
 usr.sbin/dhcp/common/memory.c                                  |     941 -
 usr.sbin/dhcp/common/nit.c                                     |     379 -
 usr.sbin/dhcp/common/options.c                                 |     637 -
 usr.sbin/dhcp/common/packet.c                                  |     343 -
 usr.sbin/dhcp/common/parse.c                                   |     646 -
 usr.sbin/dhcp/common/print.c                                   |     184 -
 usr.sbin/dhcp/common/raw.c                                     |     153 -
 usr.sbin/dhcp/common/resolv.c                                  |     206 -
 usr.sbin/dhcp/common/socket.c                                  |     297 -
 usr.sbin/dhcp/common/sysconf.c                                 |     134 -
 usr.sbin/dhcp/common/tables.c                                  |     692 -
 usr.sbin/dhcp/common/tree.c                                    |     412 -
 usr.sbin/dhcp/common/upf.c                                     |     330 -
 usr.sbin/dhcp/doc/rfc2131.txt                                  |    2523 -
 usr.sbin/dhcp/doc/rfc2132.txt                                  |    1907 -
 usr.sbin/dhcp/doc/rfc951.txt                                   |     684 -
 usr.sbin/dhcp/includes/arpa/nameser.h                          |     237 -
 usr.sbin/dhcp/includes/cdefs.h                                 |      57 -
 usr.sbin/dhcp/includes/cf/aix.h                                |      89 -
 usr.sbin/dhcp/includes/cf/alphaosf.h                           |     104 -
 usr.sbin/dhcp/includes/cf/bsdos.h                              |      87 -
 usr.sbin/dhcp/includes/cf/cygwin32.h                           |     123 -
 usr.sbin/dhcp/includes/cf/freebsd.h                            |      93 -
 usr.sbin/dhcp/includes/cf/hpux.h                               |      84 -
 usr.sbin/dhcp/includes/cf/irix.h                               |      93 -
 usr.sbin/dhcp/includes/cf/linux.h                              |     138 -
 usr.sbin/dhcp/includes/cf/netbsd.h                             |      96 -
 usr.sbin/dhcp/includes/cf/nextstep.h                           |     119 -
 usr.sbin/dhcp/includes/cf/qnx.h                                |     120 -
 usr.sbin/dhcp/includes/cf/rhapsody.h                           |      95 -
 usr.sbin/dhcp/includes/cf/sample.h                             |     298 -
 usr.sbin/dhcp/includes/cf/sco.h                                |     118 -
 usr.sbin/dhcp/includes/cf/sunos4.h                             |     141 -
 usr.sbin/dhcp/includes/cf/sunos5-5.h                           |     153 -
 usr.sbin/dhcp/includes/cf/ultrix.h                             |     115 -
 usr.sbin/dhcp/includes/dhcp.h                                  |     168 -
 usr.sbin/dhcp/includes/dhcpd.h                                 |    1013 -
 usr.sbin/dhcp/includes/dhctoken.h                              |     136 -
 usr.sbin/dhcp/includes/hash.h                                  |      56 -
 usr.sbin/dhcp/includes/inet.h                                  |      52 -
 usr.sbin/dhcp/includes/netinet/if_ether.h                      |      74 -
 usr.sbin/dhcp/includes/netinet/ip.h                            |     171 -
 usr.sbin/dhcp/includes/netinet/ip_icmp.h                       |     182 -
 usr.sbin/dhcp/includes/netinet/udp.h                           |      47 -
 usr.sbin/dhcp/includes/osdep.h                                 |     292 -
 usr.sbin/dhcp/includes/site.h                                  |     100 -
 usr.sbin/dhcp/includes/sysconf.h                               |      52 -
 usr.sbin/dhcp/includes/tree.h                                  |     107 -
 usr.sbin/dhcp/relay/Makefile                                   |      37 -
 usr.sbin/dhcp/relay/dhcrelay.8                                 |     150 -
 usr.sbin/dhcp/relay/dhcrelay.c                                 |     391 -
 usr.sbin/dhcp/server/Makefile                                  |      50 -
 usr.sbin/dhcp/server/bootp.c                                   |     361 -
 usr.sbin/dhcp/server/confpars.c                                |    1376 -
 usr.sbin/dhcp/server/db.c                                      |     262 -
 usr.sbin/dhcp/server/dhcp.c                                    |    1642 -
 usr.sbin/dhcp/server/dhcpd.8                                   |     345 -
 usr.sbin/dhcp/server/dhcpd.c                                   |     363 -
 usr.sbin/dhcp/server/dhcpd.conf                                |      90 -
 usr.sbin/dhcp/server/dhcpd.conf.5                              |     780 -
 usr.sbin/dhcp/server/dhcpd.leases.5                            |     174 -
 usr.sbin/dhcp/statmsg/Makefile                                 |      37 -
 usr.sbin/dhcp/statmsg/Makefile.dist                            |      77 -
 usr.sbin/dhcp/statmsg/main.c                                   |     120 -
 usr.sbin/dhcp/statmsg/statmsg.8                                |      75 -
 usr.sbin/dhcp/sysconfd/Makefile                                |      37 -
 usr.sbin/dhcp/sysconfd/Makefile.dist                           |      77 -
 usr.sbin/dhcp/sysconfd/sysconfd.8                              |      60 -
 usr.sbin/dhcp/sysconfd/sysconfd.c                              |     255 -
 usr.sbin/diskpart/Makefile                                     |       7 -
 usr.sbin/diskpart/diskpart.8                                   |     144 -
 usr.sbin/diskpart/diskpart.c                                   |     521 -
 usr.sbin/dumpfs/Makefile                                       |      11 -
 usr.sbin/dumpfs/dumpfs.8                                       |      73 -
 usr.sbin/dumpfs/dumpfs.c                                       |     435 -
 usr.sbin/dumplfs/Makefile                                      |       9 -
 usr.sbin/dumplfs/dumplfs.8                                     |      61 -
 usr.sbin/dumplfs/dumplfs.c                                     |     641 -
 usr.sbin/dumplfs/extern.h                                      |      40 -
 usr.sbin/dumplfs/misc.c                                        |      72 -
 usr.sbin/edquota/Makefile                                      |       7 -
 usr.sbin/edquota/edquota.8                                     |     161 -
 usr.sbin/edquota/edquota.c                                     |     752 -
 usr.sbin/edquota/pathnames.h                                   |      40 -
 usr.sbin/eeprom/Makefile                                       |      24 -
 usr.sbin/eeprom/defs.h                                         |     118 -
 usr.sbin/eeprom/eehandlers.c                                   |     691 -
 usr.sbin/eeprom/eeprom.8                                       |     349 -
 usr.sbin/eeprom/getdate.y                                      |     913 -
 usr.sbin/eeprom/main.c                                         |     322 -
 usr.sbin/eeprom/ophandlers.c                                   |     263 -
 usr.sbin/eshconfig/Makefile                                    |       6 -
 usr.sbin/eshconfig/eshconfig.8                                 |     126 -
 usr.sbin/eshconfig/eshconfig.c                                 |     767 -
 usr.sbin/faithd/Makefile                                       |       9 -
 usr.sbin/faithd/README                                         |     139 -
 usr.sbin/faithd/faithd.8                                       |     248 -
 usr.sbin/faithd/faithd.c                                       |     810 -
 usr.sbin/faithd/faithd.h                                       |      70 -
 usr.sbin/faithd/ftp.c                                          |    1130 -
 usr.sbin/faithd/rsh.c                                          |     208 -
 usr.sbin/faithd/tcp.c                                          |     300 -
 usr.sbin/gifconfig/Makefile                                    |       7 -
 usr.sbin/gifconfig/gifconfig.8                                 |     139 -
 usr.sbin/gifconfig/gifconfig.c                                 |     834 -
 usr.sbin/greconfig/Makefile                                    |       6 -
 usr.sbin/greconfig/README.gre                                  |      69 -
 usr.sbin/greconfig/greconfig.8                                 |     113 -
 usr.sbin/greconfig/greconfig.c                                 |     222 -
 usr.sbin/grfconfig/Makefile                                    |      10 -
 usr.sbin/grfconfig/grfconfig.8                                 |     215 -
 usr.sbin/grfconfig/grfconfig.c                                 |     437 -
 usr.sbin/grfinfo/Makefile                                      |      10 -
 usr.sbin/grfinfo/grfinfo.1                                     |      72 -
 usr.sbin/grfinfo/grfinfo.c                                     |     154 -
 usr.sbin/gspa/Makefile                                         |       5 -
 usr.sbin/gspa/Makefile.inc                                     |       6 -
 usr.sbin/gspa/gspa/Makefile                                    |      13 -
 usr.sbin/gspa/gspa/gsp_act.c                                   |     210 -
 usr.sbin/gspa/gspa/gsp_ass.h                                   |     189 -
 usr.sbin/gspa/gspa/gsp_code.h                                  |      42 -
 usr.sbin/gspa/gspa/gsp_eval.c                                  |     146 -
 usr.sbin/gspa/gspa/gsp_gram.y                                  |     129 -
 usr.sbin/gspa/gspa/gsp_inst.c                                  |     755 -
 usr.sbin/gspa/gspa/gsp_lex.c                                   |     189 -
 usr.sbin/gspa/gspa/gsp_out.c                                   |     252 -
 usr.sbin/gspa/gspa/gsp_pseu.c                                  |     155 -
 usr.sbin/gspa/gspa/gsp_sym.c                                   |     206 -
 usr.sbin/gspa/gspa/gspa.c                                      |     312 -
 usr.sbin/gspa/gspahextoc/Makefile                              |      10 -
 usr.sbin/gspa/gspahextoc/README                                |      19 -
 usr.sbin/gspa/gspahextoc/gspahextoc.l                          |     140 -
 usr.sbin/hilinfo/Makefile                                      |      11 -
 usr.sbin/hilinfo/hilinfo.c                                     |     162 -
 usr.sbin/ifmcstat/Makefile                                     |      14 -
 usr.sbin/ifmcstat/ifmcstat.8                                   |      37 -
 usr.sbin/ifmcstat/ifmcstat.c                                   |     354 -
 usr.sbin/inetd/Makefile                                        |      21 -
 usr.sbin/inetd/inetd.8                                         |     544 -
 usr.sbin/inetd/inetd.c                                         |    2481 -
 usr.sbin/inetd/pathnames.h                                     |      40 -
 usr.sbin/iostat/Makefile                                       |      19 -
 usr.sbin/iostat/iostat.8                                       |     216 -
 usr.sbin/iostat/iostat.c                                       |     500 -
 usr.sbin/ipf/Makefile                                          |       5 -
 usr.sbin/ipf/Makefile.inc                                      |       7 -
 usr.sbin/ipf/ipf/LICENCE                                       |      16 -
 usr.sbin/ipf/ipf/Makefile                                      |      13 -
 usr.sbin/ipf/ipf/ipf.4                                         |     215 -
 usr.sbin/ipf/ipf/ipf.5                                         |     494 -
 usr.sbin/ipf/ipf/ipf.8                                         |     125 -
 usr.sbin/ipf/ipf/ipf.c                                         |     496 -
 usr.sbin/ipf/ipf/ipf.h                                         |      89 -
 usr.sbin/ipf/ipf/ipl.4                                         |     139 -
 usr.sbin/ipf/ipf/opt.c                                         |     180 -
 usr.sbin/ipf/ipf/parse.c                                       |    1358 -
 usr.sbin/ipf/ipfilter2netbsd                                   |     424 -
 usr.sbin/ipf/ipfstat/Makefile                                  |       9 -
 usr.sbin/ipf/ipfstat/fils.c                                    |     511 -
 usr.sbin/ipf/ipfstat/ipfstat.8                                 |      82 -
 usr.sbin/ipf/ipfstat/kmem.c                                    |      69 -
 usr.sbin/ipf/ipfstat/kmem.h                                    |      27 -
 usr.sbin/ipf/ipftest/Makefile                                  |       9 -
 usr.sbin/ipf/ipftest/ipft_ef.c                                 |     156 -
 usr.sbin/ipf/ipftest/ipft_hx.c                                 |     174 -
 usr.sbin/ipf/ipftest/ipft_pc.c                                 |     233 -
 usr.sbin/ipf/ipftest/ipft_sn.c                                 |     215 -
 usr.sbin/ipf/ipftest/ipft_td.c                                 |     193 -
 usr.sbin/ipf/ipftest/ipft_tx.c                                 |     347 -
 usr.sbin/ipf/ipftest/ipftest.1                                 |     128 -
 usr.sbin/ipf/ipftest/ipt.c                                     |     224 -
 usr.sbin/ipf/ipftest/ipt.h                                     |      32 -
 usr.sbin/ipf/ipftest/misc.c                                    |     107 -
 usr.sbin/ipf/ipftest/pcap.h                                    |      37 -
 usr.sbin/ipf/ipftest/snoop.h                                   |      49 -
 usr.sbin/ipf/ipftest/test/.cvsignore                           |      25 -
 usr.sbin/ipf/ipftest/test/Makefile                             |      39 -
 usr.sbin/ipf/ipftest/test/dotest                               |      40 -
 usr.sbin/ipf/ipftest/test/expected/1                           |      16 -
 usr.sbin/ipf/ipftest/test/expected/10                          |     108 -
 usr.sbin/ipf/ipftest/test/expected/11                          |      66 -
 usr.sbin/ipf/ipftest/test/expected/12                          |      54 -
 usr.sbin/ipf/ipftest/test/expected/14                          |      40 -
 usr.sbin/ipf/ipftest/test/expected/2                           |      36 -
 usr.sbin/ipf/ipftest/test/expected/3                           |      40 -
 usr.sbin/ipf/ipftest/test/expected/4                           |      40 -
 usr.sbin/ipf/ipftest/test/expected/5                           |    1344 -
 usr.sbin/ipf/ipftest/test/expected/6                           |    1344 -
 usr.sbin/ipf/ipftest/test/expected/7                           |      54 -
 usr.sbin/ipf/ipftest/test/expected/8                           |      36 -
 usr.sbin/ipf/ipftest/test/expected/9                           |     108 -
 usr.sbin/ipf/ipftest/test/expected/i1                          |      13 -
 usr.sbin/ipf/ipftest/test/expected/i10                         |       4 -
 usr.sbin/ipf/ipftest/test/expected/i11                         |       4 -
 usr.sbin/ipf/ipftest/test/expected/i2                          |       6 -
 usr.sbin/ipf/ipftest/test/expected/i3                          |       8 -
 usr.sbin/ipf/ipftest/test/expected/i4                          |       7 -
 usr.sbin/ipf/ipftest/test/expected/i5                          |       5 -
 usr.sbin/ipf/ipftest/test/expected/i6                          |       4 -
 usr.sbin/ipf/ipftest/test/expected/i7                          |       3 -
 usr.sbin/ipf/ipftest/test/expected/i8                          |       2 -
 usr.sbin/ipf/ipftest/test/expected/i9                          |       5 -
 usr.sbin/ipf/ipftest/test/hextest                              |      37 -
 usr.sbin/ipf/ipftest/test/input/1                              |       4 -
 usr.sbin/ipf/ipftest/test/input/10                             |       6 -
 usr.sbin/ipf/ipftest/test/input/11                             |      11 -
 usr.sbin/ipf/ipftest/test/input/12                             |      35 -
 usr.sbin/ipf/ipftest/test/input/13                             |      39 -
 usr.sbin/ipf/ipftest/test/input/14                             |       5 -
 usr.sbin/ipf/ipftest/test/input/2                              |       6 -
 usr.sbin/ipf/ipftest/test/input/3                              |       5 -
 usr.sbin/ipf/ipftest/test/input/4                              |       5 -
 usr.sbin/ipf/ipftest/test/input/5                              |      28 -
 usr.sbin/ipf/ipftest/test/input/6                              |      28 -
 usr.sbin/ipf/ipftest/test/input/7                              |       9 -
 usr.sbin/ipf/ipftest/test/input/8                              |       6 -
 usr.sbin/ipf/ipftest/test/input/9                              |       6 -
 usr.sbin/ipf/ipftest/test/itest                                |      35 -
 usr.sbin/ipf/ipftest/test/regress/1                            |       4 -
 usr.sbin/ipf/ipftest/test/regress/10                           |      18 -
 usr.sbin/ipf/ipftest/test/regress/11                           |       6 -
 usr.sbin/ipf/ipftest/test/regress/12                           |       6 -
 usr.sbin/ipf/ipftest/test/regress/13                           |       6 -
 usr.sbin/ipf/ipftest/test/regress/14                           |       8 -
 usr.sbin/ipf/ipftest/test/regress/2                            |       6 -
 usr.sbin/ipf/ipftest/test/regress/3                            |       8 -
 usr.sbin/ipf/ipftest/test/regress/4                            |       8 -
 usr.sbin/ipf/ipftest/test/regress/5                            |      48 -
 usr.sbin/ipf/ipftest/test/regress/6                            |      48 -
 usr.sbin/ipf/ipftest/test/regress/7                            |       6 -
 usr.sbin/ipf/ipftest/test/regress/8                            |       6 -
 usr.sbin/ipf/ipftest/test/regress/9                            |      18 -
 usr.sbin/ipf/ipftest/test/regress/i1                           |      13 -
 usr.sbin/ipf/ipftest/test/regress/i10                          |       4 -
 usr.sbin/ipf/ipftest/test/regress/i11                          |       4 -
 usr.sbin/ipf/ipftest/test/regress/i2                           |       6 -
 usr.sbin/ipf/ipftest/test/regress/i3                           |       8 -
 usr.sbin/ipf/ipftest/test/regress/i4                           |       7 -
 usr.sbin/ipf/ipftest/test/regress/i5                           |       5 -
 usr.sbin/ipf/ipftest/test/regress/i6                           |       4 -
 usr.sbin/ipf/ipftest/test/regress/i7                           |       3 -
 usr.sbin/ipf/ipftest/test/regress/i8                           |       2 -
 usr.sbin/ipf/ipftest/test/regress/i9                           |       5 -
 usr.sbin/ipf/ipmon/Makefile                                    |       8 -
 usr.sbin/ipf/ipmon/ipmon.8                                     |     156 -
 usr.sbin/ipf/ipmon/ipmon.c                                     |     970 -
 usr.sbin/ipf/ipnat/Makefile                                    |      10 -
 usr.sbin/ipf/ipnat/ipnat.4                                     |      98 -
 usr.sbin/ipf/ipnat/ipnat.5                                     |      76 -
 usr.sbin/ipf/ipnat/ipnat.8                                     |      79 -
 usr.sbin/ipf/ipnat/ipnat.c                                     |     901 -
 usr.sbin/ipf/ipresend/Makefile                                 |      13 -
 usr.sbin/ipf/ipresend/ipresend.1                               |     107 -
 usr.sbin/ipf/ipresend/ipresend.c                               |     168 -
 usr.sbin/ipf/ipresend/resend.c                                 |     144 -
 usr.sbin/ipf/ipsend/44arp.c                                    |     111 -
 usr.sbin/ipf/ipsend/Makefile                                   |      13 -
 usr.sbin/ipf/ipsend/ip.c                                       |     349 -
 usr.sbin/ipf/ipsend/iplang.h                                   |      56 -
 usr.sbin/ipf/ipsend/iplang.tst                                 |      11 -
 usr.sbin/ipf/ipsend/iplang_l.l                                 |     322 -
 usr.sbin/ipf/ipsend/iplang_y.y                                 |    1868 -
 usr.sbin/ipf/ipsend/ipsend.1                                   |     111 -
 usr.sbin/ipf/ipsend/ipsend.5                                   |     403 -
 usr.sbin/ipf/ipsend/ipsend.c                                   |     402 -
 usr.sbin/ipf/ipsend/ipsend.h                                   |      69 -
 usr.sbin/ipf/ipsend/ipsopt.c                                   |     197 -
 usr.sbin/ipf/ipsend/sbpf.c                                     |     138 -
 usr.sbin/ipf/ipsend/tcpip.h                                    |      93 -
 usr.sbin/ipf/iptest/Makefile                                   |       9 -
 usr.sbin/ipf/iptest/iptest.1                                   |     103 -
 usr.sbin/ipf/iptest/iptest.c                                   |     226 -
 usr.sbin/ipf/iptest/iptests.c                                  |    1335 -
 usr.sbin/ipf/iptest/sock.c                                     |     397 -
 usr.sbin/ipf/rules/BASIC.NAT                                   |      45 -
 usr.sbin/ipf/rules/BASIC_1.FW                                  |      99 -
 usr.sbin/ipf/rules/BASIC_2.FW                                  |      72 -
 usr.sbin/ipf/rules/Makefile                                    |      16 -
 usr.sbin/ipf/rules/example.1                                   |       4 -
 usr.sbin/ipf/rules/example.10                                  |      12 -
 usr.sbin/ipf/rules/example.11                                  |      26 -
 usr.sbin/ipf/rules/example.12                                  |      17 -
 usr.sbin/ipf/rules/example.13                                  |      17 -
 usr.sbin/ipf/rules/example.2                                   |       5 -
 usr.sbin/ipf/rules/example.3                                   |      40 -
 usr.sbin/ipf/rules/example.4                                   |       4 -
 usr.sbin/ipf/rules/example.5                                   |      25 -
 usr.sbin/ipf/rules/example.6                                   |       5 -
 usr.sbin/ipf/rules/example.7                                   |      12 -
 usr.sbin/ipf/rules/example.8                                   |      10 -
 usr.sbin/ipf/rules/example.9                                   |      12 -
 usr.sbin/ipf/rules/example.sr                                  |      61 -
 usr.sbin/ipf/rules/firewall                                    |      39 -
 usr.sbin/ipf/rules/ftp-proxy                                   |      40 -
 usr.sbin/ipf/rules/ftppxy                                      |       6 -
 usr.sbin/ipf/rules/mediaone                                    |      45 -
 usr.sbin/ipf/rules/mkfilters                                   |      73 -
 usr.sbin/ipf/rules/mkfilters.1                                 |      16 -
 usr.sbin/ipf/rules/nat-setup                                   |      77 -
 usr.sbin/ipf/rules/nat.eg                                      |      14 -
 usr.sbin/ipf/rules/server                                      |      11 -
 usr.sbin/ipf/rules/tcpstate                                    |      13 -
 usr.sbin/iteconfig/Makefile                                    |      10 -
 usr.sbin/iteconfig/iteconfig.8                                 |     167 -
 usr.sbin/iteconfig/iteconfig.c                                 |     292 -
 usr.sbin/iteconfig/pathnames.h                                 |      35 -
 usr.sbin/kgmon/Makefile                                        |      15 -
 usr.sbin/kgmon/kgmon.8                                         |     124 -
 usr.sbin/kgmon/kgmon.c                                         |     541 -
 usr.sbin/kvm_mkdb/Makefile                                     |       9 -
 usr.sbin/kvm_mkdb/extern.h                                     |      81 -
 usr.sbin/kvm_mkdb/kvm_mkdb.8                                   |      80 -
 usr.sbin/kvm_mkdb/kvm_mkdb.c                                   |     149 -
 usr.sbin/kvm_mkdb/nlist.c                                      |      94 -
 usr.sbin/kvm_mkdb/nlist_aout.c                                 |     250 -
 usr.sbin/kvm_mkdb/nlist_coff.c                                 |     346 -
 usr.sbin/kvm_mkdb/nlist_ecoff.c                                |     270 -
 usr.sbin/kvm_mkdb/nlist_elf32.c                                |     322 -
 usr.sbin/kvm_mkdb/nlist_elf64.c                                |      41 -
 usr.sbin/kvm_mkdb/testdb.c                                     |     115 -
 usr.sbin/lastlogin/Makefile                                    |       6 -
 usr.sbin/lastlogin/lastlogin.8                                 |      74 -
 usr.sbin/lastlogin/lastlogin.c                                 |     133 -
 usr.sbin/link/Makefile                                         |       6 -
 usr.sbin/link/link.8                                           |      74 -
 usr.sbin/link/link.c                                           |      81 -
 usr.sbin/lpr/Makefile                                          |      13 -
 usr.sbin/lpr/Makefile.inc                                      |      11 -
 usr.sbin/lpr/SMM.doc/0.t                                       |      69 -
 usr.sbin/lpr/SMM.doc/1.t                                       |      78 -
 usr.sbin/lpr/SMM.doc/2.t                                       |     142 -
 usr.sbin/lpr/SMM.doc/3.t                                       |      74 -
 usr.sbin/lpr/SMM.doc/4.t                                       |     207 -
 usr.sbin/lpr/SMM.doc/5.t                                       |     117 -
 usr.sbin/lpr/SMM.doc/6.t                                       |      95 -
 usr.sbin/lpr/SMM.doc/7.t                                       |     227 -
 usr.sbin/lpr/SMM.doc/Makefile                                  |      11 -
 usr.sbin/lpr/SMM.doc/spell.ok                                  |      70 -
 usr.sbin/lpr/common_source/Makefile                            |      13 -
 usr.sbin/lpr/common_source/common.c                            |     396 -
 usr.sbin/lpr/common_source/displayq.c                          |     490 -
 usr.sbin/lpr/common_source/lp.h                                |     130 -
 usr.sbin/lpr/common_source/lp.local.h                          |      82 -
 usr.sbin/lpr/common_source/pathnames.h                         |      52 -
 usr.sbin/lpr/common_source/rmjob.c                             |     390 -
 usr.sbin/lpr/common_source/startdaemon.c                       |     111 -
 usr.sbin/lpr/filters/Makefile                                  |       8 -
 usr.sbin/lpr/filters/lpf.c                                     |     221 -
 usr.sbin/lpr/lp/Makefile                                       |       9 -
 usr.sbin/lpr/lp/lp                                             |      74 -
 usr.sbin/lpr/lp/lp.1                                           |     119 -
 usr.sbin/lpr/lpc/Makefile                                      |      10 -
 usr.sbin/lpr/lpc/cmds.c                                        |    1163 -
 usr.sbin/lpr/lpc/cmdtab.c                                      |      86 -
 usr.sbin/lpr/lpc/extern.h                                      |      60 -
 usr.sbin/lpr/lpc/lpc.8                                         |     179 -
 usr.sbin/lpr/lpc/lpc.c                                         |     323 -
 usr.sbin/lpr/lpc/lpc.h                                         |      47 -
 usr.sbin/lpr/lpd/Makefile                                      |       8 -
 usr.sbin/lpr/lpd/extern.h                                      |      67 -
 usr.sbin/lpr/lpd/key.c                                         |     273 -
 usr.sbin/lpr/lpd/lpd.8                                         |     287 -
 usr.sbin/lpr/lpd/lpd.c                                         |     579 -
 usr.sbin/lpr/lpd/lpdchar.c                                     |    1073 -
 usr.sbin/lpr/lpd/modes.c                                       |     241 -
 usr.sbin/lpr/lpd/printjob.c                                    |    1583 -
 usr.sbin/lpr/lpd/recvjob.c                                     |     375 -
 usr.sbin/lpr/lpd/ttcompat.c                                    |     301 -
 usr.sbin/lpr/lpq/Makefile                                      |      10 -
 usr.sbin/lpr/lpq/lpq.1                                         |     137 -
 usr.sbin/lpr/lpq/lpq.c                                         |     182 -
 usr.sbin/lpr/lpr/Makefile                                      |      10 -
 usr.sbin/lpr/lpr/lpr.1                                         |     273 -
 usr.sbin/lpr/lpr/lpr.c                                         |     791 -
 usr.sbin/lpr/lprm/Makefile                                     |      10 -
 usr.sbin/lpr/lprm/lprm.1                                       |     149 -
 usr.sbin/lpr/lprm/lprm.c                                       |     155 -
 usr.sbin/lpr/lptest/Makefile                                   |       6 -
 usr.sbin/lpr/lptest/lptest.1                                   |      76 -
 usr.sbin/lpr/lptest/lptest.c                                   |      88 -
 usr.sbin/lpr/pac/Makefile                                      |       7 -
 usr.sbin/lpr/pac/pac.8                                         |     109 -
 usr.sbin/lpr/pac/pac.c                                         |     464 -
 usr.sbin/mailwrapper/Makefile                                  |      13 -
 usr.sbin/mailwrapper/mailer.conf.5                             |      97 -
 usr.sbin/mailwrapper/mailwrapper.8                             |     144 -
 usr.sbin/mailwrapper/mailwrapper.c                             |     165 -
 usr.sbin/map-mbone/Makefile                                    |      11 -
 usr.sbin/map-mbone/map-mbone.8                                 |      91 -
 usr.sbin/map-mbone/mapper.c                                    |    1032 -
 usr.sbin/mbrlabel/Makefile                                     |      11 -
 usr.sbin/mbrlabel/mbrlabel.8                                   |      93 -
 usr.sbin/mbrlabel/mbrlabel.c                                   |     246 -
 usr.sbin/mdconfig/Makefile                                     |       6 -
 usr.sbin/mdconfig/mdconfig.8                                   |      75 -
 usr.sbin/mdconfig/mdconfig.c                                   |     102 -
 usr.sbin/mdsetimage/Makefile                                   |       8 -
 usr.sbin/mdsetimage/exec_aout.c                                |     107 -
 usr.sbin/mdsetimage/exec_coff.c                                |     108 -
 usr.sbin/mdsetimage/exec_ecoff.c                               |      97 -
 usr.sbin/mdsetimage/exec_elf32.c                               |     135 -
 usr.sbin/mdsetimage/exec_elf64.c                               |      41 -
 usr.sbin/mdsetimage/extern.h                                   |      75 -
 usr.sbin/mdsetimage/mdsetimage.8                               |      68 -
 usr.sbin/mdsetimage/mdsetimage.c                               |     264 -
 usr.sbin/memswitch/Makefile                                    |      11 -
 usr.sbin/memswitch/memswitch.8                                 |      85 -
 usr.sbin/memswitch/memswitch.c                                 |     496 -
 usr.sbin/memswitch/memswitch.h                                 |      98 -
 usr.sbin/memswitch/methods.c                                   |     764 -
 usr.sbin/memswitch/methods.h                                   |      70 -
 usr.sbin/memswitch/properties.c                                |     339 -
 usr.sbin/mld6query/Makefile                                    |      12 -
 usr.sbin/mld6query/mld6.c                                      |     269 -
 usr.sbin/mld6query/mld6query.8                                 |      88 -
 usr.sbin/mopd/Makefile                                         |       7 -
 usr.sbin/mopd/Makefile.inc                                     |      11 -
 usr.sbin/mopd/common/Makefile                                  |      19 -
 usr.sbin/mopd/common/VERSION                                   |       1 -
 usr.sbin/mopd/common/cmp.c                                     |      45 -
 usr.sbin/mopd/common/cmp.h                                     |      42 -
 usr.sbin/mopd/common/common.h                                  |      96 -
 usr.sbin/mopd/common/device.c                                  |     325 -
 usr.sbin/mopd/common/device.h                                  |      53 -
 usr.sbin/mopd/common/dl.c                                      |     319 -
 usr.sbin/mopd/common/dl.h                                      |      42 -
 usr.sbin/mopd/common/file.c                                    |     814 -
 usr.sbin/mopd/common/file.h                                    |      56 -
 usr.sbin/mopd/common/get.c                                     |     152 -
 usr.sbin/mopd/common/get.h                                     |      49 -
 usr.sbin/mopd/common/loop-bsd.c                                |     183 -
 usr.sbin/mopd/common/mopdef.c                                  |      54 -
 usr.sbin/mopd/common/mopdef.h                                  |     198 -
 usr.sbin/mopd/common/nma.c                                     |     227 -
 usr.sbin/mopd/common/nma.h                                     |      43 -
 usr.sbin/mopd/common/nmadef.h                                  |     183 -
 usr.sbin/mopd/common/os.h                                      |      61 -
 usr.sbin/mopd/common/pf.c                                      |     264 -
 usr.sbin/mopd/common/pf.h                                      |      48 -
 usr.sbin/mopd/common/print.c                                   |     707 -
 usr.sbin/mopd/common/print.h                                   |      51 -
 usr.sbin/mopd/common/put.c                                     |     185 -
 usr.sbin/mopd/common/put.h                                     |      48 -
 usr.sbin/mopd/common/rc.c                                      |     320 -
 usr.sbin/mopd/common/rc.h                                      |      42 -
 usr.sbin/mopd/mopa.out/Makefile                                |       5 -
 usr.sbin/mopd/mopa.out/mopa.out.1                              |      58 -
 usr.sbin/mopd/mopa.out/mopa.out.c                              |     146 -
 usr.sbin/mopd/mopchk/Makefile                                  |       5 -
 usr.sbin/mopd/mopchk/mopchk.1                                  |      64 -
 usr.sbin/mopd/mopchk/mopchk.c                                  |     167 -
 usr.sbin/mopd/mopd/Makefile                                    |      10 -
 usr.sbin/mopd/mopd/TODO                                        |       1 -
 usr.sbin/mopd/mopd/mopd.8                                      |     109 -
 usr.sbin/mopd/mopd/mopd.c                                      |     212 -
 usr.sbin/mopd/mopd/process.c                                   |     654 -
 usr.sbin/mopd/mopd/process.h                                   |      45 -
 usr.sbin/mopd/mopprobe/Makefile                                |       5 -
 usr.sbin/mopd/mopprobe/mopprobe.1                              |      68 -
 usr.sbin/mopd/mopprobe/mopprobe.c                              |     283 -
 usr.sbin/mopd/moptrace/Makefile                                |       5 -
 usr.sbin/mopd/moptrace/moptrace.1                              |      83 -
 usr.sbin/mopd/moptrace/moptrace.c                              |     157 -
 usr.sbin/mountd/Makefile                                       |       9 -
 usr.sbin/mountd/exports.5                                      |     322 -
 usr.sbin/mountd/mountd.8                                       |     123 -
 usr.sbin/mountd/mountd.c                                       |    2251 -
 usr.sbin/mountd/pathnames.h                                    |      41 -
 usr.sbin/mrinfo/Makefile                                       |      13 -
 usr.sbin/mrinfo/mrinfo.8                                       |      85 -
 usr.sbin/mrinfo/mrinfo.c                                       |     636 -
 usr.sbin/mrouted/LICENSE                                       |      48 -
 usr.sbin/mrouted/Makefile                                      |      12 -
 usr.sbin/mrouted/callout.c                                     |     228 -
 usr.sbin/mrouted/cfparse.y                                     |     637 -
 usr.sbin/mrouted/config.c                                      |     146 -
 usr.sbin/mrouted/defs.h                                        |     322 -
 usr.sbin/mrouted/dvmrp.h                                       |     173 -
 usr.sbin/mrouted/igmp.c                                        |     357 -
 usr.sbin/mrouted/inet.c                                        |     229 -
 usr.sbin/mrouted/kern.c                                        |     240 -
 usr.sbin/mrouted/main.c                                        |     733 -
 usr.sbin/mrouted/mrouted.8                                     |     404 -
 usr.sbin/mrouted/pathnames.h                                   |      22 -
 usr.sbin/mrouted/prune.c                                       |    2304 -
 usr.sbin/mrouted/prune.h                                       |     150 -
 usr.sbin/mrouted/route.c                                       |    1161 -
 usr.sbin/mrouted/route.h                                       |      50 -
 usr.sbin/mrouted/rsrr.c                                        |     501 -
 usr.sbin/mrouted/rsrr.h                                        |     140 -
 usr.sbin/mrouted/rsrr_var.h                                    |      43 -
 usr.sbin/mrouted/snmp.c                                        |    1287 -
 usr.sbin/mrouted/snmp.h                                        |       9 -
 usr.sbin/mrouted/vif.c                                         |    1481 -
 usr.sbin/mrouted/vif.h                                         |      77 -
 usr.sbin/mtrace/Makefile                                       |      14 -
 usr.sbin/mtrace/mtrace.8                                       |     516 -
 usr.sbin/mtrace/mtrace.c                                       |    1838 -
 usr.sbin/mtree/Makefile                                        |      13 -
 usr.sbin/mtree/compare.c                                       |     414 -
 usr.sbin/mtree/create.c                                        |     355 -
 usr.sbin/mtree/extern.h                                        |      54 -
 usr.sbin/mtree/misc.c                                          |     137 -
 usr.sbin/mtree/mtree.8                                         |     304 -
 usr.sbin/mtree/mtree.c                                         |     172 -
 usr.sbin/mtree/mtree.h                                         |     109 -
 usr.sbin/mtree/spec.c                                          |     316 -
 usr.sbin/mtree/verify.c                                        |     224 -
 usr.sbin/ndp/Makefile                                          |      12 -
 usr.sbin/ndp/gnuc.h                                            |       3 -
 usr.sbin/ndp/ndp.8                                             |     136 -
 usr.sbin/ndp/ndp.c                                             |     997 -
 usr.sbin/netgroup_mkdb/Makefile                                |       8 -
 usr.sbin/netgroup_mkdb/netgroup_mkdb.8                         |      88 -
 usr.sbin/netgroup_mkdb/netgroup_mkdb.c                         |     734 -
 usr.sbin/netgroup_mkdb/str.c                                   |     122 -
 usr.sbin/netgroup_mkdb/str.h                                   |      49 -
 usr.sbin/netgroup_mkdb/util.c                                  |     111 -
 usr.sbin/netgroup_mkdb/util.h                                  |      43 -
 usr.sbin/nfsd/Makefile                                         |       7 -
 usr.sbin/nfsd/nfsd.8                                           |     118 -
 usr.sbin/nfsd/nfsd.c                                           |     648 -
 usr.sbin/nfsiod/Makefile                                       |       7 -
 usr.sbin/nfsiod/nfsiod.8                                       |      77 -
 usr.sbin/nfsiod/nfsiod.c                                       |     181 -
 usr.sbin/ntp/ntp2netbsd                                        |    2704 -
 usr.sbin/pim6dd/LICENSE.mrouted                                |      48 -
 usr.sbin/pim6dd/LICENSE.pimd                                   |      47 -
 usr.sbin/pim6dd/Makefile                                       |      11 -
 usr.sbin/pim6dd/VERSION                                        |       1 -
 usr.sbin/pim6dd/callout.c                                      |     256 -
 usr.sbin/pim6dd/config.c                                       |     677 -
 usr.sbin/pim6dd/debug.c                                        |     501 -
 usr.sbin/pim6dd/debug.h                                        |     122 -
 usr.sbin/pim6dd/defs.h                                         |     604 -
 usr.sbin/pim6dd/inet6.c                                        |     288 -
 usr.sbin/pim6dd/kern.c                                         |     416 -
 usr.sbin/pim6dd/main.c                                         |     720 -
 usr.sbin/pim6dd/mld6.c                                         |     441 -
 usr.sbin/pim6dd/mld6.h                                         |      45 -
 usr.sbin/pim6dd/mld6_proto.c                                   |     533 -
 usr.sbin/pim6dd/mrt.c                                          |     804 -
 usr.sbin/pim6dd/mrt.h                                          |     229 -
 usr.sbin/pim6dd/pathnames.h                                    |      64 -
 usr.sbin/pim6dd/pim6.c                                         |     437 -
 usr.sbin/pim6dd/pim6_proto.c                                   |    1585 -
 usr.sbin/pim6dd/pim6dd.8                                       |     112 -
 usr.sbin/pim6dd/pim6dd.conf.5                                  |     157 -
 usr.sbin/pim6dd/pimdd.h                                        |     554 -
 usr.sbin/pim6dd/route.c                                        |     660 -
 usr.sbin/pim6dd/routesock.c                                    |     370 -
 usr.sbin/pim6dd/timer.c                                        |     321 -
 usr.sbin/pim6dd/trace.c                                        |     491 -
 usr.sbin/pim6dd/trace.h                                        |     184 -
 usr.sbin/pim6dd/vers.c                                         |       3 -
 usr.sbin/pim6dd/vif.c                                          |     458 -
 usr.sbin/pim6dd/vif.h                                          |     293 -
 usr.sbin/pkg_install/Makefile                                  |       8 -
 usr.sbin/pkg_install/Makefile.inc                              |      48 -
 usr.sbin/pkg_install/README                                    |      11 -
 usr.sbin/pkg_install/add/Makefile                              |       7 -
 usr.sbin/pkg_install/add/add.h                                 |      48 -
 usr.sbin/pkg_install/add/extract.c                             |     314 -
 usr.sbin/pkg_install/add/futil.c                               |      98 -
 usr.sbin/pkg_install/add/main.c                                |     165 -
 usr.sbin/pkg_install/add/perform.c                             |     627 -
 usr.sbin/pkg_install/add/pkg_add.1                             |     403 -
 usr.sbin/pkg_install/admin/Makefile                            |       6 -
 usr.sbin/pkg_install/admin/README                              |       9 -
 usr.sbin/pkg_install/admin/main.c                              |     477 -
 usr.sbin/pkg_install/admin/pkg_admin.1                         |     108 -
 usr.sbin/pkg_install/create/Makefile                           |       7 -
 usr.sbin/pkg_install/create/create.h                           |      53 -
 usr.sbin/pkg_install/create/main.c                             |     190 -
 usr.sbin/pkg_install/create/perform.c                          |     372 -
 usr.sbin/pkg_install/create/pkg_create.1                       |     459 -
 usr.sbin/pkg_install/create/pl.c                               |     214 -
 usr.sbin/pkg_install/delete/Makefile                           |       7 -
 usr.sbin/pkg_install/delete/delete.h                           |      38 -
 usr.sbin/pkg_install/delete/main.c                             |     218 -
 usr.sbin/pkg_install/delete/perform.c                          |     650 -
 usr.sbin/pkg_install/delete/pkg_delete.1                       |     231 -
 usr.sbin/pkg_install/info/Makefile                             |       7 -
 usr.sbin/pkg_install/info/info.h                               |      70 -
 usr.sbin/pkg_install/info/main.c                               |     259 -
 usr.sbin/pkg_install/info/perform.c                            |     331 -
 usr.sbin/pkg_install/info/pkg_info.1                           |     227 -
 usr.sbin/pkg_install/info/show.c                               |     275 -
 usr.sbin/pkg_install/lib/Makefile                              |      15 -
 usr.sbin/pkg_install/lib/exec.c                                |      66 -
 usr.sbin/pkg_install/lib/file.c                                |     659 -
 usr.sbin/pkg_install/lib/global.c                              |      38 -
 usr.sbin/pkg_install/lib/lib.h                                 |     248 -
 usr.sbin/pkg_install/lib/lpkg.c                                |      66 -
 usr.sbin/pkg_install/lib/pen.c                                 |     208 -
 usr.sbin/pkg_install/lib/pkgdb.c                               |     229 -
 usr.sbin/pkg_install/lib/plist.c                               |     501 -
 usr.sbin/pkg_install/lib/str.c                                 |     355 -
 usr.sbin/pkg_install/tkpkg                                     |     152 -
 usr.sbin/portmap/Makefile                                      |      11 -
 usr.sbin/portmap/portmap.8                                     |     152 -
 usr.sbin/portmap/portmap.c                                     |     762 -
 usr.sbin/pppd/Makefile                                         |       5 -
 usr.sbin/pppd/Makefile.inc                                     |       5 -
 usr.sbin/pppd/chat/Makefile                                    |       6 -
 usr.sbin/pppd/chat/chat.8                                      |     498 -
 usr.sbin/pppd/chat/chat.c                                      |    1718 -
 usr.sbin/pppd/doc/FAQ                                          |     634 -
 usr.sbin/pppd/doc/README                                       |     486 -
 usr.sbin/pppd/doc/README.MSCHAP80                              |     284 -
 usr.sbin/pppd/doc/README.bsd                                   |     147 -
 usr.sbin/pppd/doc/README.cbcp                                  |      97 -
 usr.sbin/pppd/doc/SETUP                                        |     111 -
 usr.sbin/pppd/pppd/Makefile                                    |      23 -
 usr.sbin/pppd/pppd/auth.c                                      |    1756 -
 usr.sbin/pppd/pppd/cbcp.c                                      |     467 -
 usr.sbin/pppd/pppd/cbcp.h                                      |      28 -
 usr.sbin/pppd/pppd/ccp.c                                       |    1238 -
 usr.sbin/pppd/pppd/ccp.h                                       |      50 -
 usr.sbin/pppd/pppd/chap.c                                      |     871 -
 usr.sbin/pppd/pppd/chap.h                                      |     126 -
 usr.sbin/pppd/pppd/chap_ms.c                                   |     349 -
 usr.sbin/pppd/pppd/chap_ms.h                                   |      35 -
 usr.sbin/pppd/pppd/demand.c                                    |     359 -
 usr.sbin/pppd/pppd/eui64.c                                     |      53 -
 usr.sbin/pppd/pppd/eui64.h                                     |      70 -
 usr.sbin/pppd/pppd/fsm.c                                       |     773 -
 usr.sbin/pppd/pppd/fsm.h                                       |     146 -
 usr.sbin/pppd/pppd/ipcp.c                                      |    1858 -
 usr.sbin/pppd/pppd/ipcp.h                                      |      75 -
 usr.sbin/pppd/pppd/ipv6cp.c                                    |    1380 -
 usr.sbin/pppd/pppd/ipv6cp.h                                    |      60 -
 usr.sbin/pppd/pppd/ipxcp.c                                     |    1533 -
 usr.sbin/pppd/pppd/ipxcp.h                                     |      73 -
 usr.sbin/pppd/pppd/lcp.c                                       |    1953 -
 usr.sbin/pppd/pppd/lcp.h                                       |      90 -
 usr.sbin/pppd/pppd/magic.c                                     |      98 -
 usr.sbin/pppd/pppd/magic.h                                     |      25 -
 usr.sbin/pppd/pppd/main.c                                      |    2111 -
 usr.sbin/pppd/pppd/options.c                                   |    1538 -
 usr.sbin/pppd/pppd/patchlevel.h                                |       7 -
 usr.sbin/pppd/pppd/pathnames.h                                 |      38 -
 usr.sbin/pppd/pppd/pppd.8                                      |    1454 -
 usr.sbin/pppd/pppd/pppd.h                                      |     652 -
 usr.sbin/pppd/pppd/sys-bsd.c                                   |    1740 -
 usr.sbin/pppd/pppd/upap.c                                      |     644 -
 usr.sbin/pppd/pppd/upap.h                                      |      89 -
 usr.sbin/pppd/pppd/utils.c                                     |     887 -
 usr.sbin/pppd/pppstats/Makefile                                |       6 -
 usr.sbin/pppd/pppstats/pppstats.8                              |     218 -
 usr.sbin/pppd/pppstats/pppstats.c                              |     555 -
 usr.sbin/pstat/Makefile                                        |      16 -
 usr.sbin/pstat/pstat.8                                         |     353 -
 usr.sbin/pstat/pstat.c                                         |     883 -
 usr.sbin/pvcsif/Makefile                                       |       7 -
 usr.sbin/pvcsif/pvcsif.8                                       |      53 -
 usr.sbin/pvcsif/pvcsif.c                                       |     150 -
 usr.sbin/pvctxctl/Makefile                                     |       7 -
 usr.sbin/pvctxctl/pvctxctl.8                                   |     161 -
 usr.sbin/pvctxctl/pvctxctl.c                                   |     203 -
 usr.sbin/pwd_mkdb/Makefile                                     |      16 -
 usr.sbin/pwd_mkdb/pwd_mkdb.8                                   |     134 -
 usr.sbin/pwd_mkdb/pwd_mkdb.c                                   |     515 -
 usr.sbin/quot/Makefile                                         |       6 -
 usr.sbin/quot/quot.8                                           |      95 -
 usr.sbin/quot/quot.c                                           |     643 -
 usr.sbin/quotacheck/Makefile                                   |      12 -
 usr.sbin/quotacheck/quotacheck.8                               |     159 -
 usr.sbin/quotacheck/quotacheck.c                               |     665 -
 usr.sbin/quotaon/Makefile                                      |       9 -
 usr.sbin/quotaon/quotaon.8                                     |     140 -
 usr.sbin/quotaon/quotaon.c                                     |     276 -
 usr.sbin/rarpd/Makefile                                        |      14 -
 usr.sbin/rarpd/mkarp.c                                         |     233 -
 usr.sbin/rarpd/mkarp.h                                         |       7 -
 usr.sbin/rarpd/rarpd.8                                         |      99 -
 usr.sbin/rarpd/rarpd.c                                         |     974 -
 usr.sbin/rbootd/Makefile                                       |      11 -
 usr.sbin/rbootd/bpf.c                                          |     427 -
 usr.sbin/rbootd/conf.c                                         |      95 -
 usr.sbin/rbootd/defs.h                                         |     185 -
 usr.sbin/rbootd/parseconf.c                                    |     364 -
 usr.sbin/rbootd/pathnames.h                                    |      53 -
 usr.sbin/rbootd/rbootd.8                                       |     159 -
 usr.sbin/rbootd/rbootd.c                                       |     441 -
 usr.sbin/rbootd/rmp.h                                          |      97 -
 usr.sbin/rbootd/rmp_var.h                                      |     246 -
 usr.sbin/rbootd/rmpproto.c                                     |     612 -
 usr.sbin/rbootd/utils.c                                        |     561 -
 usr.sbin/rdate/Makefile                                        |       9 -
 usr.sbin/rdate/rdate.8                                         |      70 -
 usr.sbin/rdate/rdate.c                                         |     183 -
 usr.sbin/repquota/Makefile                                     |       7 -
 usr.sbin/repquota/repquota.8                                   |     104 -
 usr.sbin/repquota/repquota.c                                   |     401 -
 usr.sbin/rip6query/Makefile                                    |       8 -
 usr.sbin/rip6query/rip6query.c                                 |     148 -
 usr.sbin/rmt/Makefile                                          |       7 -
 usr.sbin/rmt/rmt.8                                             |     219 -
 usr.sbin/rmt/rmt.c                                             |     259 -
 usr.sbin/route6d/Makefile                                      |       8 -
 usr.sbin/route6d/route6d.8                                     |     234 -
 usr.sbin/route6d/route6d.c                                     |    2912 -
 usr.sbin/route6d/route6d.h                                     |      91 -
 usr.sbin/rpc.bootparamd/Makefile                               |      21 -
 usr.sbin/rpc.bootparamd/bootparamd.c                           |     407 -
 usr.sbin/rpc.bootparamd/bootparams.5                           |      83 -
 usr.sbin/rpc.bootparamd/pathnames.h                            |      10 -
 usr.sbin/rpc.bootparamd/rpc.bootparamd.8                       |      63 -
 usr.sbin/rpc.lockd/Makefile                                    |      25 -
 usr.sbin/rpc.lockd/lock_proc.c                                 |     682 -
 usr.sbin/rpc.lockd/lockd.c                                     |     163 -
 usr.sbin/rpc.lockd/lockd.h                                     |      36 -
 usr.sbin/rpc.lockd/rpc.lockd.8                                 |     109 -
 usr.sbin/rpc.lockd/test.c                                      |     365 -
 usr.sbin/rpc.pcnfsd/Makefile                                   |      28 -
 usr.sbin/rpc.pcnfsd/Makefile.clnt                              |      29 -
 usr.sbin/rpc.pcnfsd/README                                     |     110 -
 usr.sbin/rpc.pcnfsd/common.h                                   |     181 -
 usr.sbin/rpc.pcnfsd/extern.h                                   |      36 -
 usr.sbin/rpc.pcnfsd/paths.h                                    |      13 -
 usr.sbin/rpc.pcnfsd/pcnfsd.8                                   |     217 -
 usr.sbin/rpc.pcnfsd/pcnfsd.x                                   |     638 -
 usr.sbin/rpc.pcnfsd/pcnfsd_cache.c                             |      96 -
 usr.sbin/rpc.pcnfsd/pcnfsd_misc.c                              |     587 -
 usr.sbin/rpc.pcnfsd/pcnfsd_print.c                             |    1350 -
 usr.sbin/rpc.pcnfsd/pcnfsd_test.c                              |     572 -
 usr.sbin/rpc.pcnfsd/pcnfsd_v1.c                                |     152 -
 usr.sbin/rpc.pcnfsd/pcnfsd_v2.c                                |     546 -
 usr.sbin/rpc.statd/Makefile                                    |      25 -
 usr.sbin/rpc.statd/rpc.statd.8                                 |     112 -
 usr.sbin/rpc.statd/stat_proc.c                                 |     365 -
 usr.sbin/rpc.statd/statd.c                                     |     631 -
 usr.sbin/rpc.statd/statd.h                                     |     120 -
 usr.sbin/rpc.statd/test.c                                      |     131 -
 usr.sbin/rpc.yppasswdd/Makefile                                |      11 -
 usr.sbin/rpc.yppasswdd/rpc.yppasswdd.8                         |      78 -
 usr.sbin/rpc.yppasswdd/rpc.yppasswdd.c                         |     157 -
 usr.sbin/rpc.yppasswdd/yppasswdd_mkpw.c                        |     148 -
 usr.sbin/rpc.yppasswdd/yppasswdd_xdr.c                         |      80 -
 usr.sbin/rtadvd/Makefile                                       |      11 -
 usr.sbin/rtadvd/advcap.c                                       |     464 -
 usr.sbin/rtadvd/advcap.h                                       |      45 -
 usr.sbin/rtadvd/config.c                                       |     644 -
 usr.sbin/rtadvd/config.h                                       |      34 -
 usr.sbin/rtadvd/if.c                                           |     589 -
 usr.sbin/rtadvd/if.h                                           |      57 -
 usr.sbin/rtadvd/pathnames.h                                    |       3 -
 usr.sbin/rtadvd/rrenum.c                                       |     409 -
 usr.sbin/rtadvd/rrenum.h                                       |      34 -
 usr.sbin/rtadvd/rtadvd.8                                       |     116 -
 usr.sbin/rtadvd/rtadvd.c                                       |    1213 -
 usr.sbin/rtadvd/rtadvd.conf.5                                  |     250 -
 usr.sbin/rtadvd/rtadvd.h                                       |     106 -
 usr.sbin/rtadvd/timer.c                                        |     201 -
 usr.sbin/rtadvd/timer.h                                        |      63 -
 usr.sbin/rtsold/Makefile                                       |      14 -
 usr.sbin/rtsold/if.c                                           |     424 -
 usr.sbin/rtsold/probe.c                                        |     178 -
 usr.sbin/rtsold/rtsol.c                                        |     305 -
 usr.sbin/rtsold/rtsold.8                                       |     159 -
 usr.sbin/rtsold/rtsold.c                                       |     577 -
 usr.sbin/rtsold/rtsold.h                                       |      86 -
 usr.sbin/rwhod/Makefile                                        |      10 -
 usr.sbin/rwhod/rwhod.8                                         |     139 -
 usr.sbin/rwhod/rwhod.c                                         |     546 -
 usr.sbin/sa/Makefile                                           |       7 -
 usr.sbin/sa/extern.h                                           |     100 -
 usr.sbin/sa/main.c                                             |     545 -
 usr.sbin/sa/pathnames.h                                        |      35 -
 usr.sbin/sa/pdb.c                                              |     422 -
 usr.sbin/sa/sa.8                                               |     247 -
 usr.sbin/sa/usrdb.c                                            |     290 -
 usr.sbin/screenblank/Makefile                                  |      15 -
 usr.sbin/screenblank/pathnames.h                               |      47 -
 usr.sbin/screenblank/screenblank.1                             |     107 -
 usr.sbin/screenblank/screenblank.c                             |     382 -
 usr.sbin/sendmail/FAQ                                          |      11 -
 usr.sbin/sendmail/KNOWNBUGS                                    |     107 -
 usr.sbin/sendmail/Makefile                                     |      16 -
 usr.sbin/sendmail/Makefile.inc                                 |       7 -
 usr.sbin/sendmail/READ_ME                                      |     326 -
 usr.sbin/sendmail/RELEASE_NOTES                                |    5718 -
 usr.sbin/sendmail/cf/Makefile                                  |      17 -
 usr.sbin/sendmail/cf/README                                    |    1857 -
 usr.sbin/sendmail/cf/cf/Makefile                               |      99 -
 usr.sbin/sendmail/cf/cf/Makefile.dist                          |     110 -
 usr.sbin/sendmail/cf/cf/babylon.mc                             |      48 -
 usr.sbin/sendmail/cf/cf/boat-anchor.mc                         |      47 -
 usr.sbin/sendmail/cf/cf/chez.cs.mc                             |      55 -
 usr.sbin/sendmail/cf/cf/chimera.mc                             |      48 -
 usr.sbin/sendmail/cf/cf/clientproto.mc                         |      55 -
 usr.sbin/sendmail/cf/cf/cs-hpux10.mc                           |      52 -
 usr.sbin/sendmail/cf/cf/cs-hpux9.mc                            |      52 -
 usr.sbin/sendmail/cf/cf/cs-osf1.mc                             |      51 -
 usr.sbin/sendmail/cf/cf/cs-solaris2.mc                         |      51 -
 usr.sbin/sendmail/cf/cf/cs-sunos4.1.mc                         |      51 -
 usr.sbin/sendmail/cf/cf/cs-ultrix4.mc                          |      51 -
 usr.sbin/sendmail/cf/cf/cyrusproto.mc                          |      41 -
 usr.sbin/sendmail/cf/cf/generic-bsd4.4.mc                      |      49 -
 usr.sbin/sendmail/cf/cf/generic-hpux10.mc                      |      48 -
 usr.sbin/sendmail/cf/cf/generic-hpux9.mc                       |      48 -
 usr.sbin/sendmail/cf/cf/generic-nextstep3.3.mc                 |      48 -
 usr.sbin/sendmail/cf/cf/generic-osf1.mc                        |      48 -
 usr.sbin/sendmail/cf/cf/generic-solaris2.mc                    |      48 -
 usr.sbin/sendmail/cf/cf/generic-sunos4.1.mc                    |      48 -
 usr.sbin/sendmail/cf/cf/generic-ultrix4.mc                     |      48 -
 usr.sbin/sendmail/cf/cf/huginn.cs.mc                           |      64 -
 usr.sbin/sendmail/cf/cf/ihack.net.mc                           |      45 -
 usr.sbin/sendmail/cf/cf/knecht.mc                              |     144 -
 usr.sbin/sendmail/cf/cf/mail.cs.mc                             |      65 -
 usr.sbin/sendmail/cf/cf/mail.eecs.mc                           |      65 -
 usr.sbin/sendmail/cf/cf/mailspool.cs.mc                        |      58 -
 usr.sbin/sendmail/cf/cf/minbar.mc                              |      46 -
 usr.sbin/sendmail/cf/cf/netbsd-proto.mc                        |      50 -
 usr.sbin/sendmail/cf/cf/python.cs.mc                           |      63 -
 usr.sbin/sendmail/cf/cf/s2k-osf1.mc                            |      51 -
 usr.sbin/sendmail/cf/cf/s2k-ultrix4.mc                         |      51 -
 usr.sbin/sendmail/cf/cf/sun-lamp.mc                            |      52 -
 usr.sbin/sendmail/cf/cf/tcpproto.mc                            |      54 -
 usr.sbin/sendmail/cf/cf/ucbarpa.mc                             |      51 -
 usr.sbin/sendmail/cf/cf/ucbvax.mc                              |     112 -
 usr.sbin/sendmail/cf/cf/uucpproto.mc                           |      54 -
 usr.sbin/sendmail/cf/cf/vangogh.cs.mc                          |      54 -
 usr.sbin/sendmail/cf/cf/zhadum.mc                              |      46 -
 usr.sbin/sendmail/cf/domain/Berkeley.EDU.m4                    |      45 -
 usr.sbin/sendmail/cf/domain/CS.Berkeley.EDU.m4                 |      40 -
 usr.sbin/sendmail/cf/domain/EECS.Berkeley.EDU.m4               |      38 -
 usr.sbin/sendmail/cf/domain/Makefile                           |      14 -
 usr.sbin/sendmail/cf/domain/NetBSD.ORG.m4                      |      15 -
 usr.sbin/sendmail/cf/domain/S2K.Berkeley.EDU.m4                |      38 -
 usr.sbin/sendmail/cf/domain/berkeley-only.m4                   |      40 -
 usr.sbin/sendmail/cf/domain/generic.m4                         |      47 -
 usr.sbin/sendmail/cf/domain/ihack.net.m4                       |      21 -
 usr.sbin/sendmail/cf/feature/Makefile                          |      18 -
 usr.sbin/sendmail/cf/feature/allmasquerade.m4                  |      41 -
 usr.sbin/sendmail/cf/feature/always_add_domain.m4              |      40 -
 usr.sbin/sendmail/cf/feature/bestmx_is_local.m4                |      66 -
 usr.sbin/sendmail/cf/feature/bitdomain.m4                      |      49 -
 usr.sbin/sendmail/cf/feature/domaintable.m4                    |      40 -
 usr.sbin/sendmail/cf/feature/genericstable.m4                  |      40 -
 usr.sbin/sendmail/cf/feature/limited_masquerade.m4             |      40 -
 usr.sbin/sendmail/cf/feature/local_procmail.m4                 |      47 -
 usr.sbin/sendmail/cf/feature/mailertable.m4                    |      40 -
 usr.sbin/sendmail/cf/feature/masquerade_entire_domain.m4       |      40 -
 usr.sbin/sendmail/cf/feature/masquerade_envelope.m4            |      40 -
 usr.sbin/sendmail/cf/feature/nocanonify.m4                     |      40 -
 usr.sbin/sendmail/cf/feature/nodns.m4                          |      40 -
 usr.sbin/sendmail/cf/feature/notsticky.m4                      |      42 -
 usr.sbin/sendmail/cf/feature/nouucp.m4                         |      40 -
 usr.sbin/sendmail/cf/feature/nullclient.m4                     |      72 -
 usr.sbin/sendmail/cf/feature/redirect.m4                       |      50 -
 usr.sbin/sendmail/cf/feature/smrsh.m4                          |      42 -
 usr.sbin/sendmail/cf/feature/stickyhost.m4                     |      40 -
 usr.sbin/sendmail/cf/feature/use_ct_file.m4                    |      46 -
 usr.sbin/sendmail/cf/feature/use_cw_file.m4                    |      46 -
 usr.sbin/sendmail/cf/feature/uucpdomain.m4                     |      49 -
 usr.sbin/sendmail/cf/feature/virtusertable.m4                  |      40 -
 usr.sbin/sendmail/cf/hack/Makefile                             |      13 -
 usr.sbin/sendmail/cf/hack/cssubdomain.m4                       |      44 -
 usr.sbin/sendmail/cf/m4/Makefile                               |      13 -
 usr.sbin/sendmail/cf/m4/cf.m4                                  |      50 -
 usr.sbin/sendmail/cf/m4/cfhead.m4                              |     160 -
 usr.sbin/sendmail/cf/m4/nullrelay.m4                           |     135 -
 usr.sbin/sendmail/cf/m4/proto.m4                               |     928 -
 usr.sbin/sendmail/cf/m4/version.m4                             |      39 -
 usr.sbin/sendmail/cf/mailer/Makefile                           |      14 -
 usr.sbin/sendmail/cf/mailer/cyrus.m4                           |      47 -
 usr.sbin/sendmail/cf/mailer/fax.m4                             |      57 -
 usr.sbin/sendmail/cf/mailer/local.m4                           |      94 -
 usr.sbin/sendmail/cf/mailer/mail11.m4                          |      51 -
 usr.sbin/sendmail/cf/mailer/phquery.m4                         |      51 -
 usr.sbin/sendmail/cf/mailer/pop.m4                             |      53 -
 usr.sbin/sendmail/cf/mailer/procmail.m4                        |      54 -
 usr.sbin/sendmail/cf/mailer/smtp.m4                            |     137 -
 usr.sbin/sendmail/cf/mailer/usenet.m4                          |      48 -
 usr.sbin/sendmail/cf/mailer/uucp.m4                            |     174 -
 usr.sbin/sendmail/cf/ostype/Makefile                           |      17 -
 usr.sbin/sendmail/cf/ostype/aix2.m4                            |      41 -
 usr.sbin/sendmail/cf/ostype/aix3.m4                            |      41 -
 usr.sbin/sendmail/cf/ostype/aix4.m4                            |      41 -
 usr.sbin/sendmail/cf/ostype/altos.m4                           |      49 -
 usr.sbin/sendmail/cf/ostype/amdahl-uts.m4                      |      44 -
 usr.sbin/sendmail/cf/ostype/aux.m4                             |      43 -
 usr.sbin/sendmail/cf/ostype/bsd4.3.m4                          |      39 -
 usr.sbin/sendmail/cf/ostype/bsd4.4.m4                          |      42 -
 usr.sbin/sendmail/cf/ostype/bsdi1.0.m4                         |      38 -
 usr.sbin/sendmail/cf/ostype/bsdi2.0.m4                         |      38 -
 usr.sbin/sendmail/cf/ostype/dgux.m4                            |      41 -
 usr.sbin/sendmail/cf/ostype/domainos.m4                        |      42 -
 usr.sbin/sendmail/cf/ostype/dynix3.2.m4                        |      39 -
 usr.sbin/sendmail/cf/ostype/gnuhurd.m4                         |      41 -
 usr.sbin/sendmail/cf/ostype/hpux10.m4                          |      51 -
 usr.sbin/sendmail/cf/ostype/hpux9.m4                           |      49 -
 usr.sbin/sendmail/cf/ostype/irix4.m4                           |      41 -
 usr.sbin/sendmail/cf/ostype/irix5.m4                           |      61 -
 usr.sbin/sendmail/cf/ostype/irix6.m4                           |      61 -
 usr.sbin/sendmail/cf/ostype/isc4.1.m4                          |      48 -
 usr.sbin/sendmail/cf/ostype/linux.m4                           |      38 -
 usr.sbin/sendmail/cf/ostype/maxion.m4                          |      50 -
 usr.sbin/sendmail/cf/ostype/mklinux.m4                         |      44 -
 usr.sbin/sendmail/cf/ostype/nextstep.m4                        |      45 -
 usr.sbin/sendmail/cf/ostype/osf1.m4                            |      40 -
 usr.sbin/sendmail/cf/ostype/powerux.m4                         |      46 -
 usr.sbin/sendmail/cf/ostype/ptx2.m4                            |      46 -
 usr.sbin/sendmail/cf/ostype/riscos4.5.m4                       |      42 -
 usr.sbin/sendmail/cf/ostype/sco-uw-2.1.m4                      |      16 -
 usr.sbin/sendmail/cf/ostype/sco3.2.m4                          |      45 -
 usr.sbin/sendmail/cf/ostype/sinix.m4                           |      42 -
 usr.sbin/sendmail/cf/ostype/solaris2.m4                        |      46 -
 usr.sbin/sendmail/cf/ostype/solaris2.ml.m4                     |      51 -
 usr.sbin/sendmail/cf/ostype/sunos3.5.m4                        |      37 -
 usr.sbin/sendmail/cf/ostype/sunos4.1.m4                        |      37 -
 usr.sbin/sendmail/cf/ostype/svr4.m4                            |      45 -
 usr.sbin/sendmail/cf/ostype/ultrix4.m4                         |      37 -
 usr.sbin/sendmail/cf/ostype/unknown.m4                         |      41 -
 usr.sbin/sendmail/cf/ostype/uxpds.m4                           |      49 -
 usr.sbin/sendmail/cf/sh/Makefile                               |      13 -
 usr.sbin/sendmail/cf/sh/makeinfo.sh                            |      81 -
 usr.sbin/sendmail/cf/siteconfig/Makefile                       |      13 -
 usr.sbin/sendmail/cf/siteconfig/uucp.cogsci.m4                 |       6 -
 usr.sbin/sendmail/cf/siteconfig/uucp.old.arpa.m4               |       4 -
 usr.sbin/sendmail/cf/siteconfig/uucp.ucbarpa.m4                |       1 -
 usr.sbin/sendmail/cf/siteconfig/uucp.ucbvax.m4                 |      73 -
 usr.sbin/sendmail/contrib/README                               |      10 -
 usr.sbin/sendmail/contrib/bitdomain.c                          |     411 -
 usr.sbin/sendmail/contrib/bsdi.mc                              |     191 -
 usr.sbin/sendmail/contrib/converting.sun.configs               |     446 -
 usr.sbin/sendmail/contrib/etrn.pl                              |     324 -
 usr.sbin/sendmail/contrib/expn.pl                              |    1359 -
 usr.sbin/sendmail/contrib/mailprio                             |     557 -
 usr.sbin/sendmail/contrib/mh.patch                             |     193 -
 usr.sbin/sendmail/contrib/mmuegel                              |    2079 -
 usr.sbin/sendmail/contrib/oldbind.compat.c                     |      81 -
 usr.sbin/sendmail/contrib/passwd-to-alias.pl                   |      30 -
 usr.sbin/sendmail/contrib/rcpt-streaming                       |     305 -
 usr.sbin/sendmail/contrib/re-mqueue.pl                         |     203 -
 usr.sbin/sendmail/contrib/rmail.oldsys.patch                   |     108 -
 usr.sbin/sendmail/contrib/xla/README                           |     207 -
 usr.sbin/sendmail/contrib/xla/xla.c                            |     534 -
 usr.sbin/sendmail/doc/changes/Makefile                         |      15 -
 usr.sbin/sendmail/doc/changes/changes.me                       |     999 -
 usr.sbin/sendmail/doc/intro/Makefile                           |      15 -
 usr.sbin/sendmail/doc/intro/intro.me                           |    1480 -
 usr.sbin/sendmail/doc/op/Makefile                              |      15 -
 usr.sbin/sendmail/doc/op/op.me                                 |    8213 -
 usr.sbin/sendmail/doc/usenix/Makefile                          |      14 -
 usr.sbin/sendmail/doc/usenix/usenix.me                         |    1078 -
 usr.sbin/sendmail/mail.local/Makefile                          |      11 -
 usr.sbin/sendmail/mail.local/Makefile.dist                     |      40 -
 usr.sbin/sendmail/mail.local/mail.local.8                      |     107 -
 usr.sbin/sendmail/mail.local/mail.local.c                      |     947 -
 usr.sbin/sendmail/mail.local/pathnames.h                       |      39 -
 usr.sbin/sendmail/mailstats/Makefile                           |       9 -
 usr.sbin/sendmail/mailstats/Makefile.dist                      |      80 -
 usr.sbin/sendmail/mailstats/mailstats.8                        |      82 -
 usr.sbin/sendmail/mailstats/mailstats.c                        |     249 -
 usr.sbin/sendmail/makemap/Makefile                             |      12 -
 usr.sbin/sendmail/makemap/Makefile.dist                        |      85 -
 usr.sbin/sendmail/makemap/makemap.8                            |     136 -
 usr.sbin/sendmail/makemap/makemap.c                            |     783 -
 usr.sbin/sendmail/praliases/Makefile                           |       9 -
 usr.sbin/sendmail/praliases/Makefile.dist                      |      85 -
 usr.sbin/sendmail/praliases/praliases.8                        |      43 -
 usr.sbin/sendmail/praliases/praliases.c                        |     140 -
 usr.sbin/sendmail/smrsh/Makefile                               |      11 -
 usr.sbin/sendmail/smrsh/Makefile.dist                          |      78 -
 usr.sbin/sendmail/smrsh/README                                 |     144 -
 usr.sbin/sendmail/smrsh/smrsh.8                                |     107 -
 usr.sbin/sendmail/smrsh/smrsh.c                                |     236 -
 usr.sbin/sendmail/src/Makefile                                 |      55 -
 usr.sbin/sendmail/src/Makefile.BSD44                           |      48 -
 usr.sbin/sendmail/src/Makefile.DGUX                            |     101 -
 usr.sbin/sendmail/src/Makefile.Dynix                           |     113 -
 usr.sbin/sendmail/src/Makefile.FreeBSD                         |      50 -
 usr.sbin/sendmail/src/Makefile.Mach386                         |     107 -
 usr.sbin/sendmail/src/Makefile.NetBSD                          |      51 -
 usr.sbin/sendmail/src/Makefile.RISCos                          |     117 -
 usr.sbin/sendmail/src/Makefile.SCO                             |     104 -
 usr.sbin/sendmail/src/Makefile.SVR4                            |     113 -
 usr.sbin/sendmail/src/Makefile.Titan                           |     114 -
 usr.sbin/sendmail/src/READ_ME                                  |    1465 -
 usr.sbin/sendmail/src/TRACEFLAGS                               |      77 -
 usr.sbin/sendmail/src/alias.c                                  |     873 -
 usr.sbin/sendmail/src/aliases                                  |      53 -
 usr.sbin/sendmail/src/aliases.5                                |      99 -
 usr.sbin/sendmail/src/arpadate.c                               |     221 -
 usr.sbin/sendmail/src/cdefs.h                                  |     125 -
 usr.sbin/sendmail/src/clock.c                                  |     289 -
 usr.sbin/sendmail/src/collect.c                                |     763 -
 usr.sbin/sendmail/src/conf.c                                   |    5080 -
 usr.sbin/sendmail/src/conf.h                                   |    2363 -
 usr.sbin/sendmail/src/convtime.c                               |     207 -
 usr.sbin/sendmail/src/daemon.c                                 |    2032 -
 usr.sbin/sendmail/src/deliver.c                                |    3488 -
 usr.sbin/sendmail/src/domain.c                                 |     904 -
 usr.sbin/sendmail/src/envelope.c                               |     961 -
 usr.sbin/sendmail/src/err.c                                    |     786 -
 usr.sbin/sendmail/src/headers.c                                |    1567 -
 usr.sbin/sendmail/src/ldap_map.h                               |      64 -
 usr.sbin/sendmail/src/macro.c                                  |     459 -
 usr.sbin/sendmail/src/mailq.1                                  |      92 -
 usr.sbin/sendmail/src/mailstats.h                              |      51 -
 usr.sbin/sendmail/src/main.c                                   |    2574 -
 usr.sbin/sendmail/src/makesendmail                             |     333 -
 usr.sbin/sendmail/src/map.c                                    |    4402 -
 usr.sbin/sendmail/src/mci.c                                    |    1288 -
 usr.sbin/sendmail/src/mime.c                                   |    1189 -
 usr.sbin/sendmail/src/newaliases.1                             |      72 -
 usr.sbin/sendmail/src/parseaddr.c                              |    2464 -
 usr.sbin/sendmail/src/pathnames.h                              |      56 -
 usr.sbin/sendmail/src/queue.c                                  |    2350 -
 usr.sbin/sendmail/src/readcf.c                                 |    2807 -
 usr.sbin/sendmail/src/recipient.c                              |    1381 -
 usr.sbin/sendmail/src/safefile.c                               |     714 -
 usr.sbin/sendmail/src/savemail.c                               |    1504 -
 usr.sbin/sendmail/src/sendmail.8                               |     609 -
 usr.sbin/sendmail/src/sendmail.h                               |    1468 -
 usr.sbin/sendmail/src/sendmail.hf                              |     113 -
 usr.sbin/sendmail/src/srvrsmtp.c                               |    1512 -
 usr.sbin/sendmail/src/stab.c                                   |     243 -
 usr.sbin/sendmail/src/stats.c                                  |     133 -
 usr.sbin/sendmail/src/sysexits.c                               |     186 -
 usr.sbin/sendmail/src/sysexits.h                               |     120 -
 usr.sbin/sendmail/src/trace.c                                  |     135 -
 usr.sbin/sendmail/src/udb.c                                    |    1162 -
 usr.sbin/sendmail/src/useful.h                                 |      82 -
 usr.sbin/sendmail/src/usersmtp.c                               |    1213 -
 usr.sbin/sendmail/src/util.c                                   |    2001 -
 usr.sbin/sendmail/src/version.c                                |      41 -
 usr.sbin/sendmail/test/Results                                 |     156 -
 usr.sbin/sendmail/test/t_exclopen.c                            |      95 -
 usr.sbin/sendmail/test/t_pathconf.c                            |      65 -
 usr.sbin/sendmail/test/t_seteuid.c                             |     123 -
 usr.sbin/sendmail/test/t_setreuid.c                            |     135 -
 usr.sbin/setkey/Makefile                                       |      39 -
 usr.sbin/setkey/parse.y                                        |     895 -
 usr.sbin/setkey/sample.cf                                      |     103 -
 usr.sbin/setkey/scriptdump.pl                                  |      56 -
 usr.sbin/setkey/setkey.8                                       |     531 -
 usr.sbin/setkey/setkey.c                                       |     558 -
 usr.sbin/setkey/test-pfkey.c                                   |     509 -
 usr.sbin/setkey/test-policy.c                                  |     161 -
 usr.sbin/setkey/token.l                                        |     325 -
 usr.sbin/setkey/vchar.h                                        |      35 -
 usr.sbin/sliplogin/Makefile                                    |       9 -
 usr.sbin/sliplogin/pathnames.h                                 |      47 -
 usr.sbin/sliplogin/slip.hosts                                  |      12 -
 usr.sbin/sliplogin/slip.login                                  |      21 -
 usr.sbin/sliplogin/sliplogin.8                                 |     223 -
 usr.sbin/sliplogin/sliplogin.c                                 |     384 -
 usr.sbin/slstats/Makefile                                      |      12 -
 usr.sbin/slstats/slstats.8                                     |     103 -
 usr.sbin/slstats/slstats.c                                     |     262 -
 usr.sbin/spray/Makefile                                        |       8 -
 usr.sbin/spray/spray.8                                         |      77 -
 usr.sbin/spray/spray.c                                         |     230 -
 usr.sbin/sup/Makefile                                          |       7 -
 usr.sbin/sup/Makefile.inc                                      |      14 -
 usr.sbin/sup/README                                            |      10 -
 usr.sbin/sup/lib/Makefile                                      |      25 -
 usr.sbin/sup/source/Makefile                                   |     140 -
 usr.sbin/sup/source/atoo.c                                     |      58 -
 usr.sbin/sup/source/c.h                                        |      81 -
 usr.sbin/sup/source/ci.c                                       |     848 -
 usr.sbin/sup/source/cvt.c                                      |      58 -
 usr.sbin/sup/source/errmsg.c                                   |      77 -
 usr.sbin/sup/source/expand.c                                   |     394 -
 usr.sbin/sup/source/ffilecopy.c                                |      88 -
 usr.sbin/sup/source/filecopy.c                                 |      69 -
 usr.sbin/sup/source/libc.h                                     |     291 -
 usr.sbin/sup/source/log.c                                      |     235 -
 usr.sbin/sup/source/netcryptvoid.c                             |      90 -
 usr.sbin/sup/source/nxtarg.c                                   |      80 -
 usr.sbin/sup/source/path.c                                     |     101 -
 usr.sbin/sup/source/quit.c                                     |      75 -
 usr.sbin/sup/source/read_line.c                                |     108 -
 usr.sbin/sup/source/run.c                                      |     327 -
 usr.sbin/sup/source/salloc.c                                   |      52 -
 usr.sbin/sup/source/scan.c                                     |    1013 -
 usr.sbin/sup/source/scm.c                                      |     594 -
 usr.sbin/sup/source/scmio.c                                    |     757 -
 usr.sbin/sup/source/skipto.c                                   |      89 -
 usr.sbin/sup/source/stree.c                                    |     367 -
 usr.sbin/sup/source/sup.1                                      |     857 -
 usr.sbin/sup/source/sup.h                                      |     254 -
 usr.sbin/sup/source/supcdefs.h                                 |     128 -
 usr.sbin/sup/source/supcmain.c                                 |     730 -
 usr.sbin/sup/source/supcmeat.c                                 |    1510 -
 usr.sbin/sup/source/supcmisc.c                                 |     345 -
 usr.sbin/sup/source/supcname.c                                 |     112 -
 usr.sbin/sup/source/supcparse.c                                |     272 -
 usr.sbin/sup/source/supcvers.c                                 |      75 -
 usr.sbin/sup/source/supextern.h                                |     193 -
 usr.sbin/sup/source/supfilesrv.c                               |    1972 -
 usr.sbin/sup/source/supmsg.c                                   |     623 -
 usr.sbin/sup/source/supmsg.h                                   |     186 -
 usr.sbin/sup/source/supscan.c                                  |     443 -
 usr.sbin/sup/source/supservers.8                               |     245 -
 usr.sbin/sup/source/sys/viceioctl.h                            |      77 -
 usr.sbin/sup/source/sysent.h                                   |     145 -
 usr.sbin/sup/source/time.h                                     |      96 -
 usr.sbin/sup/source/vprintf.c                                  |     135 -
 usr.sbin/sup/sup/Makefile                                      |      15 -
 usr.sbin/sup/supfilesrv/Makefile                               |      15 -
 usr.sbin/sup/supscan/Makefile                                  |      14 -
 usr.sbin/sysctl/Makefile                                       |      10 -
 usr.sbin/sysctl/pathconf.c                                     |     235 -
 usr.sbin/sysctl/sysctl.8                                       |     377 -
 usr.sbin/sysctl/sysctl.c                                       |    1096 -
 usr.sbin/syslogd/Makefile                                      |      11 -
 usr.sbin/syslogd/pathnames.h                                   |      40 -
 usr.sbin/syslogd/syslog.conf.5                                 |     232 -
 usr.sbin/syslogd/syslogd.8                                     |     167 -
 usr.sbin/syslogd/syslogd.c                                     |    1303 -
 usr.sbin/tcpdchk/Makefile                                      |      15 -
 usr.sbin/tcpdchk/fakelog.c                                     |      86 -
 usr.sbin/tcpdchk/inetcf.c                                      |     350 -
 usr.sbin/tcpdchk/inetcf.h                                      |      16 -
 usr.sbin/tcpdchk/percent_m.c                                   |      47 -
 usr.sbin/tcpdchk/percent_m.h                                   |       3 -
 usr.sbin/tcpdchk/percent_x.c                                   |      86 -
 usr.sbin/tcpdchk/scaffold.c                                    |     274 -
 usr.sbin/tcpdchk/scaffold.h                                    |      16 -
 usr.sbin/tcpdchk/tcpdchk.8                                     |      68 -
 usr.sbin/tcpdchk/tcpdchk.c                                     |     507 -
 usr.sbin/tcpdmatch/Makefile                                    |      15 -
 usr.sbin/tcpdmatch/tcpdmatch.8                                 |     105 -
 usr.sbin/tcpdmatch/tcpdmatch.c                                 |     373 -
 usr.sbin/tcpdump/CHANGES                                       |     509 -
 usr.sbin/tcpdump/Makefile                                      |      34 -
 usr.sbin/tcpdump/README                                        |     209 -
 usr.sbin/tcpdump/addrtoname.c                                  |     954 -
 usr.sbin/tcpdump/addrtoname.h                                  |      56 -
 usr.sbin/tcpdump/appletalk.h                                   |     169 -
 usr.sbin/tcpdump/atime.awk                                     |      19 -
 usr.sbin/tcpdump/bootp.h                                       |     169 -
 usr.sbin/tcpdump/bpf_dump.c                                    |      72 -
 usr.sbin/tcpdump/decnet.h                                      |     455 -
 usr.sbin/tcpdump/ethertype.h                                   |      78 -
 usr.sbin/tcpdump/extract.h                                     |      59 -
 usr.sbin/tcpdump/fddi.h                                        |      71 -
 usr.sbin/tcpdump/gmt2local.c                                   |      79 -
 usr.sbin/tcpdump/gmt2local.h                                   |      29 -
 usr.sbin/tcpdump/gnuc.h                                        |      45 -
 usr.sbin/tcpdump/igrp.h                                        |      38 -
 usr.sbin/tcpdump/interface.h                                   |     277 -
 usr.sbin/tcpdump/ipsec_doi.h                                   |     166 -
 usr.sbin/tcpdump/ipx.h                                         |      31 -
 usr.sbin/tcpdump/isakmp.h                                      |     451 -
 usr.sbin/tcpdump/llc.h                                         |     122 -
 usr.sbin/tcpdump/machdep.c                                     |      56 -
 usr.sbin/tcpdump/machdep.h                                     |      29 -
 usr.sbin/tcpdump/makemib                                       |     174 -
 usr.sbin/tcpdump/mib.h                                         |    1258 -
 usr.sbin/tcpdump/netbios.h                                     |      18 -
 usr.sbin/tcpdump/nfs.h                                         |     446 -
 usr.sbin/tcpdump/nfsfh.h                                       |      36 -
 usr.sbin/tcpdump/ntp.h                                         |     119 -
 usr.sbin/tcpdump/oakley.h                                      |     128 -
 usr.sbin/tcpdump/ospf.h                                        |     228 -
 usr.sbin/tcpdump/ospf6.h                                       |     282 -
 usr.sbin/tcpdump/packetdat.awk                                 |      62 -
 usr.sbin/tcpdump/parsenfsfh.c                                  |     431 -
 usr.sbin/tcpdump/ppp.h                                         |      85 -
 usr.sbin/tcpdump/print-ah.c                                    |      89 -
 usr.sbin/tcpdump/print-arcnet.c                                |     278 -
 usr.sbin/tcpdump/print-arp.c                                   |     160 -
 usr.sbin/tcpdump/print-ascii.c                                 |     154 -
 usr.sbin/tcpdump/print-atalk.c                                 |     606 -
 usr.sbin/tcpdump/print-atm.c                                   |     161 -
 usr.sbin/tcpdump/print-bootp.c                                 |     423 -
 usr.sbin/tcpdump/print-decnet.c                                |     785 -
 usr.sbin/tcpdump/print-domain.c                                |     475 -
 usr.sbin/tcpdump/print-dvmrp.c                                 |     367 -
 usr.sbin/tcpdump/print-egp.c                                   |     361 -
 usr.sbin/tcpdump/print-esp.c                                   |     100 -
 usr.sbin/tcpdump/print-ether.c                                 |     213 -
 usr.sbin/tcpdump/print-fddi.c                                  |     364 -
 usr.sbin/tcpdump/print-frag6.c                                 |      95 -
 usr.sbin/tcpdump/print-gre.c                                   |     148 -
 usr.sbin/tcpdump/print-hdlc.c                                  |     104 -
 usr.sbin/tcpdump/print-icmp.c                                  |     367 -
 usr.sbin/tcpdump/print-icmp6.c                                 |     575 -
 usr.sbin/tcpdump/print-igrp.c                                  |     146 -
 usr.sbin/tcpdump/print-ip.c                                    |     622 -
 usr.sbin/tcpdump/print-ip6.c                                   |     225 -
 usr.sbin/tcpdump/print-ip6opts.c                               |     158 -
 usr.sbin/tcpdump/print-ipcomp.c                                |     118 -
 usr.sbin/tcpdump/print-ipx.c                                   |     222 -
 usr.sbin/tcpdump/print-isakmp.c                                |    1060 -
 usr.sbin/tcpdump/print-isoclns.c                               |     346 -
 usr.sbin/tcpdump/print-krb.c                                   |     295 -
 usr.sbin/tcpdump/print-llc.c                                   |     203 -
 usr.sbin/tcpdump/print-mobile.c                                |     139 -
 usr.sbin/tcpdump/print-netbios.c                               |     106 -
 usr.sbin/tcpdump/print-nfs.c                                   |    1591 -
 usr.sbin/tcpdump/print-ntp.c                                   |     297 -
 usr.sbin/tcpdump/print-null.c                                  |     147 -
 usr.sbin/tcpdump/print-ospf.c                                  |     597 -
 usr.sbin/tcpdump/print-ospf6.c                                 |     666 -
 usr.sbin/tcpdump/print-pim.c                                   |     590 -
 usr.sbin/tcpdump/print-ppp.c                                   |     387 -
 usr.sbin/tcpdump/print-raw.c                                   |      95 -
 usr.sbin/tcpdump/print-rip.c                                   |     166 -
 usr.sbin/tcpdump/print-ripng.c                                 |     118 -
 usr.sbin/tcpdump/print-rt6.c                                   |     123 -
 usr.sbin/tcpdump/print-sl.c                                    |     317 -
 usr.sbin/tcpdump/print-snmp.c                                  |    1050 -
 usr.sbin/tcpdump/print-sunrpc.c                                |     143 -
 usr.sbin/tcpdump/print-tcp.c                                   |     555 -
 usr.sbin/tcpdump/print-telnet.c                                |     187 -
 usr.sbin/tcpdump/print-tftp.c                                  |     149 -
 usr.sbin/tcpdump/print-token.c                                 |     194 -
 usr.sbin/tcpdump/print-udp.c                                   |     569 -
 usr.sbin/tcpdump/print-wb.c                                    |     442 -
 usr.sbin/tcpdump/route6d.h                                     |      51 -
 usr.sbin/tcpdump/savestr.c                                     |      75 -
 usr.sbin/tcpdump/savestr.h                                     |      26 -
 usr.sbin/tcpdump/send-ack.awk                                  |      69 -
 usr.sbin/tcpdump/setsignal.c                                   |      85 -
 usr.sbin/tcpdump/setsignal.h                                   |      29 -
 usr.sbin/tcpdump/stime.awk                                     |      20 -
 usr.sbin/tcpdump/tcpd2netbsd                                   |     291 -
 usr.sbin/tcpdump/tcpdump.8                                     |    1287 -
 usr.sbin/tcpdump/tcpdump.c                                     |     479 -
 usr.sbin/tcpdump/util.c                                        |     281 -
 usr.sbin/tcpdump/version.c                                     |       2 -
 usr.sbin/timed/CHANGES                                         |     144 -
 usr.sbin/timed/Makefile                                        |      10 -
 usr.sbin/timed/Makefile.inc                                    |       5 -
 usr.sbin/timed/SMM.doc/Makefile                                |       5 -
 usr.sbin/timed/SMM.doc/timed/Makefile                          |      12 -
 usr.sbin/timed/SMM.doc/timed/date                              |      55 -
 usr.sbin/timed/SMM.doc/timed/loop                              |      56 -
 usr.sbin/timed/SMM.doc/timed/spell.ok                          |      34 -
 usr.sbin/timed/SMM.doc/timed/time                              |      55 -
 usr.sbin/timed/SMM.doc/timed/timed.ms                          |     462 -
 usr.sbin/timed/SMM.doc/timed/unused                            |      55 -
 usr.sbin/timed/SMM.doc/timedop/Makefile                        |       9 -
 usr.sbin/timed/SMM.doc/timedop/timed.ms                        |     281 -
 usr.sbin/timed/timed/CHANGES                                   |     153 -
 usr.sbin/timed/timed/Makefile                                  |      13 -
 usr.sbin/timed/timed/acksend.c                                 |     137 -
 usr.sbin/timed/timed/byteorder.c                               |      91 -
 usr.sbin/timed/timed/candidate.c                               |     172 -
 usr.sbin/timed/timed/cksum.c                                   |      91 -
 usr.sbin/timed/timed/correct.c                                 |     296 -
 usr.sbin/timed/timed/extern.h                                  |      91 -
 usr.sbin/timed/timed/globals.h                                 |     188 -
 usr.sbin/timed/timed/master.c                                  |     930 -
 usr.sbin/timed/timed/measure.c                                 |     326 -
 usr.sbin/timed/timed/networkdelta.c                            |     270 -
 usr.sbin/timed/timed/pathnames.h                               |      46 -
 usr.sbin/timed/timed/readmsg.c                                 |     495 -
 usr.sbin/timed/timed/slave.c                                   |     724 -
 usr.sbin/timed/timed/timed-extern.h                            |      88 -
 usr.sbin/timed/timed/timed.8                                   |     223 -
 usr.sbin/timed/timed/timed.c                                   |     984 -
 usr.sbin/timed/timedc/Makefile                                 |      11 -
 usr.sbin/timed/timedc/cmds.c                                   |     527 -
 usr.sbin/timed/timedc/cmdtab.c                                 |      64 -
 usr.sbin/timed/timedc/extern.h                                 |      54 -
 usr.sbin/timed/timedc/timedc-extern.h                          |      50 -
 usr.sbin/timed/timedc/timedc.8                                 |     148 -
 usr.sbin/timed/timedc/timedc.c                                 |     267 -
 usr.sbin/timed/timedc/timedc.h                                 |      68 -
 usr.sbin/traceroute/CHANGES                                    |      87 -
 usr.sbin/traceroute/Makefile                                   |      22 -
 usr.sbin/traceroute/README                                     |      30 -
 usr.sbin/traceroute/gnuc.h                                     |      45 -
 usr.sbin/traceroute/ifaddrlist.c                               |     181 -
 usr.sbin/traceroute/ifaddrlist.h                               |      31 -
 usr.sbin/traceroute/mean.awk                                   |      14 -
 usr.sbin/traceroute/median.awk                                 |      31 -
 usr.sbin/traceroute/savestr.c                                  |      75 -
 usr.sbin/traceroute/savestr.h                                  |      26 -
 usr.sbin/traceroute/traceroute.8                               |     384 -
 usr.sbin/traceroute/traceroute.c                               |    1618 -
 usr.sbin/traceroute/trrt2netbsd                                |     272 -
 usr.sbin/traceroute/version.c                                  |       2 -
 usr.sbin/traceroute6/Makefile                                  |      14 -
 usr.sbin/traceroute6/traceroute6.8                             |      96 -
 usr.sbin/traceroute6/traceroute6.c                             |    1122 -
 usr.sbin/trpt/Makefile                                         |      15 -
 usr.sbin/trpt/trpt.8                                           |     160 -
 usr.sbin/trpt/trpt.c                                           |     550 -
 usr.sbin/trsp/Makefile                                         |      14 -
 usr.sbin/trsp/trsp.8                                           |     155 -
 usr.sbin/trsp/trsp.c                                           |     484 -
 usr.sbin/unlink/Makefile                                       |       6 -
 usr.sbin/unlink/unlink.8                                       |      67 -
 usr.sbin/unlink/unlink.c                                       |      81 -
 usr.sbin/update/Makefile                                       |      10 -
 usr.sbin/update/update.8                                       |      79 -
 usr.sbin/update/update.c                                       |     129 -
 usr.sbin/usbdevs/Makefile                                      |       7 -
 usr.sbin/usbdevs/usbdevs.8                                     |      69 -
 usr.sbin/usbdevs/usbdevs.c                                     |     220 -
 usr.sbin/videomode/Makefile                                    |      11 -
 usr.sbin/videomode/videomode.c                                 |     171 -
 usr.sbin/vipw/Makefile                                         |      10 -
 usr.sbin/vipw/vipw.8                                           |     112 -
 usr.sbin/vipw/vipw.c                                           |     143 -
 usr.sbin/vnconfig/Makefile                                     |       7 -
 usr.sbin/vnconfig/vnconfig.8                                   |     197 -
 usr.sbin/vnconfig/vnconfig.c                                   |     285 -
 usr.sbin/wiconfig/Makefile                                     |       6 -
 usr.sbin/wiconfig/wiconfig.8                                   |     262 -
 usr.sbin/wiconfig/wiconfig.c                                   |     518 -
 usr.sbin/wsconscfg/Makefile                                    |       7 -
 usr.sbin/wsconscfg/wsconscfg.8                                 |     112 -
 usr.sbin/wsconscfg/wsconscfg.c                                 |     151 -
 usr.sbin/wsfontload/Makefile                                   |       7 -
 usr.sbin/wsfontload/wsfontload.8                               |     103 -
 usr.sbin/wsfontload/wsfontload.c                               |     176 -
 usr.sbin/xntp/COPYRIGHT                                        |     127 -
 usr.sbin/xntp/Makefile                                         |       4 -
 usr.sbin/xntp/Makefile.inc                                     |       9 -
 usr.sbin/xntp/html/HTMLPrimer.html                             |    1199 -
 usr.sbin/xntp/html/Makefile                                    |      23 -
 usr.sbin/xntp/html/accopt.html                                 |     141 -
 usr.sbin/xntp/html/authcert.html                               |      51 -
 usr.sbin/xntp/html/authopt.html                                |     130 -
 usr.sbin/xntp/html/authspeed.html                              |      46 -
 usr.sbin/xntp/html/biblio.html                                 |     230 -
 usr.sbin/xntp/html/build.html                                  |     149 -
 usr.sbin/xntp/html/clockopt.html                               |     172 -
 usr.sbin/xntp/html/config.html                                 |     137 -
 usr.sbin/xntp/html/confopt.html                                |     190 -
 usr.sbin/xntp/html/copyright.html                              |     143 -
 usr.sbin/xntp/html/debug.html                                  |     279 -
 usr.sbin/xntp/html/driver1.html                                |     134 -
 usr.sbin/xntp/html/driver10.html                               |      89 -
 usr.sbin/xntp/html/driver11.html                               |     140 -
 usr.sbin/xntp/html/driver12.html                               |      77 -
 usr.sbin/xntp/html/driver18.html                               |     235 -
 usr.sbin/xntp/html/driver19.html                               |     106 -
 usr.sbin/xntp/html/driver2.html                                |     116 -
 usr.sbin/xntp/html/driver20.html                               |     107 -
 usr.sbin/xntp/html/driver22.html                               |     107 -
 usr.sbin/xntp/html/driver23.html                               |      66 -
 usr.sbin/xntp/html/driver24.html                               |      62 -
 usr.sbin/xntp/html/driver26.html                               |     100 -
 usr.sbin/xntp/html/driver27.html                               |     426 -
 usr.sbin/xntp/html/driver28.html                               |     103 -
 usr.sbin/xntp/html/driver3.html                                |     111 -
 usr.sbin/xntp/html/driver4.html                                |     133 -
 usr.sbin/xntp/html/driver5.html                                |     138 -
 usr.sbin/xntp/html/driver6.html                                |     134 -
 usr.sbin/xntp/html/driver7.html                                |      98 -
 usr.sbin/xntp/html/driver8.html                                |     227 -
 usr.sbin/xntp/html/driver9.html                                |      93 -
 usr.sbin/xntp/html/gadget.html                                 |     106 -
 usr.sbin/xntp/html/hints.html                                  |      26 -
 usr.sbin/xntp/html/howto.html                                  |     269 -
 usr.sbin/xntp/html/index.html                                  |     162 -
 usr.sbin/xntp/html/irig.html                                   |     331 -
 usr.sbin/xntp/html/kern.html                                   |      61 -
 usr.sbin/xntp/html/kernpps.html                                |      26 -
 usr.sbin/xntp/html/ldisc.html                                  |     162 -
 usr.sbin/xntp/html/md5cert.html                                |      41 -
 usr.sbin/xntp/html/measure.html                                |      50 -
 usr.sbin/xntp/html/miscopt.html                                |     125 -
 usr.sbin/xntp/html/monopt.html                                 |     196 -
 usr.sbin/xntp/html/notes.html                                  |    1184 -
 usr.sbin/xntp/html/ntpdate.html                                |     145 -
 usr.sbin/xntp/html/ntpq.html                                   |     346 -
 usr.sbin/xntp/html/ntptime.html                                |      60 -
 usr.sbin/xntp/html/ntptrace.html                               |      69 -
 usr.sbin/xntp/html/parsedata.html                              |     374 -
 usr.sbin/xntp/html/parsenew.html                               |     264 -
 usr.sbin/xntp/html/patches.html                                |      69 -
 usr.sbin/xntp/html/porting.html                                |      78 -
 usr.sbin/xntp/html/pps.html                                    |      81 -
 usr.sbin/xntp/html/prefer.html                                 |     326 -
 usr.sbin/xntp/html/rdebug.html                                 |      68 -
 usr.sbin/xntp/html/refclock.html                               |     105 -
 usr.sbin/xntp/html/release.html                                |     179 -
 usr.sbin/xntp/html/tickadj.html                                |      86 -
 usr.sbin/xntp/html/vxworks.html                                |     147 -
 usr.sbin/xntp/html/xntpd.html                                  |     164 -
 usr.sbin/xntp/html/xntpdc.html                                 |     482 -
 usr.sbin/xntp/include/config.h                                 |     714 -
 usr.sbin/xntp/include/l_stdlib.h                               |     428 -
 usr.sbin/xntp/include/ntp.h                                    |     791 -
 usr.sbin/xntp/include/ntp_calendar.h                           |     114 -
 usr.sbin/xntp/include/ntp_control.h                            |     263 -
 usr.sbin/xntp/include/ntp_filegen.h                            |      53 -
 usr.sbin/xntp/include/ntp_fp.h                                 |     322 -
 usr.sbin/xntp/include/ntp_if.h                                 |      56 -
 usr.sbin/xntp/include/ntp_io.h                                 |      29 -
 usr.sbin/xntp/include/ntp_machine.h                            |     514 -
 usr.sbin/xntp/include/ntp_malloc.h                             |      21 -
 usr.sbin/xntp/include/ntp_proto.h                              |      17 -
 usr.sbin/xntp/include/ntp_refclock.h                           |     238 -
 usr.sbin/xntp/include/ntp_request.h                            |     810 -
 usr.sbin/xntp/include/ntp_select.h                             |      37 -
 usr.sbin/xntp/include/ntp_stdlib.h                             |      98 -
 usr.sbin/xntp/include/ntp_string.h                             |      40 -
 usr.sbin/xntp/include/ntp_syslog.h                             |      79 -
 usr.sbin/xntp/include/ntp_types.h                              |      85 -
 usr.sbin/xntp/include/ntp_unixtime.h                           |     130 -
 usr.sbin/xntp/include/ntpd.h                                   |     200 -
 usr.sbin/xntp/include/parse.h                                  |     473 -
 usr.sbin/xntp/include/parse_conf.h                             |      56 -
 usr.sbin/xntp/ntpdate/Makefile                                 |       7 -
 usr.sbin/xntp/ntpdate/ntpdate.8                                |     198 -
 usr.sbin/xntp/ntpdate/ntpdate.c                                |    2074 -
 usr.sbin/xntp/ntpdate/ntpdate.h                                |      87 -
 usr.sbin/xntp/ntpq/Makefile                                    |       7 -
 usr.sbin/xntp/ntpq/ntpq.8                                      |     382 -
 usr.sbin/xntp/ntpq/ntpq.c                                      |    3009 -
 usr.sbin/xntp/ntpq/ntpq.h                                      |      91 -
 usr.sbin/xntp/ntpq/ntpq_ops.c                                  |    1632 -
 usr.sbin/xntp/ntptime/Makefile                                 |       7 -
 usr.sbin/xntp/ntptime/ntptime.8                                |      60 -
 usr.sbin/xntp/ntptime/ntptime.c                                |     411 -
 usr.sbin/xntp/ntptrace/Makefile                                |       7 -
 usr.sbin/xntp/ntptrace/ntptrace.8                              |      68 -
 usr.sbin/xntp/ntptrace/ntptrace.c                              |     825 -
 usr.sbin/xntp/ntptrace/ntptrace.h                              |      38 -
 usr.sbin/xntp/xntp2netbsd                                      |    2583 -
 usr.sbin/xntp/xntpd/Makefile                                   |      15 -
 usr.sbin/xntp/xntpd/clk_computime.c                            |     153 -
 usr.sbin/xntp/xntpd/clk_dcf7000.c                              |     180 -
 usr.sbin/xntp/xntpd/clk_hopf6021.c                             |     246 -
 usr.sbin/xntp/xntpd/clk_meinberg.c                             |     533 -
 usr.sbin/xntp/xntpd/clk_rawdcf.c                               |     618 -
 usr.sbin/xntp/xntpd/clk_rcc8000.c                              |     156 -
 usr.sbin/xntp/xntpd/clk_schmid.c                               |     247 -
 usr.sbin/xntp/xntpd/clk_trimtaip.c                             |     167 -
 usr.sbin/xntp/xntpd/clk_trimtsip.c                             |     545 -
 usr.sbin/xntp/xntpd/map_vme.c                                  |     133 -
 usr.sbin/xntp/xntpd/ntp_config.c                               |    2100 -
 usr.sbin/xntp/xntpd/ntp_control.c                              |    2740 -
 usr.sbin/xntp/xntpd/ntp_filegen.c                              |     567 -
 usr.sbin/xntp/xntpd/ntp_intres.c                               |     915 -
 usr.sbin/xntp/xntpd/ntp_io.c                                   |    2542 -
 usr.sbin/xntp/xntpd/ntp_leap.c                                 |     320 -
 usr.sbin/xntp/xntpd/ntp_loopfilter.c                           |     758 -
 usr.sbin/xntp/xntpd/ntp_monitor.c                              |     357 -
 usr.sbin/xntp/xntpd/ntp_peer.c                                 |     677 -
 usr.sbin/xntp/xntpd/ntp_proto.c                                |    2499 -
 usr.sbin/xntp/xntpd/ntp_refclock.c                             |    1423 -
 usr.sbin/xntp/xntpd/ntp_request.c                              |    2387 -
 usr.sbin/xntp/xntpd/ntp_restrict.c                             |     465 -
 usr.sbin/xntp/xntpd/ntp_timer.c                                |     558 -
 usr.sbin/xntp/xntpd/ntp_unixclock.c                            |     753 -
 usr.sbin/xntp/xntpd/ntp_util.c                                 |     650 -
 usr.sbin/xntp/xntpd/ntpd.c                                     |     969 -
 usr.sbin/xntp/xntpd/parse.c                                    |    1231 -
 usr.sbin/xntp/xntpd/parse_conf.c                               |     191 -
 usr.sbin/xntp/xntpd/refclock_acts.c                            |    1035 -
 usr.sbin/xntp/xntpd/refclock_arbiter.c                         |     443 -
 usr.sbin/xntp/xntpd/refclock_arc.c                             |    1547 -
 usr.sbin/xntp/xntpd/refclock_as2201.c                          |     471 -
 usr.sbin/xntp/xntpd/refclock_atom.c                            |     558 -
 usr.sbin/xntp/xntpd/refclock_bancomm.c                         |     680 -
 usr.sbin/xntp/xntpd/refclock_chu.c                             |     808 -
 usr.sbin/xntp/xntpd/refclock_conf.c                            |     243 -
 usr.sbin/xntp/xntpd/refclock_datum.c                           |     875 -
 usr.sbin/xntp/xntpd/refclock_gpsvme.c                          |     621 -
 usr.sbin/xntp/xntpd/refclock_heath.c                           |     495 -
 usr.sbin/xntp/xntpd/refclock_hpgps.c                           |     631 -
 usr.sbin/xntp/xntpd/refclock_irig.c                            |     267 -
 usr.sbin/xntp/xntpd/refclock_leitch.c                          |     726 -
 usr.sbin/xntp/xntpd/refclock_local.c                           |     193 -
 usr.sbin/xntp/xntpd/refclock_msfees.c                          |    1581 -
 usr.sbin/xntp/xntpd/refclock_mx4200.c                          |    2067 -
 usr.sbin/xntp/xntpd/refclock_nmea.c                            |     417 -
 usr.sbin/xntp/xntpd/refclock_parse.c                           |    4371 -
 usr.sbin/xntp/xntpd/refclock_pst.c                             |     339 -
 usr.sbin/xntp/xntpd/refclock_ptbacts.c                         |      18 -
 usr.sbin/xntp/xntpd/refclock_tpro.c                            |     230 -
 usr.sbin/xntp/xntpd/refclock_trak.c                            |     375 -
 usr.sbin/xntp/xntpd/refclock_true.c                            |     881 -
 usr.sbin/xntp/xntpd/refclock_usno.c                            |     700 -
 usr.sbin/xntp/xntpd/refclock_wwvb.c                            |     487 -
 usr.sbin/xntp/xntpd/xntpd.8                                    |     190 -
 usr.sbin/xntp/xntpdc/Makefile                                  |       7 -
 usr.sbin/xntp/xntpdc/ntpdc.c                                   |    1663 -
 usr.sbin/xntp/xntpdc/ntpdc.h                                   |      61 -
 usr.sbin/xntp/xntpdc/ntpdc_ops.c                               |    2429 -
 usr.sbin/xntp/xntpdc/xntpdc.8                                  |     580 -
 usr.sbin/ypbind/Makefile                                       |      11 -
 usr.sbin/ypbind/pathnames.h                                    |      40 -
 usr.sbin/ypbind/ypbind.8                                       |     156 -
 usr.sbin/ypbind/ypbind.c                                       |    1255 -
 usr.sbin/yppoll/Makefile                                       |       7 -
 usr.sbin/yppoll/yppoll.8                                       |      86 -
 usr.sbin/yppoll/yppoll.c                                       |     200 -
 usr.sbin/ypserv/Makefile                                       |       9 -
 usr.sbin/ypserv/Makefile.inc                                   |      11 -
 usr.sbin/ypserv/common/Makefile                                |      13 -
 usr.sbin/ypserv/common/localhostname.c                         |     103 -
 usr.sbin/ypserv/common/protos.h                                |      39 -
 usr.sbin/ypserv/common/ypdb.c                                  |     252 -
 usr.sbin/ypserv/common/ypdb.h                                  |      77 -
 usr.sbin/ypserv/common/ypdef.h                                 |      75 -
 usr.sbin/ypserv/common/yplib_host.c                            |     354 -
 usr.sbin/ypserv/common/yplib_host.h                            |      58 -
 usr.sbin/ypserv/common/ypresp_xdr.c                            |      34 -
 usr.sbin/ypserv/makedbm/Makefile                               |       6 -
 usr.sbin/ypserv/makedbm/makedbm.8                              |     144 -
 usr.sbin/ypserv/makedbm/makedbm.c                              |     382 -
 usr.sbin/ypserv/mkalias/Makefile                               |       6 -
 usr.sbin/ypserv/mkalias/mkalias.8                              |      95 -
 usr.sbin/ypserv/mkalias/mkalias.c                              |     361 -
 usr.sbin/ypserv/mknetid/Makefile                               |       6 -
 usr.sbin/ypserv/mknetid/mknetid.8                              |     116 -
 usr.sbin/ypserv/mknetid/mknetid.c                              |     478 -
 usr.sbin/ypserv/mknetid/netid.5                                |      80 -
 usr.sbin/ypserv/revnetgroup/Makefile                           |       7 -
 usr.sbin/ypserv/revnetgroup/hash.c                             |     233 -
 usr.sbin/ypserv/revnetgroup/hash.h                             |      69 -
 usr.sbin/ypserv/revnetgroup/parse_netgroup.c                   |     379 -
 usr.sbin/ypserv/revnetgroup/revnetgroup.8                      |     146 -
 usr.sbin/ypserv/revnetgroup/revnetgroup.c                      |     207 -
 usr.sbin/ypserv/stdethers/Makefile                             |       6 -
 usr.sbin/ypserv/stdethers/stdethers.8                          |      59 -
 usr.sbin/ypserv/stdethers/stdethers.c                          |     109 -
 usr.sbin/ypserv/stdhosts/Makefile                              |       6 -
 usr.sbin/ypserv/stdhosts/stdhosts.8                            |      59 -
 usr.sbin/ypserv/stdhosts/stdhosts.c                            |     115 -
 usr.sbin/ypserv/ypinit/Makefile                                |      10 -
 usr.sbin/ypserv/ypinit/Makefile.main                           |       8 -
 usr.sbin/ypserv/ypinit/Makefile.yp                             |     366 -
 usr.sbin/ypserv/ypinit/ypinit.8                                |     128 -
 usr.sbin/ypserv/ypinit/ypinit.sh                               |     324 -
 usr.sbin/ypserv/yppush/Makefile                                |       7 -
 usr.sbin/ypserv/yppush/yppush.8                                |      75 -
 usr.sbin/ypserv/yppush/yppush.c                                |     468 -
 usr.sbin/ypserv/yppush/yppush.h                                |      54 -
 usr.sbin/ypserv/yppush/yppush_err.c                            |     110 -
 usr.sbin/ypserv/yppush/yppush_proc.c                           |      74 -
 usr.sbin/ypserv/yppush/yppush_svc.c                            |     145 -
 usr.sbin/ypserv/ypserv/Makefile                                |      22 -
 usr.sbin/ypserv/ypserv/ypserv.8                                |     122 -
 usr.sbin/ypserv/ypserv/ypserv.c                                |     491 -
 usr.sbin/ypserv/ypserv/ypserv.h                                |      81 -
 usr.sbin/ypserv/ypserv/ypserv_db.c                             |     877 -
 usr.sbin/ypserv/ypserv/ypserv_proc.c                           |     519 -
 usr.sbin/ypserv/ypserv/ypserv_xdr.c                            |      45 -
 usr.sbin/ypserv/yptest/Makefile                                |       6 -
 usr.sbin/ypserv/yptest/yptest.8                                |      50 -
 usr.sbin/ypserv/yptest/yptest.c                                |     137 -
 usr.sbin/ypserv/ypxfr/Makefile                                 |       7 -
 usr.sbin/ypserv/ypxfr/ypxfr.8                                  |      98 -
 usr.sbin/ypserv/ypxfr/ypxfr.c                                  |     634 -
 usr.sbin/ypset/Makefile                                        |       7 -
 usr.sbin/ypset/ypset.8                                         |     112 -
 usr.sbin/ypset/ypset.c                                         |     177 -
 usr.sbin/zdump/Makefile                                        |       8 -
 usr.sbin/zic/Makefile                                          |       9 -
 16579 files changed, 2955 insertions(+), 5481223 deletions(-)

diffs (truncated from 5554373 to 300 lines):

diff -r e24a7f930f01 -r 54ab02680b64 Makefile
--- a/Makefile  Mon Oct 18 21:59:19 1999 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,136 +0,0 @@
-#      $NetBSD: Makefile,v 1.99 1999/09/14 01:32:43 perry Exp $
-
-# This is the top-level makefile for building NetBSD. For an outline of
-# how to build a snapshot or release, as well as other release engineering
-# information, see http://www.netbsd.org/developers/releng/index.html
-#
-# Not everything you can set or do is documented in this makefile. In
-# particular, you should review the files in /usr/share/mk (especially
-# bsd.README) for general information on building programs and writing
-# Makefiles within this structure, and see the comments in src/etc/Makefile
-# for further information on installation and release set options.
-#
-# Variables listed below can be set on the make command line (highest
-# priority), in /etc/mk.conf (middle priority), or in the environment
-# (lowest priority).
-#
-# Variables:
-#   NBUILDJOBS is the number of jobs to start in parallel during a
-#      'make build'. It defaults to 1.
-#   MKMAN, if set to `no', will prevent building of manual pages.
-#   MKSHARE, if set to `no', will prevent building and installing
-#      anything in /usr/share.
-#   UPDATE will avoid a `make cleandir' at the start of `make build',
-#      as well as having the effects listed in /usr/share/mk/bsd.README.
-#   DESTDIR is the target directory for installation of the compiled
-#      software. It defaults to /. Note that programs are built against
-#      libraries installed in DESTDIR.
-#
-# Targets:
-#   build: builds a full release of netbsd in DESTDIR.
-#   release: does a `make build,' and then tars up the DESTDIR files
-#      into RELEASEDIR, in release(7) format. (See etc/Makefile for
-#      more information on this.)
-#   snapshot: a synonym for release.
-
-.include <bsd.own.mk>                  # for configuration variables.
-
-
-HAVE_GCC28!=   ${CXX} --version | egrep "^(2\.8|egcs)" ; echo
-
-.if defined(NBUILDJOBS)
-_J= -j${NBUILDJOBS}
-.endif
-
-# NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
-
-SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share sys
-
-.if exists(games)
-SUBDIR+= games
-.endif
-
-SUBDIR+= gnu
-# This is needed for libstdc++ and gen-params.
-includes-gnu: includes-include includes-sys
-
-.if exists(regress)
-.ifmake !(install)
-SUBDIR+= regress
-.endif
-
-regression-tests:
-       @echo Running regression tests...
-       @(cd ${.CURDIR}/regress && ${MAKE} regress)
-.endif
-
-beforeinstall:
-.ifmake build
-       @echo -n "Build started at: "
-       @date
-.endif
-.ifndef DESTDIR
-       (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
-.else
-       (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)
-.endif
-
-afterinstall:
-.if ${MKMAN} != "no" && !defined(_BUILD)
-       ${MAKE} whatis.db
-.endif
-
-whatis.db:
-       (cd ${.CURDIR}/share/man && ${MAKE} makedb)
-
-# wrt info/dir below:  It's safe to move this over top of /usr/share/info/dir,
-# as the build will automatically remove/replace the non-pkg entries there.
-
-build: beforeinstall
-.if defined(FORCE_DOMESTIC)
-       @echo '*** CAPUTE!'
-       @echo '    The FORCE_DOMESTIC flag is not compatible with "make build".'
-       @echo '    Please correct the problem and try again.'
-       @false
-.endif
-.if ${MKSHARE} != "no"
-       (cd ${.CURDIR}/share/mk && ${MAKE} install)
-       (cd ${.CURDIR}/share/tmac && ${MAKE} && ${MAKE} install)
-.endif
-.if !defined(UPDATE)
-       ${MAKE} cleandir
-.endif
-.if empty(HAVE_GCC28)
-.if defined(DESTDIR)
-       @echo "*** CAPUTE!"
-       @echo "    You attempted to compile the world without egcs.  You must"
-       @echo "    first install a native egcs compiler."
-       @false
-.else
-       (cd ${.CURDIR}/gnu/usr.bin/egcs && \
-           ${MAKE} ${_J} dependall MKMAN=no && \
-           ${MAKE} MKMAN=no install && ${MAKE} cleandir)
-.endif
-.endif
-       ${MAKE} includes
-       (cd ${.CURDIR}/lib/csu && \
-           ${MAKE} ${_J} dependall MKMAN=no && \
-           ${MAKE} MKMAN=no install)
-       (cd ${.CURDIR}/lib && \
-           ${MAKE} ${_J} dependall MKMAN=no && \
-           ${MAKE} MKMAN=no install)
-       (cd ${.CURDIR}/gnu/lib && \
-           ${MAKE} ${_J} dependall MKMAN=no MKINFO=no && \
-           ${MAKE} MKMAN=no MKINFO=no install)
-       ${MAKE} ${_J} dependall && ${MAKE} _BUILD= install
-.if defined(DOMESTIC) && !defined(EXPORTABLE_SYSTEM)
-       (cd ${.CURDIR}/${DOMESTIC} && ${MAKE} ${_J} _SLAVE_BUILD= build)
-.endif
-       ${MAKE} whatis.db
-       @echo -n "Build finished at: "
-       @date
-
-release snapshot: build
-       (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release)
-
-.include <bsd.subdir.mk>
diff -r e24a7f930f01 -r 54ab02680b64 bin/Makefile
--- a/bin/Makefile      Mon Oct 18 21:59:19 1999 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,8 +0,0 @@
-#      $NetBSD: Makefile,v 1.16 1997/05/29 21:06:11 veego Exp $
-#      @(#)Makefile    8.1 (Berkeley) 5/31/93
-
-SUBDIR=        cat chio chmod cp csh date dd df domainname echo ed expr hostname \
-       kill ksh ln ls mkdir mt mv pax ps pwd rcp rcmd rm rmdir sh \
-       sleep stty sync test
-
-.include <bsd.subdir.mk>
diff -r e24a7f930f01 -r 54ab02680b64 bin/Makefile.inc
--- a/bin/Makefile.inc  Mon Oct 18 21:59:19 1999 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,8 +0,0 @@
-#      $NetBSD: Makefile.inc,v 1.10 1998/03/02 22:03:11 cgd Exp $
-#      @(#)Makefile.inc        8.1 (Berkeley) 5/31/93
-
-.include <bsd.own.mk>          # for LDSTATIC def'n
-
-WARNS?=                1
-BINDIR?=       /bin
-LDSTATIC?=     -static
diff -r e24a7f930f01 -r 54ab02680b64 bin/cat/Makefile
--- a/bin/cat/Makefile  Mon Oct 18 21:59:19 1999 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#      $NetBSD: Makefile,v 1.9 1999/07/08 01:56:09 christos Exp $
-#      @(#)Makefile    8.1 (Berkeley) 5/31/93
-
-WARNS=2
-PROG=  cat
-
-.include <bsd.prog.mk>
diff -r e24a7f930f01 -r 54ab02680b64 bin/cat/cat.1
--- a/bin/cat/cat.1     Mon Oct 18 21:59:19 1999 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,135 +0,0 @@
-.\"    $NetBSD: cat.1,v 1.16 1999/03/22 18:30:42 garbled Exp $
-.\"
-.\" Copyright (c) 1989, 1990, 1993
-.\"    The Regents of the University of California.  All rights reserved.
-.\"
-.\" This code is derived from software contributed to Berkeley by
-.\" the Institute of Electrical and Electronics Engineers, Inc.
-.\"
-.\" Redistribution and use in source and binary forms, with or without
-.\" modification, are permitted provided that the following conditions
-.\" are met:
-.\" 1. Redistributions of source code must retain the above copyright
-.\"    notice, this list of conditions and the following disclaimer.
-.\" 2. Redistributions in binary form must reproduce the above copyright
-.\"    notice, this list of conditions and the following disclaimer in the
-.\"    documentation and/or other materials provided with the distribution.
-.\" 3. All advertising materials mentioning features or use of this software
-.\"    must display the following acknowledgement:
-.\"    This product includes software developed by the University of
-.\"    California, Berkeley and its contributors.
-.\" 4. Neither the name of the University nor the names of its contributors
-.\"    may be used to endorse or promote products derived from this software
-.\"    without specific prior written permission.
-.\"
-.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
-.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
-.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
-.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-.\" SUCH DAMAGE.
-.\"
-.\"     @(#)cat.1      8.3 (Berkeley) 5/2/95
-.\"
-.Dd May 2, 1995
-.Dt CAT 1
-.Os
-.Sh NAME
-.Nm cat
-.Nd concatenate and print files
-.Sh SYNOPSIS
-.Nm
-.Op Fl benstuv
-.Op Fl
-.Op Ar
-.Sh DESCRIPTION
-The
-.Nm
-utility reads files sequentially, writing them to the standard output.
-The
-.Ar file
-operands are processed in command line order.
-A single dash represents the standard input.
-.Pp
-The options are as follows:
-.Bl -tag -width Ds
-.It Fl b
-Implies the
-.Fl n
-option but doesn't number blank lines.
-.It Fl e
-Implies the
-.Fl v
-option, and displays a dollar sign
-.Pq Ql \&$
-at the end of each line
-as well.
-.It Fl n
-Number the output lines, starting at 1.
-.It Fl s
-Squeeze multiple adjacent empty lines, causing the output to be
-single spaced.
-.It Fl t
-Implies the
-.Fl v
-option, and displays tab characters as
-.Ql ^I
-as well.
-.It Fl u
-The
-.Fl u
-option guarantees that the output is unbuffered.
-.It Fl v
-Displays non-printing characters so they are visible.
-Control characters print as
-.Ql ^X
-for control-X; the delete
-character (octal 0177) prints as
-.Ql ^?
-Non-ascii characters (with the high bit set) are printed as
-.Ql M-
-(for meta) followed by the character for the low 7 bits.
-.El
-.Pp
-The
-.Nm
-utility exits 0 on success, and >0 if an error occurs.
-.Sh BUGS
-Because of the shell language mechanism used to perform output
-redirection, the command
-.Dq Li cat file1 file2 > file1
-will cause the original data in file1 to be destroyed!
-.Sh SEE ALSO
-.Xr head 1 ,
-.Xr more 1 ,
-.Xr pr 1 ,
-.Xr tail 1 ,
-.Xr vis 1
-.Rs
-.%A Rob Pike
-.%T "UNIX Style, or cat -v Considered Harmful"
-.%J "USENIX Summer Conference Proceedings"
-.%D 1983
-.Re
-.Sh HISTORY
-A
-.Nm




Home | Main Index | Thread Index | Old Index