home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / gcc / ixemulsrc.readme < prev   
Text File  |  1997-03-02  |  63KB  |  1,235 lines

  1. Short:    IXemul 45.1 - full source code
  2. Author:   various
  3. Uploader: fnf@ninemoons.com
  4. Type:     dev/gcc
  5.  
  6. This is ixemul.library release 45.1, a shared library that makes it possible
  7. to compile and run most Unix programs under AmigaOS with almost no changes.
  8. IXemul is part of the ADE (Amiga Developer's Environment), a community
  9. effort to produce a complete development environment that is stable,
  10. available in source, and completely self-hosting.  See the ADE readme file
  11. at ftp://ftp.ninemoons.com/pub/ade/README for more details about ADE.
  12.  
  13. As of version 43.1, IXemul includes Jeff Shepherd's networking code.  If
  14. ixnet.library (included) is installed then ixemul.library will use the
  15. networking functions from the ixnet.library, instead of the default dummy
  16. implementation.  Ixnet.library works with AS225 and with AmiTCP.  It
  17. supports both clients and daemons.  A program that uses networking functions
  18. is completely shielded from the AS225 and AmiTCP differences by
  19. ixnet.library, which will take care of all the details for you. That means
  20. that there is no longer any need to provide two different binaries, one for
  21. AS225 and one for AmiTCP.  Furthermore, it is relatively easy to add support
  22. for other network packages.
  23.  
  24. The following are the changes made since the 45.0 release:
  25.  
  26.     Fixed a bug in the Unix Domain socket code that would
  27.     occasionally cause a client to wait indefinately for a
  28.     connection to be granted, while in fact the server had
  29.     already accepted the connection.
  30.  
  31.     getdtablesize() now returns FD_SETSIZE instead of NOFILE
  32.     (256 instead of 512). The result of this function was used
  33.     by several X clients to discover the number of filehandles
  34.     select() can test. And if that value is to large, you'll get
  35.     unexpected and hard to find crashes. The same change was
  36.     made to sysconf(_SC_OPEN_MAX).
  37.  
  38.     shutdown() could close down the whole Unix domain socket,
  39.     causing a crash when the socket was closed a second time by
  40.     the 'real' close.
  41.  
  42.     rename() now tests for a rename across devices and returns
  43.     the correct error code.
  44.  
  45.     Applied patch from Norbert Pueschel to improve delayed
  46.     unlink.
  47.  
  48.     Closing of Unix domain sockets is now atomic (between
  49.     Forbid/Permit), otherwise the Amiga could crash if the X
  50.     server was running at a higher priority than the client.
  51.  
  52.     Fixed a bug in ixemul.trace that caused Enforcer hits in
  53.     gcc.
  54.  
  55.     Fixed a bug with 'du -ks /volume'. The convert_dir()
  56.     function stored the directory name in Amiga format instead
  57.     of Unix format.
  58.  
  59.     Norbert Pueschel greatly improved uid/gid handling in
  60.     ixemul.library. See the README for detailed information.
  61.  
  62.     Fixed a bug in handling volumes/devices named "dev:". Ixemul
  63.     handles the volume /dev specially (e.g., /dev/console is
  64.     translated to console:) and that interfered with the
  65.     handling of the DEV: device or any volume named DEV:.  To
  66.     circumvent the /dev handling you can now use "dev:" instead
  67.     of "/dev" or write "DEV" instead of "dev" (in other words,
  68.     the open() function tests for the string "/dev/" in a
  69.     case-sensitive way).
  70.  
  71.     Due to a clumsy design of the ENV: notification a signal was
  72.     occasionally left unfreed. WShell gives warnings for that,
  73.     so I changed the design and that should take care of the
  74.     warning. The unfreed signal warning was harmless, but
  75.     annoying.
  76.  
  77.     Now fill the file type in the dirent struct. Thanks to Lars
  78.     Hecking for reporting this.
  79.  
  80.     Some AmigaOS programs started from an ixemul program set
  81.     Signals that were allocated by ixemul. This can happen
  82.     because ixemul resets the allocated signal mask in the Task
  83.     structure.  Because of that a handshake between the child
  84.     and the parent when the child process is dying failed, and
  85.     Enforcer hits (usually followed by a crash) were the result.
  86.     Fixed by resetting all Signals.
  87.  
  88.     Fixed a bug in the trap.s supervisor() code: you cannot
  89.     safely pass data on the stack to the function to be executed
  90.     in supervisor mode. In fact, this failed with a beta version
  91.     of the 68060.library from Phase 5. Now pass the data through
  92.     registers.
  93.  
  94.     Fixed bug in frexp(0.0, &i) where i was set to 1 instead of
  95.     0.
  96.  
  97.     Fixed 32 Kb memory leak.
  98.  
  99.     Added tty CRMOD support.
  100.  
  101.     Fixed serious bug in unix domain sockets where a kind of
  102.     deadlock situation could occur.
  103.  
  104.     system() now searches the whole path for 'sh' and doesn't
  105.     use /bin/sh only.  Also the paths in paths.h have been
  106.     ADE-dified. Thanks to Robert Davis for pointing out the
  107.     system() problem.
  108.  
  109.     select() on a small file that was stored in memory if the
  110.     user selected a non-zero Membuf size in ixprefs didn't
  111.     produce the expected results. Thanks to Stefan Grosse Pawig
  112.     for reporting this.
  113.  
  114. The net ixemul library distribution consists of several archives:
  115.  
  116.   ixemul-bin.lha    Utils for gnu/bin, like ixtrace and ixconfig
  117.  
  118.   ixemul-sdk.lha    Files needed to build applications that use
  119.             ixemul.library.
  120.  
  121.   ixemul-doc.lha    Various documentation, such as this file
  122.  
  123.   ixemul-src.lha    Complete source code for ixemul library
  124.  
  125.   ixemul-tz.lha        Pieces for doing TZ (timezone) management
  126.  
  127.   ixemul-CCCF.lha    Specific flavors of the library, where 'CCC'
  128.             is one of 000, 020, 030, or 040, for 68000, 68020,
  129.             68030, and 68040 respectively, and 'F' is either
  130.             'f', 's', or 't' for FPU support or soft floating
  131.             point or a "trace" version (also soft float)
  132.             respectively.
  133.  
  134. For further information consult the NEWS, INSTALL, README and TODO files in
  135. the documentation archive.
  136.  
  137. -Fred Fish  (fnf@ninemoons.com)
  138.  
  139.  
  140. ============================= Archive contents =============================
  141.  
  142. Original  Packed Ratio    Date     Time    Name
  143. -------- ------- ----- --------- --------  -------------
  144.      921     510 44.6% 20-Dec-96 13:31:36 +BUGS
  145.    37883   11007 70.9% 11-Dec-96 17:28:34 +configure
  146.      389     198 49.1% 11-Dec-96 17:28:34 +configure.in
  147.    17982    6993 61.1% 11-Dec-96 17:28:32 +COPYING
  148.    25265    9285 63.2% 11-Dec-96 17:28:32 +COPYING.LIB
  149.     1925     981 49.0% 11-Dec-96 17:28:32 +COPYRIGHT
  150.     5381    2222 58.7% 11-Dec-96 17:28:36 +bt_close.c
  151.     5569    1853 66.7% 11-Dec-96 17:28:38 +bt_conv.c
  152.     8898    3086 65.3% 11-Dec-96 17:28:38 +bt_debug.c
  153.     9526    3693 61.2% 11-Dec-96 17:28:38 +bt_delete.c
  154.     6763    2877 57.4% 11-Dec-96 17:28:38 +bt_get.c
  155.    11331    4536 59.9% 11-Dec-96 17:28:38 +bt_open.c
  156.     6119    2516 58.8% 11-Dec-96 17:28:38 +bt_overflow.c
  157.     3058    1521 50.2% 11-Dec-96 17:28:38 +bt_page.c
  158.     8671    3394 60.8% 11-Dec-96 17:28:38 +bt_put.c
  159.     6494    2477 61.8% 11-Dec-96 17:28:38 +bt_search.c
  160.     9980    3419 65.7% 11-Dec-96 17:28:38 +bt_seq.c
  161.    22387    7162 68.0% 11-Dec-96 17:28:38 +bt_split.c
  162.     3477    1708 50.8% 11-Dec-96 17:28:38 +bt_stack.c
  163.     6762    2757 59.2% 11-Dec-96 17:28:40 +bt_utils.c
  164.    13468    4849 63.9% 11-Dec-96 17:28:40 +btree.h
  165.     3324    1365 58.9% 11-Dec-96 17:28:40 +extern.h
  166.     3388    1597 52.8% 11-Dec-96 17:28:40 +db.c
  167.     3340    1410 57.7% 11-Dec-96 17:28:42 +extern.h
  168.    24260    7670 68.3% 11-Dec-96 17:28:42 +hash.c
  169.    10278    3863 62.4% 11-Dec-96 17:28:42 +hash.h
  170.    16509    5347 67.6% 11-Dec-96 17:28:42 +hash_bigkey.c
  171.     9304    3623 61.0% 11-Dec-96 17:28:42 +hash_buf.c
  172.     5431    2147 60.4% 11-Dec-96 17:28:42 +hash_func.c
  173.     2424    1230 49.2% 11-Dec-96 17:28:42 +hash_log2.c
  174.    23626    7770 67.1% 11-Dec-96 17:28:42 +hash_page.c
  175.     3301    1598 51.5% 11-Dec-96 17:28:42 +hsearch.c
  176.     4493    1865 58.4% 11-Dec-96 17:28:44 +ndbm.c
  177.     3688    1765 52.1% 11-Dec-96 17:28:44 +page.h
  178.     2681    1229 54.1% 11-Dec-96 17:28:42 +README
  179.     2268    1174 48.2% 11-Dec-96 17:28:44 +search.h
  180.     1222     560 54.1% 11-Dec-96 17:28:36 +Makefile.in
  181.    11837    4084 65.4% 11-Dec-96 17:28:44 +mpool.c
  182.      223     183 17.9% 11-Dec-96 17:28:44 +README
  183.     2767    1204 56.4% 11-Dec-96 17:28:46 +extern.h
  184.     4642    1983 57.2% 11-Dec-96 17:28:46 +rec_close.c
  185.     5646    2513 55.4% 11-Dec-96 17:28:46 +rec_delete.c
  186.     7142    2420 66.1% 11-Dec-96 17:28:46 +rec_get.c
  187.     6696    2906 56.6% 11-Dec-96 17:28:46 +rec_open.c
  188.     6717    2817 58.0% 11-Dec-96 17:28:46 +rec_put.c
  189.     4123    1891 54.1% 11-Dec-96 17:28:46 +rec_search.c
  190.     3977    1851 53.4% 11-Dec-96 17:28:46 +rec_seq.c
  191.     3994    1859 53.4% 11-Dec-96 17:28:46 +rec_utils.c
  192.     2051    1068 47.9% 11-Dec-96 17:28:46 +recno.h
  193.     3893    1937 50.2% 11-Dec-96 17:28:36 +VERSION
  194.     1599     877 45.1% 11-Dec-96 17:28:48 +alarm.c
  195.    12444    2972 76.1% 11-Dec-96 17:28:48 +arith.c
  196.     1709     937 45.1% 11-Dec-96 17:28:50 +clock.c
  197.     2642     621 76.4% 11-Dec-96 17:28:50 +common.h
  198.     2004     835 58.3% 11-Dec-96 17:28:50 +crypt.c
  199.     2978    1075 63.9% 11-Dec-96 17:28:50 +ctype_.c
  200.     2293    1182 48.4% 11-Dec-96 17:28:50 +cuserid.c
  201.     1260     728 42.2% 11-Dec-96 17:28:50 +difftime.c
  202.     6246    2741 56.1% 11-Dec-96 17:28:50 +errlst.c
  203.     5377    2204 59.0% 11-Dec-96 17:28:50 +fnmatch.c
  204.     2816    1333 52.6% 11-Dec-96 17:28:50 +getmntinfo.c
  205.     4786    1987 58.4% 11-Dec-96 17:28:50 +getwd.c
  206.    20443    7063 65.4% 11-Dec-96 17:28:50 +glob.c
  207.     6692    2643 60.5% 11-Dec-96 17:28:52 +inet_network.c
  208.     1345     727 45.9% 11-Dec-96 17:28:52 +insque.c
  209.     2609    1030 60.5% 11-Dec-96 17:28:52 +isctype.c
  210.     2194    1139 48.0% 11-Dec-96 17:28:52 +isinf.c
  211.     2260    1184 47.6% 11-Dec-96 17:28:52 +isnan.c
  212.      552     297 46.1% 11-Dec-96 17:28:52 +localeconv.c
  213.     1219     607 50.2% 11-Dec-96 17:28:48 +Makefile.in
  214.     1297     752 42.0% 11-Dec-96 17:28:52 +pause.c
  215.     4161    1910 54.0% 11-Dec-96 17:28:54 +popen.c
  216.     1615     875 45.8% 11-Dec-96 17:28:54 +psignal.c
  217.     2085    1087 47.8% 11-Dec-96 17:28:56 +raise.c
  218.    13145    4904 62.6% 11-Dec-96 17:28:56 +random.c
  219.     1311     715 45.4% 11-Dec-96 17:28:56 +remque.c
  220.     5045    2079 58.7% 11-Dec-96 17:28:56 +setjmp.c
  221.     1476     845 42.7% 11-Dec-96 17:28:56 +setjmperr.c
  222.     2402    1213 49.5% 11-Dec-96 17:28:56 +setlocale.c
  223.     1611     882 45.2% 11-Dec-96 17:28:56 +siginterrupt.c
  224.     2359    1172 50.3% 11-Dec-96 17:28:56 +siglist.c
  225.     1479     848 42.6% 11-Dec-96 17:28:56 +signal.c
  226.     1707     825 51.6% 11-Dec-96 17:28:56 +sigsetops.c
  227.     2597    1220 53.0% 11-Dec-96 17:28:58 +sleep.c
  228.     5079    2079 59.0% 11-Dec-96 17:28:58 +termios.c
  229.     1377     796 42.1% 11-Dec-96 17:28:58 +time.c
  230.     2774    1348 51.4% 11-Dec-96 17:28:58 +times.c
  231.     3804    1628 57.2% 11-Dec-96 17:28:58 +types.h
  232.     1828     976 46.6% 11-Dec-96 17:28:58 +ualarm.c
  233.     1708     840 50.8% 11-Dec-96 17:28:58 +uname.c
  234.     5028    1821 63.7% 11-Dec-96 17:28:58 +unvis.c
  235.     2711    1209 55.4% 11-Dec-96 17:28:58 +usleep.c
  236.     3616    1464 59.5% 11-Dec-96 17:28:58 +vis.c
  237.     2199    1130 48.6% 11-Dec-96 17:28:58 +wait.c
  238.     2218    1134 48.8% 11-Dec-96 17:28:58 +wait3.c
  239.     2221    1130 49.1% 11-Dec-96 17:29:00 +waitpid.c
  240.     6131    1586 74.1% 11-Dec-96 17:29:00 +gen_glue.c
  241.     1646     732 55.5% 11-Dec-96 17:29:00 +Makefile.in
  242.     3610    1620 55.1% 11-Dec-96 17:29:00 +a.out.h
  243.     3718    1564 57.9% 11-Dec-96 17:29:14 +socketbasetags.h
  244.     1675     800 52.2% 11-Dec-96 17:29:14 +usergroup.h
  245.     2588    1288 50.2% 11-Dec-96 17:29:02 +ar.h
  246.     3646    1623 55.4% 11-Dec-96 17:29:14 +ftp.h
  247.     2416    1194 50.5% 11-Dec-96 17:29:14 +inet.h
  248.     8577    3301 61.5% 11-Dec-96 17:29:14 +nameser.h
  249.    10547    3958 62.4% 11-Dec-96 17:29:16 +telnet.h
  250.     2960    1439 51.3% 11-Dec-96 17:29:16 +tftp.h
  251.     1387     447 67.7% 11-Dec-96 17:29:02 +assert.h
  252.     4729    1666 64.7% 11-Dec-96 17:29:02 +bitstring.h
  253.       20      20  0.0% 11-Dec-96 17:29:02 +bstring.h
  254.     4237    1681 60.3% 11-Dec-96 17:29:02 +ctype.h
  255.     8215    3007 63.3% 11-Dec-96 17:29:02 +db.h
  256.     3987    1869 53.1% 11-Dec-96 17:29:02 +dirent.h
  257.     3185    1391 56.3% 11-Dec-96 17:29:02 +err.h
  258.     6766    2764 59.1% 11-Dec-96 17:29:02 +errno.h
  259.       23      23  0.0% 11-Dec-96 17:29:02 +fcntl.h
  260.       70      68  2.8% 11-Dec-96 17:29:02 +float.h
  261.     2340    1198 48.8% 11-Dec-96 17:29:02 +fnmatch.h
  262.     5392    2314 57.0% 11-Dec-96 17:29:04 +fts.h
  263.     4052    1877 53.6% 11-Dec-96 17:29:04 +glob.h
  264.     2235    1126 49.6% 11-Dec-96 17:29:04 +glue.h
  265.     7233    2496 65.4% 11-Dec-96 17:29:04 +gnu.a.out.h
  266.     2457    1198 51.2% 15-Dec-96 12:47:12 +grp.h
  267.     1739     699 59.8% 11-Dec-96 17:29:04 +gvarargs.h
  268.     1519     755 50.2% 11-Dec-96 17:29:04 +inetd.h
  269.      560     287 48.7% 11-Dec-96 17:29:04 +init.h
  270.     2868    1293 54.9% 11-Dec-96 17:29:04 +ix_amiga.h
  271.     2981    1360 54.3% 11-Dec-96 17:29:04 +limits.h
  272.     2750    1350 50.9% 11-Dec-96 17:29:04 +locale.h
  273.     2879    1304 54.7% 11-Dec-96 17:29:16 +asm.h
  274.     2727    1342 50.7% 11-Dec-96 17:29:16 +signal.h
  275.     2641    1291 51.1% 11-Dec-96 17:29:16 +trap.h
  276.     3403    1685 50.4% 11-Dec-96 17:29:18 +ansi.h
  277.      137     121 11.6% 11-Dec-96 17:29:18 +asm.h
  278.      857     349 59.2% 11-Dec-96 17:29:18 +cdefs.h
  279.     6940    3106 55.2% 11-Dec-96 17:29:18 +cpu.h
  280.     2887    1352 53.1% 11-Dec-96 17:29:18 +endian.h
  281.     3641    1590 56.3% 11-Dec-96 17:29:18 +float.h
  282.     4294    1697 60.4% 11-Dec-96 17:29:18 +frame.h
  283.     3776    1541 59.1% 11-Dec-96 17:29:18 +limits.h
  284.     2340    1164 50.2% 11-Dec-96 17:29:20 +mtpr.h
  285.     7547    3078 59.2% 11-Dec-96 17:29:20 +param.h
  286.     2893    1456 49.6% 11-Dec-96 17:29:20 +pcb.h
  287.     4005    1875 53.1% 11-Dec-96 17:29:20 +pmap.h
  288.     2205    1137 48.4% 11-Dec-96 17:29:20 +proc.h
  289.     3121    1344 56.9% 11-Dec-96 17:29:20 +psl.h
  290.      537     301 43.9% 11-Dec-96 17:29:20 +reg.h
  291.      149     126 15.4% 11-Dec-96 17:29:20 +signal.h
  292.     2568    1260 50.9% 11-Dec-96 17:29:20 +stdarg.h
  293.      258     200 22.4% 11-Dec-96 17:29:20 +trap.h
  294.     2708    1343 50.4% 11-Dec-96 17:29:20 +types.h
  295.     9082    4055 55.3% 11-Dec-96 17:29:22 +vmparam.h
  296.       81      81  0.0% 11-Dec-96 17:29:06 +malloc.h
  297.     9530    1903 80.0% 11-Dec-96 17:29:06 +math-68881.h
  298.     4553    1850 59.3% 11-Dec-96 17:29:06 +math.h
  299.     1882     951 49.4% 11-Dec-96 17:29:06 +memory.h
  300.     5285    2090 60.4% 11-Dec-96 17:29:06 +mpool.h
  301.     2939    1454 50.5% 11-Dec-96 17:29:06 +ndbm.h
  302.       62      58  6.4% 11-Dec-96 17:29:06 +ndir.h
  303.     1418     775 45.3% 11-Dec-96 17:29:22 +af.h
  304.     8419    3313 60.6% 11-Dec-96 17:29:22 +bpf.h
  305.     3941    1839 53.3% 11-Dec-96 17:29:22 +bpfdesc.h
  306.     7861    3091 60.6% 11-Dec-96 17:29:22 +if.h
  307.     2495    1163 53.3% 11-Dec-96 17:29:22 +if_arp.h
  308.     3495    1755 49.7% 11-Dec-96 17:29:22 +if_dl.h
  309.     2834    1314 53.6% 11-Dec-96 17:29:24 +if_llc.h
  310.     3368    1625 51.7% 11-Dec-96 17:29:24 +if_slvar.h
  311.     2961    1373 53.6% 11-Dec-96 17:29:24 +if_types.h
  312.     1835     961 47.6% 11-Dec-96 17:29:24 +netisr.h
  313.     4434    1900 57.1% 11-Dec-96 17:29:24 +radix.h
  314.     2194    1064 51.5% 11-Dec-96 17:29:24 +raw_cb.h
  315.    10673    4006 62.4% 11-Dec-96 17:29:24 +route.h
  316.     6740    2968 55.9% 11-Dec-96 17:29:24 +slcompress.h
  317.     4880    2014 58.7% 11-Dec-96 17:29:06 +netdb.h
  318.     2604    1236 52.5% 11-Dec-96 17:29:06 +netgroup.h
  319.     1610     836 48.0% 11-Dec-96 17:29:26 +icmp_var.h
  320.     2916    1339 54.0% 11-Dec-96 17:29:26 +if_ether.h
  321.     9067    3434 62.1% 11-Dec-96 17:29:28 +in.h
  322.     1892     956 49.4% 11-Dec-96 17:29:28 +in_pcb.h
  323.     1462     806 44.8% 11-Dec-96 17:29:28 +in_systm.h
  324.     2086    1033 50.4% 11-Dec-96 17:29:28 +in_var.h
  325.     5898    2528 57.1% 11-Dec-96 17:29:28 +ip.h
  326.     4307    1754 59.2% 11-Dec-96 17:29:28 +ip_icmp.h
  327.     3670    1654 54.9% 11-Dec-96 17:29:28 +ip_var.h
  328.     2575    1274 50.5% 11-Dec-96 17:29:28 +tcp.h
  329.     1295     736 43.1% 11-Dec-96 17:29:28 +tcp_debug.h
  330.     2585    1215 52.9% 11-Dec-96 17:29:28 +tcp_fsm.h
  331.     1643     856 47.9% 11-Dec-96 17:29:28 +tcp_seq.h
  332.     4786    2058 56.9% 11-Dec-96 17:29:30 +tcp_timer.h
  333.     8838    3326 62.3% 11-Dec-96 17:29:30 +tcp_var.h
  334.     1514     745 50.7% 11-Dec-96 17:29:30 +tcpip.h
  335.     1103     637 42.2% 11-Dec-96 17:29:30 +udp.h
  336.     1548     797 48.5% 11-Dec-96 17:29:30 +udp_var.h
  337.     1002     421 57.9% 11-Dec-96 17:29:30 +krpc.h
  338.     9957    3982 60.0% 11-Dec-96 17:29:30 +nfs.h
  339.     2953    1503 49.1% 11-Dec-96 17:29:30 +nfsdiskless.h
  340.     8391    3045 63.7% 11-Dec-96 17:29:32 +nfsm_subs.h
  341.     4468    1943 56.5% 11-Dec-96 17:29:32 +nfsmount.h
  342.     7071    2631 62.7% 11-Dec-96 17:29:32 +nfsnode.h
  343.     3918    1872 52.2% 11-Dec-96 17:29:32 +nfsrtt.h
  344.     3100    1489 51.9% 11-Dec-96 17:29:32 +nfsrvcache.h
  345.     8233    2887 64.9% 11-Dec-96 17:29:32 +nfsv2.h
  346.     7371    3075 58.2% 11-Dec-96 17:29:32 +nqnfs.h
  347.     3180    1470 53.7% 11-Dec-96 17:29:32 +rpcv2.h
  348.     3646    1598 56.1% 11-Dec-96 17:29:32 +xdr_subs.h
  349.     3674    1792 51.2% 11-Dec-96 17:29:06 +nlist.h
  350.     3256     967 70.3% 11-Dec-96 17:29:06 +packets.h
  351.       23      23  0.0% 11-Dec-96 17:29:06 +param.h
  352.     3034    1372 54.7% 11-Dec-96 17:29:06 +paths.h
  353.     4182    1899 54.5% 11-Dec-96 17:29:34 +dumprestore.h
  354.     3999    1920 51.9% 11-Dec-96 17:29:34 +routed.h
  355.     2687    1330 50.5% 11-Dec-96 17:29:34 +rwhod.h
  356.     4860    2120 56.3% 11-Dec-96 17:29:34 +talkd.h
  357.     3992    1779 55.4% 11-Dec-96 17:29:34 +timed.h
  358.     3745    1598 57.3% 11-Dec-96 17:29:08 +pwd.h
  359.     2210    1119 49.3% 11-Dec-96 17:29:08 +ranlib.h
  360.     3744    1725 53.9% 11-Dec-96 17:29:08 +regex.h
  361.     2836    1380 51.3% 11-Dec-96 17:29:08 +regexp.h
  362.     6234    2688 56.8% 11-Dec-96 17:29:08 +resolv.h
  363.     5285    2227 57.8% 11-Dec-96 17:29:34 +auth.h
  364.     2615    1391 46.8% 11-Dec-96 17:29:36 +auth_unix.h
  365.     9824    3527 64.0% 11-Dec-96 17:29:36 +clnt.h
  366.     3176    1447 54.4% 11-Dec-96 17:29:36 +pmap_clnt.h
  367.     3603    1664 53.8% 11-Dec-96 17:29:36 +pmap_prot.h
  368.     2047    1110 45.7% 11-Dec-96 17:29:36 +pmap_rmt.h
  369.     3252    1608 50.5% 11-Dec-96 17:29:36 +rpc.h
  370.     4485    1901 57.6% 11-Dec-96 17:29:36 +rpc_msg.h
  371.     9911    3731 62.3% 11-Dec-96 17:29:36 +svc.h
  372.     1746     984 43.6% 11-Dec-96 17:29:36 +svc_auth.h
  373.     1897    1032 45.5% 11-Dec-96 17:29:36 +types.h
  374.    11086    3863 65.1% 11-Dec-96 17:29:36 +xdr.h
  375.      320     210 34.3% 11-Dec-96 17:29:08 +search.h
  376.     2504    1230 50.8% 11-Dec-96 17:29:08 +setjmp.h
  377.     1936     983 49.2% 11-Dec-96 17:29:08 +sgtty.h
  378.     4145    1709 58.7% 11-Dec-96 17:29:08 +signal.h
  379.     4738    1694 64.2% 11-Dec-96 17:29:08 +stab.def
  380.     3266    1441 55.8% 11-Dec-96 17:29:08 +stab.h
  381.     1957     992 49.3% 11-Dec-96 17:29:08 +stdarg.h
  382.     2313    1168 49.5% 11-Dec-96 17:29:10 +stddef.h
  383.    12591    4702 62.6% 11-Dec-96 17:29:10 +stdio.h
  384.     6304    2244 64.4% 11-Dec-96 17:29:10 +stdlib.h
  385.     3860    1405 63.6% 11-Dec-96 17:29:10 +string.h
  386.     1889     953 49.5% 11-Dec-96 17:29:10 +strings.h
  387.     2293    1107 51.7% 11-Dec-96 17:29:10 +struct.h
  388.     2896    1465 49.4% 11-Dec-96 17:29:38 +acct.h
  389.     4682    2112 54.8% 11-Dec-96 17:29:38 +cdefs.h
  390.     2565    1306 49.0% 11-Dec-96 17:29:38 +dir.h
  391.     3185    1560 51.0% 11-Dec-96 17:29:38 +dirent.h
  392.     2288    1139 50.2% 11-Dec-96 17:29:38 +domain.h
  393.       19      19  0.0% 11-Dec-96 17:29:38 +errno.h
  394.     3107    1432 53.9% 11-Dec-96 17:29:38 +exec.h
  395.     6971    2853 59.0% 11-Dec-96 17:29:38 +fcntl.h
  396.     4324    1953 54.8% 11-Dec-96 17:29:38 +file.h
  397.     2818    1363 51.6% 11-Dec-96 17:29:40 +filio.h
  398.     3861    1685 56.3% 11-Dec-96 17:29:40 +gprof.h
  399.     3259    1529 53.0% 11-Dec-96 17:29:40 +ioccom.h
  400.     3262    1588 51.3% 11-Dec-96 17:29:40 +ioctl.h
  401.     7160    2758 61.4% 11-Dec-96 17:29:40 +ioctl_compat.h
  402.     3885    1290 66.7% 11-Dec-96 17:29:40 +ixnet_syscall.def
  403.     1051     582 44.6% 11-Dec-96 17:29:40 +ixnet_syscall.h
  404.     3113    1323 57.5% 11-Dec-96 17:29:40 +localedef.h
  405.    12144    4399 63.7% 11-Dec-96 17:29:40 +mbuf.h
  406.     3751    1736 53.7% 11-Dec-96 17:29:40 +mman.h
  407.    10073    3846 61.8% 11-Dec-96 17:29:40 +mount.h
  408.     4734    2045 56.8% 11-Dec-96 17:29:40 +mtio.h
  409.     8158    3680 54.8% 11-Dec-96 17:29:42 +param.h
  410.     9316    3818 59.0% 11-Dec-96 17:29:42 +proc.h
  411.     8947    3510 60.7% 11-Dec-96 17:29:42 +protosw.h
  412.     4133    1743 57.8% 11-Dec-96 17:29:42 +ptrace.h
  413.    10853    2572 76.3% 11-Dec-96 17:29:42 +queue.h
  414.     3944    1734 56.0% 11-Dec-96 17:29:42 +resource.h
  415.     8005    3351 58.1% 11-Dec-96 17:29:44 +signal.h
  416.    11688    4283 63.3% 11-Dec-96 17:29:44 +socket.h
  417.     8243    3326 59.6% 11-Dec-96 17:29:44 +socketvar.h
  418.     4947    1731 65.0% 11-Dec-96 17:29:44 +sockio.h
  419.     5506    2114 61.6% 11-Dec-96 17:29:44 +stat.h
  420.     1536     839 45.3% 11-Dec-96 17:29:44 +stdc.h
  421.    17064    4264 75.0% 11-Dec-96 17:29:44 +syscall.def
  422.     1035     575 44.4% 11-Dec-96 17:29:44 +syscall.h
  423.     3020    1419 53.0% 11-Dec-96 17:29:44 +syslimits.h
  424.     6390    2654 58.4% 11-Dec-96 17:29:44 +syslog.h
  425.     9058    3383 62.6% 11-Dec-96 17:29:44 +termios.h
  426.     5324    2178 59.0% 11-Dec-96 17:29:44 +time.h
  427.     2132    1090 48.8% 11-Dec-96 17:29:46 +timeb.h
  428.     2375    1155 51.3% 11-Dec-96 17:29:46 +times.h
  429.     2994    1378 53.9% 11-Dec-96 17:29:46 +tracecntl.h
  430.     6213    2736 55.9% 11-Dec-96 17:29:46 +tty.h
  431.     2716    1313 51.6% 11-Dec-96 17:29:46 +ttychars.h
  432.     6834    2609 61.8% 11-Dec-96 17:29:46 +ttycom.h
  433.     3373    1583 53.0% 11-Dec-96 17:29:46 +ttydefaults.h
  434.     2268    1111 51.0% 11-Dec-96 17:29:46 +ttydev.h
  435.     5783    2485 57.0% 11-Dec-96 17:29:46 +types.h
  436.     2332    1169 49.8% 11-Dec-96 17:29:46 +ucred.h
  437.     2628    1316 49.9% 11-Dec-96 17:29:46 +uio.h
  438.     2251    1170 48.0% 11-Dec-96 17:29:46 +un.h
  439.     3604    1636 54.6% 11-Dec-96 17:29:48 +unistd.h
  440.     1899     878 53.7% 11-Dec-96 17:29:48 +unix_socket.h
  441.     3500    1644 53.0% 11-Dec-96 17:29:48 +unpcb.h
  442.     3380    1578 53.3% 11-Dec-96 17:29:48 +user.h
  443.     1214     618 49.0% 11-Dec-96 17:29:48 +utsname.h
  444.     5552    2330 58.0% 11-Dec-96 17:29:48 +wait.h
  445.     5461    2443 55.2% 11-Dec-96 17:29:10 +sysexits.h
  446.       24      24  0.0% 11-Dec-96 17:29:10 +syslog.h
  447.       25      25  0.0% 11-Dec-96 17:29:10 +termios.h
  448.     3828    1743 54.4% 11-Dec-96 17:29:10 +time.h
  449.     3130    1503 51.9% 11-Dec-96 17:29:10 +ttyent.h
  450.     4808    1817 62.2% 11-Dec-96 17:29:10 +tzfile.h
  451.     7088    2404 66.0% 11-Dec-96 17:29:10 +unistd.h
  452.    13843    5247 62.0% 11-Dec-96 17:29:12 +user.h
  453.     2131    1088 48.9% 11-Dec-96 17:29:12 +utime.h
  454.     2735    1230 55.0% 11-Dec-96 17:29:12 +utmp.h
  455.      137     105 23.3% 11-Dec-96 17:29:12 +values.h
  456.     2064    1047 49.2% 11-Dec-96 17:29:12 +varargs.h
  457.     3199    1507 52.8% 11-Dec-96 17:29:12 +vis.h
  458.       22      22  0.0% 11-Dec-96 17:29:12 +wait.h
  459.     6645    2845 57.1% 11-Dec-96 17:28:32 +INSTALL
  460.     4771    1857 61.0% 11-Dec-96 17:28:34 +install.sh
  461.     7089    1588 77.5% 11-Dec-96 17:29:50 +amitcp.h
  462.     9034    1817 79.8% 11-Dec-96 17:29:50 +as225.h
  463.      377     254 32.6% 11-Dec-96 17:29:50 +create_header.c
  464.     3017    1461 51.5% 11-Dec-96 17:29:50 +getdomainname.c
  465.     5637    2107 62.6% 11-Dec-96 17:29:50 +getgrent.c
  466.     1430     742 48.1% 11-Dec-96 17:29:50 +gethostid.c
  467.     1702     739 56.5% 11-Dec-96 17:29:50 +gethostnamadr.c
  468.     1245     682 45.2% 11-Dec-96 17:29:52 +getnetbyaddr.c
  469.     1252     687 45.1% 11-Dec-96 17:29:52 +getnetbyname.c
  470.     4527    1730 61.7% 11-Dec-96 17:29:52 +getnetent.c
  471.     1297     686 47.1% 11-Dec-96 17:29:52 +getproto.c
  472.     4842    1777 63.3% 11-Dec-96 17:29:52 +getprotoent.c
  473.     1321     703 46.7% 11-Dec-96 17:29:52 +getprotoname.c
  474.     5109    1328 74.0% 11-Dec-96 17:29:52 +getpwent.c
  475.     1369     727 46.8% 11-Dec-96 17:29:52 +getservbyname.c
  476.     1333     705 47.1% 11-Dec-96 17:29:52 +getservbyport.c
  477.     5130    1807 64.7% 11-Dec-96 17:29:52 +getservent.c
  478.     3584    1685 52.9% 11-Dec-96 17:29:52 +herror.c
  479.     3499    1584 54.7% 11-Dec-96 17:29:52 +initgroups.c
  480.     1928     986 48.8% 11-Dec-96 17:29:52 +ix_panic.c
  481.     4019    1760 56.2% 11-Dec-96 17:29:54 +ixnet.h
  482.     1420     701 50.6% 11-Dec-96 17:29:54 +ixnet_close.c
  483.     1010     566 43.9% 11-Dec-96 17:29:54 +ixnet_expunge.c
  484.     2282    1090 52.2% 11-Dec-96 17:29:54 +ixnet_init.c
  485.     5199    2102 59.5% 20-Dec-96 13:32:10 +ixnet_open.c
  486.     2416    1081 55.2% 11-Dec-96 17:29:50 +Makefile.in
  487.     2932    1282 56.2% 11-Dec-96 17:29:54 +misc.c
  488.     1186     563 52.5% 11-Dec-96 17:29:54 +parse_version.c
  489.     1791     912 49.0% 11-Dec-96 17:29:54 +set_errno.c
  490.     2820    1333 52.7% 11-Dec-96 17:29:54 +sethostent.c
  491.     2094    1041 50.2% 11-Dec-96 17:29:54 +siglaunch.c
  492.    18971    4595 75.7% 11-Dec-96 17:29:54 +socket.c
  493.     9126    3433 62.3% 11-Dec-96 17:29:56 +start.s
  494.     4216    1635 61.2% 11-Dec-96 17:29:56 +syslog.c
  495.     4518    1018 77.4% 11-Dec-96 17:29:56 +usergroup.h
  496.     1724     928 46.1% 11-Dec-96 17:29:56 +__amiga_filehandle.c
  497.     1443     666 53.8% 11-Dec-96 17:29:56 +__amiga_ids.c
  498.     3030    1427 52.9% 20-Dec-96 13:32:12 +__close.c
  499.     4507    1965 56.4% 11-Dec-96 17:29:58 +__fioctl.c
  500.     3522    1469 58.2% 11-Dec-96 17:29:58 +__fselect.c
  501.     7594    3007 60.4% 11-Dec-96 17:29:58 +__fstat.c
  502.     1346     713 47.0% 11-Dec-96 17:30:00 +__init_std_packet.c
  503.     1657     817 50.6% 11-Dec-96 17:30:00 +__ioctl.c
  504.     3229    1265 60.8% 11-Dec-96 17:30:00 +__ioerr_to_errno.c
  505.    10896    4081 62.5% 11-Dec-96 17:30:00 +__load_seg.c
  506.     1982     956 51.7% 11-Dec-96 17:30:00 +__lock.c
  507.     1925     971 49.5% 11-Dec-96 17:30:00 +__make_link.c
  508.     1478     784 46.9% 11-Dec-96 17:30:00 +__mclose.c
  509.     1549     804 48.0% 11-Dec-96 17:30:00 +__mread.c
  510.     1460     785 46.2% 11-Dec-96 17:30:00 +__mselect.c
  511.      228     179 21.4% 11-Dec-96 17:30:00 +__must_recompile.c
  512.     3394    1586 53.2% 11-Dec-96 17:30:00 +__open.c
  513.    15757    5798 63.2% 11-Dec-96 17:30:00 +__plock.c
  514.     4901    2216 54.7% 11-Dec-96 17:30:02 +__read.c
  515.     7576    2774 63.3% 11-Dec-96 17:30:02 +__tioctl.c
  516.     2176    1009 53.6% 15-Dec-96 12:47:22 +__unlock.c
  517.     2541    1082 57.4% 11-Dec-96 17:30:02 +__wait_packet.c
  518.     3209    1440 55.1% 11-Dec-96 17:30:02 +__write.c
  519.    14107    5542 60.7% 11-Dec-96 17:30:02 +_cli_parse.c
  520.     9344    3455 63.0% 11-Dec-96 17:30:02 +_main.c
  521.     4014    1832 54.3% 11-Dec-96 17:30:02 +_wb_parse.c
  522.     2262    1085 52.0% 11-Dec-96 17:30:02 +access.c
  523.     9816    3505 64.2% 11-Dec-96 17:30:02 +buddy-alloc.c
  524.     4471    1957 56.2% 11-Dec-96 17:30:02 +chdir.c
  525.     2872    1196 58.3% 11-Dec-96 17:30:04 +chmod.c
  526.     2084    1043 49.9% 11-Dec-96 17:30:04 +chown.c
  527.     1613     835 48.2% 11-Dec-96 17:30:04 +close.c
  528.     1306     710 45.6% 11-Dec-96 17:30:04 +closedir.c
  529.     6157    2569 58.2% 11-Dec-96 17:30:04 +convert_dir.c
  530.     1217     681 44.0% 11-Dec-96 17:30:04 +creat.c
  531.      741     369 50.2% 11-Dec-96 17:30:04 +create_header.c
  532.     1576     809 48.6% 11-Dec-96 17:30:04 +createextio.c
  533.     1853     939 49.3% 11-Dec-96 17:30:04 +createport.c
  534.     1299     705 45.7% 11-Dec-96 17:30:04 +createstdio.c
  535.     3483    1644 52.7% 11-Dec-96 17:30:04 +createtask.c
  536.     1346     689 48.8% 11-Dec-96 17:30:04 +debugstub.c
  537.     2125    1073 49.5% 11-Dec-96 17:30:06 +defs.h
  538.     1398     757 45.8% 11-Dec-96 17:30:06 +deleteextio.c
  539.     1434     768 46.4% 11-Dec-96 17:30:06 +deleteport.c
  540.     1211     670 44.6% 11-Dec-96 17:30:06 +deletestdio.c
  541.     1289     706 45.2% 11-Dec-96 17:30:06 +deletetask.c
  542.     1830     980 46.4% 11-Dec-96 17:30:06 +exit.c
  543.     1555     826 46.8% 11-Dec-96 17:30:06 +fchdir.c
  544.     1413     781 44.7% 11-Dec-96 17:30:06 +fchmod.c
  545.     1652     842 49.0% 11-Dec-96 17:30:06 +fchown.c
  546.     1134     622 45.1% 11-Dec-96 17:30:06 +fsync.c
  547.     1517     805 46.9% 11-Dec-96 17:30:06 +ftime.c
  548.     2269    1090 51.9% 11-Dec-96 17:30:06 +ftruncate.c
  549.     1905     955 49.8% 11-Dec-96 17:30:06 +get_file.c
  550.     3273    1585 51.5% 11-Dec-96 17:30:08 +getpass.c
  551.     2380    1149 51.7% 11-Dec-96 17:30:08 +getpriority.c
  552.     2329    1036 55.5% 11-Dec-96 17:30:08 +getrlimit.c
  553.     1857     964 48.0% 11-Dec-96 17:30:08 +gettimeofday.c
  554.     4054    1684 58.4% 11-Dec-96 17:30:08 +getusershell.c
  555.    11268    3176 71.8% 11-Dec-96 17:30:08 +group.c
  556.     3823    1751 54.1% 11-Dec-96 17:30:08 +hwck.c
  557.     1858     968 47.9% 11-Dec-96 17:30:08 +ioctl.c
  558.     1322     733 44.5% 11-Dec-96 17:30:08 +isatty.c
  559.     4032    1745 56.7% 11-Dec-96 17:30:08 +ix_close.c
  560.     4091    2016 50.7% 11-Dec-96 17:30:08 +ix_exec_entry.c
  561.     2392    1127 52.8% 11-Dec-96 17:30:08 +ix_expunge.c
  562.     3389    1541 54.5% 11-Dec-96 17:30:10 +ix_get_vars2.c
  563.     5354    2107 60.6% 20-Dec-96 13:32:14 +ix_init.c
  564.     6978    2663 61.8% 11-Dec-96 17:30:10 +ix_open.c
  565.     3044    1520 50.0% 11-Dec-96 17:30:10 +ix_resident.c
  566.     1613     550 65.9% 11-Dec-96 17:30:10 +ix_settings.c
  567.     3697    1544 58.2% 11-Dec-96 17:30:10 +ix_sigwinch.c
  568.     4285    1908 55.4% 11-Dec-96 17:30:10 +ix_sleep.c
  569.     5158    2454 52.4% 15-Dec-96 12:47:22 +ix_startup.c
  570.     4443    2029 54.3% 11-Dec-96 17:30:10 +ix_timer.c
  571.     9178    3616 60.6% 11-Dec-96 17:30:10 +ixemul.h
  572.    10297    3066 70.2% 11-Dec-96 17:30:10 +ixnet_stubs.c
  573.     3770    1364 63.8% 11-Dec-96 17:30:12 +ixprotos.h
  574.     9338    3471 62.8% 26-Dec-96 09:06:04 +kern_descrip.c
  575.    24195    8264 65.8% 11-Dec-96 17:30:12 +kern_sig.c
  576.     5863    2406 58.9% 11-Dec-96 17:30:12 +kern_time.c
  577.     2597    1218 53.0% 11-Dec-96 17:30:12 +kmalloc.c
  578.     1243     549 55.8% 11-Dec-96 17:30:12 +kprintf.h
  579.     1528     829 45.7% 11-Dec-96 17:30:12 +link.c
  580.     7436    2517 66.1% 11-Dec-96 17:30:12 +lseek.c
  581.    21404    8004 62.6% 11-Dec-96 17:30:12 +machdep.c
  582.     4912    1891 61.5% 15-Dec-96 12:47:22 +Makefile.in
  583.     7074    2619 62.9% 11-Dec-96 17:30:12 +malloc.c
  584.     9895    1820 81.6% 11-Dec-96 17:30:12 +mathsup.c
  585.     3456    1377 60.1% 11-Dec-96 17:30:14 +misc.c
  586.     2286    1169 48.8% 11-Dec-96 17:30:14 +mkdir.c
  587.     3111    1209 61.1% 11-Dec-96 17:30:14 +mmap.c
  588.    17944    4850 72.9% 11-Dec-96 17:30:14 +multiuser.h
  589.     4292     873 79.6% 11-Dec-96 17:30:14 +multiuser_inlines.h
  590.     2455    1250 49.0% 11-Dec-96 17:30:14 +nice.c
  591.     1305     688 47.2% 11-Dec-96 17:30:14 +obsolete.c
  592.     7949    3389 57.3% 15-Dec-96 12:47:24 +open.c
  593.     1959     944 51.8% 11-Dec-96 17:30:14 +opendir.c
  594.     1645     717 56.4% 11-Dec-96 17:30:14 +parse_version.c
  595.     3463    1515 56.2% 15-Dec-96 12:47:24 +pipe.c
  596.     3247    1280 60.5% 26-Dec-96 09:06:04 +posixconf.c
  597.     1409     767 45.5% 11-Dec-96 17:30:16 +profil.c
  598.    13151    4317 67.1% 11-Dec-96 17:30:16 +ptrace.c
  599.     1560     821 47.3% 11-Dec-96 17:30:16 +read.c
  600.     2003     956 52.2% 11-Dec-96 17:30:16 +readdir.c
  601.     4107    1764 57.0% 11-Dec-96 17:30:16 +readlink.c
  602.     1424     766 46.2% 11-Dec-96 17:30:16 +readv.c
  603.     2887    1248 56.7% 26-Dec-96 09:06:04 +rename.c
  604.     1259     696 44.7% 11-Dec-96 17:30:16 +rewinddir.c
  605.     1271     709 44.2% 11-Dec-96 17:30:16 +rmdir.c
  606.     1271     702 44.7% 11-Dec-96 17:30:16 +seekdir.c
  607.     9431    3387 64.0% 11-Dec-96 17:30:16 +select.c
  608.     1934     980 49.3% 11-Dec-96 17:30:16 +select.h
  609.     1573     756 51.9% 11-Dec-96 17:30:18 +set_socket_stdio.c
  610.     2436    1183 51.4% 11-Dec-96 17:30:18 +setpriority.c
  611.     1544     832 46.1% 11-Dec-96 17:30:18 +setrlimit.c
  612.     1656     871 47.4% 11-Dec-96 17:30:18 +settimeofday.c
  613.    11445    2686 76.5% 11-Dec-96 17:30:18 +socket.c
  614.    11712    3511 70.0% 11-Dec-96 17:30:18 +stackextend.c
  615.    11208    3776 66.3% 15-Dec-96 12:47:24 +start.s
  616.    10223    3734 63.4% 11-Dec-96 17:30:18 +stat.c
  617.     9637    2882 70.0% 11-Dec-96 17:30:18 +statfs.c
  618.     2462    1139 53.7% 11-Dec-96 17:30:18 +symlink.c
  619.     5591    2475 55.7% 11-Dec-96 17:30:18 +syslog.c
  620.     1270     703 44.6% 11-Dec-96 17:30:20 +telldir.c
  621.     8487    3157 62.8% 15-Dec-96 12:47:26 +tracecntl.c
  622.    16381    5816 64.4% 11-Dec-96 17:30:20 +trap.s
  623.     1317     712 45.9% 11-Dec-96 17:30:20 +truncate.c
  624.     2312    1026 55.6% 11-Dec-96 17:30:20 +umask.c
  625.     2756    1375 50.1% 15-Dec-96 12:47:26 +unlink.c
  626.    19350    5087 73.7% 01-Jan-97 14:04:42 +unp.c
  627.     1492     447 70.0% 11-Dec-96 17:30:20 +unp.h
  628.    10971    3118 71.5% 11-Dec-96 17:30:20 +user.c
  629.     1399     731 47.7% 11-Dec-96 17:30:20 +utime.c
  630.     2691    1370 49.0% 11-Dec-96 17:30:22 +utimes.c
  631.    23006    8434 63.3% 11-Dec-96 17:30:22 +vfork.c
  632.     1532     809 47.1% 11-Dec-96 17:30:22 +write.c
  633.     1434     767 46.5% 11-Dec-96 17:30:22 +writev.c
  634.    12647    4652 63.2% 11-Dec-96 17:30:22 +crt0.c
  635.     9259    3482 62.3% 11-Dec-96 17:30:22 +gmon.c
  636.     3582    1636 54.3% 11-Dec-96 17:30:24 +gmon.h
  637.     2765    1035 62.5% 11-Dec-96 17:30:22 +Makefile.in
  638.       54      54  0.0% 11-Dec-96 17:30:24 +v1.c
  639.    14910    3633 75.6% 11-Dec-96 17:28:32 +Makefile.in
  640.      939     454 51.6% 11-Dec-96 17:30:24 +Makefile.in
  641.     2955    1485 49.7% 11-Dec-96 17:30:28 +intro.1
  642.     2500    1073 57.0% 11-Dec-96 17:30:28 +ixrun.1
  643.      688     406 40.9% 11-Dec-96 17:30:28 +ixstack.1
  644.     4288    1958 54.3% 11-Dec-96 17:30:28 +ixtrace.1
  645.     3784    1824 51.7% 11-Dec-96 17:30:30 +_exit.2
  646.     5144    2350 54.3% 11-Dec-96 17:30:30 +accept.2
  647.     4602    2162 53.0% 11-Dec-96 17:30:30 +access.2
  648.     3965    1966 50.4% 11-Dec-96 17:30:30 +adjtime.2
  649.     4266    2062 51.6% 11-Dec-96 17:30:30 +bind.2
  650.     4215    1904 54.8% 11-Dec-96 17:30:30 +chdir.2
  651.     5918    2577 56.4% 11-Dec-96 17:30:32 +chmod.2
  652.     4636    2135 53.9% 11-Dec-96 17:30:32 +chown.2
  653.     3582    1779 50.3% 11-Dec-96 17:30:32 +chroot.2
  654.     4142    2009 51.4% 11-Dec-96 17:30:32 +close.2
  655.     5052    2313 54.2% 11-Dec-96 17:30:32 +connect.2
  656.     3933    1906 51.5% 11-Dec-96 17:30:32 +dup.2
  657.     8782    3554 59.5% 11-Dec-96 17:30:32 +execve.2
  658.    12582    4767 62.1% 11-Dec-96 17:30:32 +fcntl.2
  659.     4708    2235 52.5% 11-Dec-96 17:30:32 +flock.2
  660.     3955    1908 51.7% 11-Dec-96 17:30:32 +fork.2
  661.     2972    1549 47.8% 11-Dec-96 17:30:32 +fsync.2
  662.     4663    2151 53.8% 11-Dec-96 17:30:32 +getfsstat.2
  663.     2940    1432 51.2% 11-Dec-96 17:30:34 +getgid.2
  664.     3243    1569 51.6% 11-Dec-96 17:30:34 +getgroups.2
  665.     5019    2261 54.9% 11-Dec-96 17:30:34 +getitimer.2
  666.     4337    2053 52.6% 11-Dec-96 17:30:34 +getlogin.2
  667.     3143    1575 49.8% 11-Dec-96 17:30:34 +getpeername.2
  668.     3459    1701 50.8% 11-Dec-96 17:30:34 +getpgrp.2
  669.     2681    1344 49.8% 11-Dec-96 17:30:34 +getpid.2
  670.     4205    1913 54.5% 11-Dec-96 17:30:34 +getpriority.2
  671.     6243    2749 55.9% 11-Dec-96 17:30:34 +getrlimit.2
  672.     6149    2499 59.3% 11-Dec-96 17:30:34 +getrusage.2
  673.     3103    1576 49.2% 11-Dec-96 17:30:34 +getsockname.2
  674.    11642    4535 61.0% 11-Dec-96 17:30:34 +getsockopt.2
  675.     4043    1985 50.9% 11-Dec-96 17:30:34 +gettimeofday.2
  676.     2876    1410 50.9% 11-Dec-96 17:30:36 +getuid.2
  677.    25884    9584 62.9% 11-Dec-96 17:30:36 +intro.2
  678.     3312    1674 49.4% 11-Dec-96 17:30:36 +ioctl.2
  679.     4687    2088 55.4% 11-Dec-96 17:30:36 +kill.2
  680.     4766    2139 55.1% 11-Dec-96 17:30:36 +link.2
  681.     3383    1673 50.5% 11-Dec-96 17:30:36 +listen.2
  682.     3855    1856 51.8% 11-Dec-96 17:30:36 +lseek.2
  683.     4189    1929 53.9% 11-Dec-96 17:30:36 +mkdir.2
  684.     4334    1993 54.0% 11-Dec-96 17:30:36 +mkfifo.2
  685.     4448    2050 53.9% 11-Dec-96 17:30:36 +mknod.2
  686.     7875    3221 59.0% 11-Dec-96 17:30:36 +open.2
  687.     5126    2262 55.8% 11-Dec-96 17:30:38 +pathconf.2
  688.     3675    1846 49.7% 11-Dec-96 17:30:38 +pipe.2
  689.     4101    1981 51.6% 11-Dec-96 17:30:38 +profil.2
  690.    10282    3649 64.5% 11-Dec-96 17:30:38 +ptrace.2
  691.     5186    2418 53.3% 11-Dec-96 17:30:38 +read.2
  692.     3388    1677 50.5% 11-Dec-96 17:30:38 +readlink.2
  693.     8103    3564 56.0% 11-Dec-96 17:30:38 +recv.2
  694.     5804    2538 56.2% 11-Dec-96 17:30:38 +rename.2
  695.     3774    1801 52.2% 11-Dec-96 17:30:38 +rmdir.2
  696.     5867    2652 54.7% 11-Dec-96 17:30:38 +select.2
  697.     4941    2325 52.9% 11-Dec-96 17:30:38 +send.2
  698.     2998    1510 49.6% 11-Dec-96 17:30:38 +setgroups.2
  699.     3991    1715 57.0% 11-Dec-96 17:30:38 +setuid.2
  700.     2871    1423 50.4% 11-Dec-96 17:30:40 +shutdown.2
  701.    11789    4582 61.1% 11-Dec-96 17:30:40 +sigaction.2
  702.     2895    1438 50.3% 11-Dec-96 17:30:40 +sigpending.2
  703.     3846    1797 53.2% 11-Dec-96 17:30:40 +sigprocmask.2
  704.     3529    1751 50.3% 11-Dec-96 17:30:40 +sigreturn.2
  705.     2292    1168 49.0% 11-Dec-96 17:30:40 +sigstack.2
  706.     3110    1567 49.6% 11-Dec-96 17:30:40 +sigsuspend.2
  707.     7813    3452 55.8% 11-Dec-96 17:30:40 +socket.2
  708.     3299    1595 51.6% 11-Dec-96 17:30:40 +socketpair.2
  709.     8013    3287 58.9% 11-Dec-96 17:30:40 +stat.2
  710.     4924    2174 55.8% 11-Dec-96 17:30:40 +statfs.2
  711.     4650    1975 57.5% 11-Dec-96 17:30:40 +symlink.2
  712.     2810    1451 48.3% 11-Dec-96 17:30:42 +sync.2
  713.     3992    1915 52.0% 11-Dec-96 17:30:42 +truncate.2
  714.     3052    1526 50.0% 11-Dec-96 17:30:42 +umask.2
  715.     4121    1942 52.8% 11-Dec-96 17:30:42 +unlink.2
  716.     4170    1925 53.8% 11-Dec-96 17:30:42 +utimes.2
  717.     4040    2015 50.1% 11-Dec-96 17:30:42 +vfork.2
  718.     7884    3095 60.7% 11-Dec-96 17:30:42 +wait.2
  719.     5759    2649 54.0% 11-Dec-96 17:30:42 +write.2
  720.     2653    1351 49.0% 11-Dec-96 17:30:44 +abort.3
  721.     2632    1308 50.3% 11-Dec-96 17:30:44 +abs.3
  722.     2483    1244 49.8% 11-Dec-96 17:30:44 +acos.3
  723.     2490    1256 49.5% 11-Dec-96 17:30:44 +acosh.3
  724.     2920    1488 49.0% 11-Dec-96 17:30:44 +alarm.3
  725.     2838    1428 49.6% 11-Dec-96 17:30:44 +alloca.3
  726.     2506    1260 49.7% 11-Dec-96 17:30:44 +asin.3
  727.     2588    1272 50.8% 11-Dec-96 17:30:44 +asinh.3
  728.     2903    1448 50.1% 11-Dec-96 17:30:44 +assert.3
  729.     2527    1270 49.7% 11-Dec-96 17:30:44 +atan.3
  730.     2502    1259 49.6% 11-Dec-96 17:30:46 +atanh.3
  731.     2960    1505 49.1% 11-Dec-96 17:30:46 +atexit.3
  732.     2644    1343 49.2% 11-Dec-96 17:30:46 +atof.3
  733.     2666    1360 48.9% 11-Dec-96 17:30:46 +atoi.3
  734.     2668    1361 48.9% 11-Dec-96 17:30:46 +atol.3
  735.     2657    1338 49.6% 11-Dec-96 17:30:46 +bcmp.3
  736.     2551    1281 49.7% 11-Dec-96 17:30:46 +bcopy.3
  737.     4816    1968 59.1% 11-Dec-96 17:30:46 +bitstring.3
  738.     3444    1669 51.5% 11-Dec-96 17:30:46 +bsearch.3
  739.     3445    1523 55.7% 11-Dec-96 17:30:46 +bstring.3
  740.     8291    3597 56.6% 11-Dec-96 17:30:46 +btree.3
  741.     2964    1478 50.1% 11-Dec-96 17:30:46 +byteorder.3
  742.     2447    1239 49.3% 11-Dec-96 17:30:48 +bzero.3
  743.     2734    1383 49.4% 11-Dec-96 17:30:48 +calloc.3
  744.     2429    1226 49.5% 11-Dec-96 17:30:48 +ceil.3
  745.     2671    1346 49.6% 11-Dec-96 17:30:48 +clock.3
  746.     2619    1319 49.6% 11-Dec-96 17:30:48 +cos.3
  747.     2457    1219 50.3% 11-Dec-96 17:30:48 +cosh.3
  748.     2535    1319 47.9% 11-Dec-96 17:30:48 +creat.3
  749.     6851    3014 56.0% 11-Dec-96 17:30:48 +crypt.3
  750.     3158    1584 49.8% 11-Dec-96 17:30:48 +ctermid.3
  751.     5053    2152 57.4% 11-Dec-96 17:30:48 +ctime.3
  752.     3078    1414 54.0% 11-Dec-96 17:30:48 +ctype.3
  753.     6003    2467 58.9% 11-Dec-96 17:30:48 +curses.3
  754.     3922    1824 53.4% 11-Dec-96 17:30:48 +cuserid.3
  755.    13550    4840 64.2% 11-Dec-96 17:30:50 +dbopen.3
  756.     4791    2105 56.0% 11-Dec-96 17:30:50 +directory.3
  757.     2530    1277 49.5% 11-Dec-96 17:30:50 +div.3
  758.     2497    1274 48.9% 11-Dec-96 17:30:50 +end.3
  759.     7017    2780 60.3% 11-Dec-96 17:30:50 +exec.3
  760.     2859    1421 50.2% 11-Dec-96 17:30:50 +exit.3
  761.     6838    3039 55.5% 11-Dec-96 17:30:50 +exp.3
  762.     2523    1245 50.6% 11-Dec-96 17:30:50 +fabs.3
  763.     3091    1561 49.4% 11-Dec-96 17:30:50 +fclose.3
  764.     3361    1541 54.1% 11-Dec-96 17:30:50 +ferror.3
  765.     3503    1723 50.8% 11-Dec-96 17:30:50 +fflush.3
  766.     2510    1266 49.5% 11-Dec-96 17:30:52 +ffs.3
  767.     3865    1899 50.8% 11-Dec-96 17:30:52 +fgetln.3
  768.     4194    2002 52.2% 11-Dec-96 17:30:52 +fgets.3
  769.     2440    1232 49.5% 11-Dec-96 17:30:52 +floor.3
  770.     4015    1865 53.5% 11-Dec-96 17:30:52 +fnmatch.3
  771.     6014    2426 59.6% 11-Dec-96 17:30:52 +fopen.3
  772.     3181    1547 51.3% 11-Dec-96 17:30:52 +fputs.3
  773.     3464    1632 52.8% 11-Dec-96 17:30:52 +fread.3
  774.     2892    1440 50.2% 11-Dec-96 17:30:52 +free.3
  775.     2912    1469 49.5% 11-Dec-96 17:30:52 +frexp.3
  776.     4829    2145 55.5% 11-Dec-96 17:30:52 +fseek.3
  777.     2978    1527 48.7% 11-Dec-96 17:30:52 +ftime.3
  778.    18930    6031 68.1% 11-Dec-96 17:30:52 +fts.3
  779.     4946    2251 54.4% 11-Dec-96 17:30:54 +funopen.3
  780.     3895    1847 52.5% 11-Dec-96 17:30:54 +getc.3
  781.     4328    2068 52.2% 11-Dec-96 17:30:54 +getcwd.3
  782.     2545    1299 48.9% 11-Dec-96 17:30:54 +getdtablesize.3
  783.     4190    1935 53.8% 11-Dec-96 17:30:54 +getenv.3
  784.     5291    2338 55.8% 11-Dec-96 17:30:54 +getgrent.3
  785.     7092    3072 56.6% 11-Dec-96 17:30:54 +gethostbyname.3
  786.     2849    1423 50.0% 11-Dec-96 17:30:54 +gethostid.3
  787.     3360    1688 49.7% 11-Dec-96 17:30:54 +gethostname.3
  788.     3483    1674 51.9% 11-Dec-96 17:30:54 +getmntinfo.3
  789.     4363    2023 53.6% 11-Dec-96 17:30:54 +getnetent.3
  790.     6719    2946 56.1% 11-Dec-96 17:30:54 +getopt.3
  791.     2497    1278 48.8% 11-Dec-96 17:30:54 +getpagesize.3
  792.     3180    1593 49.9% 11-Dec-96 17:30:56 +getpass.3
  793.     4131    1893 54.1% 11-Dec-96 17:30:56 +getprotoent.3
  794.     5887    2608 55.6% 11-Dec-96 17:30:56 +getpwent.3
  795.     4449    2051 53.8% 11-Dec-96 17:30:56 +getservent.3
  796.     4284    1977 53.8% 11-Dec-96 17:30:56 +getsubopt.3
  797.     5613    2499 55.4% 11-Dec-96 17:30:56 +getttyent.3
  798.     3105    1490 52.0% 11-Dec-96 17:30:56 +getusershell.3
  799.    10856    4397 59.4% 11-Dec-96 17:30:56 +glob.3
  800.     5268    2513 52.2% 11-Dec-96 17:30:56 +hash.3
  801.     2741    1348 50.8% 11-Dec-96 17:30:56 +index.3
  802.     5919    2469 58.2% 11-Dec-96 17:30:56 +inet.3
  803.     3001    1475 50.8% 11-Dec-96 17:30:56 +initgroups.3
  804.     2336    1210 48.2% 11-Dec-96 17:30:58 +insque.3
  805.     5125    2279 55.5% 11-Dec-96 17:30:58 +intro.3
  806.     2880    1384 51.9% 11-Dec-96 17:30:58 +isalnum.3
  807.     3145    1472 53.1% 11-Dec-96 17:30:58 +isalpha.3
  808.     2604    1282 50.7% 11-Dec-96 17:30:58 +isascii.3
  809.     2820    1357 51.8% 11-Dec-96 17:30:58 +iscntrl.3
  810.     2848    1369 51.9% 11-Dec-96 17:30:58 +isdigit.3
  811.     2869    1388 51.6% 11-Dec-96 17:30:58 +isgraph.3
  812.     2607    1325 49.1% 11-Dec-96 17:30:58 +isinf.3
  813.     3082    1468 52.3% 11-Dec-96 17:30:58 +islower.3
  814.     2872    1382 51.8% 11-Dec-96 17:30:58 +isprint.3
  815.     2887    1397 51.6% 11-Dec-96 17:30:58 +ispunct.3
  816.     3301    1567 52.5% 11-Dec-96 17:30:58 +isspace.3
  817.     3074    1465 52.3% 11-Dec-96 17:31:00 +isupper.3
  818.     2847    1371 51.8% 11-Dec-96 17:31:00 +isxdigit.3
  819.     3400    1654 51.3% 11-Dec-96 17:31:00 +killpg.3
  820.     2579    1285 50.1% 11-Dec-96 17:31:00 +labs.3
  821.     2773    1410 49.1% 11-Dec-96 17:31:00 +ldexp.3
  822.     2640    1336 49.3% 11-Dec-96 17:31:00 +ldiv.3
  823.     4307    2110 51.0% 11-Dec-96 17:31:00 +linkaddr.3
  824.     3365    1687 49.8% 11-Dec-96 17:31:00 +malloc.3
  825.     2609    1307 49.9% 11-Dec-96 17:31:00 +memccpy.3
  826.     2814    1406 50.0% 11-Dec-96 17:31:02 +memchr.3
  827.     2933    1479 49.5% 11-Dec-96 17:31:02 +memcmp.3
  828.     2872    1421 50.5% 11-Dec-96 17:31:02 +memcpy.3
  829.     2729    1374 49.6% 11-Dec-96 17:31:02 +memmove.3
  830.     2658    1295 51.2% 11-Dec-96 17:31:02 +memory.3
  831.     2552    1304 48.9% 11-Dec-96 17:31:02 +memset.3
  832.     3849    1798 53.2% 11-Dec-96 17:31:02 +mktemp.3
  833.     2774    1386 50.0% 11-Dec-96 17:31:02 +modf.3
  834.     6087    2435 59.9% 11-Dec-96 17:31:02 +mpool.3
  835.     4948    2079 57.9% 11-Dec-96 17:31:02 +newctime.3
  836.     5337    2144 59.8% 11-Dec-96 17:31:02 +newtzset.3
  837.     2691    1359 49.4% 11-Dec-96 17:31:02 +nice.3
  838.     4314    2090 51.5% 11-Dec-96 17:31:04 +ns.3
  839.     2708    1395 48.4% 11-Dec-96 17:31:04 +pause.3
  840.     2974    1487 50.0% 11-Dec-96 17:31:04 +perror.3
  841.     4805    2172 54.7% 11-Dec-96 17:31:04 +popen.3
  842.    14593    5282 63.8% 11-Dec-96 17:31:04 +printf.3
  843.     3260    1595 51.0% 11-Dec-96 17:31:04 +psignal.3
  844.     3645    1743 52.1% 11-Dec-96 17:31:04 +putc.3
  845.     2531    1265 50.0% 11-Dec-96 17:31:04 +qabs.3
  846.     2583    1315 49.0% 11-Dec-96 17:31:04 +qdiv.3
  847.     6213    2744 55.8% 11-Dec-96 17:31:04 +qsort.3
  848.    13068    3219 75.3% 11-Dec-96 17:31:04 +queue.3
  849.     4781    2288 52.1% 11-Dec-96 17:31:04 +radixsort.3
  850.     2785    1396 49.8% 11-Dec-96 17:31:06 +raise.3
  851.     2950    1485 49.6% 11-Dec-96 17:31:06 +rand.3
  852.     5591    2515 55.0% 11-Dec-96 17:31:06 +random.3
  853.     6194    2761 55.4% 11-Dec-96 17:31:06 +rcmd.3
  854.     3260    1536 52.8% 11-Dec-96 17:31:06 +realloc.3
  855.     6360    2808 55.8% 11-Dec-96 17:31:06 +recno.3
  856.    16823    6596 60.7% 11-Dec-96 17:31:06 +regex.3
  857.     9073    3731 58.8% 11-Dec-96 17:31:06 +regexp.3
  858.     2809    1428 49.1% 11-Dec-96 17:31:06 +remove.3
  859.     8869    3595 59.4% 11-Dec-96 17:31:06 +resolver.3
  860.     2727    1340 50.8% 11-Dec-96 17:31:06 +rindex.3
  861.    10432    3889 62.7% 11-Dec-96 17:31:08 +scanf.3
  862.     5622    2545 54.7% 11-Dec-96 17:31:08 +setbuf.3
  863.     4864    2114 56.5% 11-Dec-96 17:31:08 +setjmp.3
  864.     3459    1691 51.1% 11-Dec-96 17:31:08 +setregid.3
  865.     3320    1635 50.7% 11-Dec-96 17:31:08 +setreuid.3
  866.     2871    1453 49.3% 11-Dec-96 17:31:08 +sigblock.3
  867.     4014    1878 53.2% 11-Dec-96 17:31:08 +siginterrupt.3
  868.     8035    3349 58.3% 11-Dec-96 17:31:08 +signal.3
  869.     2769    1402 49.3% 11-Dec-96 17:31:08 +sigpause.3
  870.     2825    1429 49.4% 11-Dec-96 17:31:08 +sigsetmask.3
  871.     3898    1703 56.3% 11-Dec-96 17:31:08 +sigsetops.3
  872.    10631    4232 60.1% 11-Dec-96 17:31:08 +sigvec.3
  873.     2581    1286 50.1% 11-Dec-96 17:31:10 +sin.3
  874.     2590    1290 50.1% 11-Dec-96 17:31:10 +sinh.3
  875.     3684    1778 51.7% 11-Dec-96 17:31:10 +sleep.3
  876.     2553    1261 50.6% 11-Dec-96 17:31:10 +sqrt.3
  877.     5539    2472 55.3% 11-Dec-96 17:31:10 +stdarg.3
  878.     9050    3558 60.6% 11-Dec-96 17:31:10 +stdio.3
  879.     3011    1462 51.4% 11-Dec-96 17:31:10 +strcasecmp.3
  880.     2965    1425 51.9% 11-Dec-96 17:31:10 +strcat.3
  881.     2931    1430 51.2% 11-Dec-96 17:31:10 +strchr.3
  882.     3031    1473 51.4% 11-Dec-96 17:31:10 +strcmp.3
  883.     2804    1394 50.2% 11-Dec-96 17:31:10 +strcoll.3
  884.     3251    1513 53.4% 11-Dec-96 17:31:12 +strcpy.3
  885.     2868    1409 50.8% 11-Dec-96 17:31:12 +strcspn.3
  886.     2465    1244 49.5% 11-Dec-96 17:31:12 +strdup.3
  887.     2679    1356 49.3% 11-Dec-96 17:31:12 +strerror.3
  888.     6609    2401 63.6% 11-Dec-96 17:31:12 +strftime.3
  889.     4480    1740 61.1% 11-Dec-96 17:31:12 +string.3
  890.     2594    1315 49.3% 11-Dec-96 17:31:12 +strlen.3
  891.     5216    2090 59.9% 11-Dec-96 17:31:12 +strmode.3
  892.     2842    1389 51.1% 11-Dec-96 17:31:12 +strpbrk.3
  893.     2875    1413 50.8% 11-Dec-96 17:31:12 +strrchr.3
  894.     3074    1549 49.6% 11-Dec-96 17:31:12 +strsep.3
  895.     2597    1324 49.0% 11-Dec-96 17:31:12 +strsignal.3
  896.     2791    1378 50.6% 11-Dec-96 17:31:12 +strspn.3
  897.     2941    1412 51.9% 11-Dec-96 17:31:12 +strstr.3
  898.     3742    1776 52.5% 11-Dec-96 17:31:14 +strtod.3
  899.     3747    1815 51.5% 11-Dec-96 17:31:14 +strtok.3
  900.     4429    2098 52.6% 11-Dec-96 17:31:14 +strtol.3
  901.     4523    2145 52.5% 11-Dec-96 17:31:14 +strtoul.3
  902.     2644    1343 49.2% 11-Dec-96 17:31:14 +strxfrm.3
  903.     2438    1247 48.8% 11-Dec-96 17:31:14 +swab.3
  904.     6183    2558 58.6% 11-Dec-96 17:31:14 +sysconf.3
  905.     7063    3109 55.9% 11-Dec-96 17:31:14 +syslog.3
  906.     3188    1583 50.3% 11-Dec-96 17:31:14 +system.3
  907.     2622    1317 49.7% 11-Dec-96 17:31:14 +tan.3
  908.     2564    1266 50.6% 11-Dec-96 17:31:14 +tanh.3
  909.     2955    1463 50.4% 11-Dec-96 17:31:14 +tcgetpgrp.3
  910.     4606    1947 57.7% 11-Dec-96 17:31:16 +tcsendbreak.3
  911.     9146    3291 64.0% 11-Dec-96 17:31:16 +tcsetattr.3
  912.     3568    1633 54.2% 11-Dec-96 17:31:16 +tcsetpgrp.3
  913.     6434    2846 55.7% 11-Dec-96 17:31:16 +termcap.3
  914.     3011    1546 48.6% 11-Dec-96 17:31:16 +time.3
  915.     3193    1489 53.3% 11-Dec-96 17:31:16 +time2posix.3
  916.     3834    1800 53.0% 11-Dec-96 17:31:16 +times.3
  917.     6095    2577 57.7% 11-Dec-96 17:31:16 +tmpnam.3
  918.     3112    1473 52.6% 11-Dec-96 17:31:16 +tolower.3
  919.     3112    1481 52.4% 11-Dec-96 17:31:16 +toupper.3
  920.     3592    1717 52.1% 11-Dec-96 17:31:16 +ttyname.3
  921.     3050    1546 49.3% 11-Dec-96 17:31:16 +ualarm.3
  922.     3115    1547 50.3% 11-Dec-96 17:31:16 +uname.3
  923.     3381    1688 50.0% 11-Dec-96 17:31:18 +ungetc.3
  924.     5173    2349 54.5% 11-Dec-96 17:31:18 +unvis.3
  925.     3133    1559 50.2% 11-Dec-96 17:31:18 +usleep.3
  926.     4650    2168 53.3% 11-Dec-96 17:31:18 +utime.3
  927.     2783    1423 48.8% 11-Dec-96 17:31:18 +valloc.3
  928.     6673    2844 57.3% 11-Dec-96 17:31:18 +vis.3
  929.     4622    2186 52.7% 11-Dec-96 17:31:18 +vtimes.3
  930.     3772    1844 51.1% 11-Dec-96 17:31:20 +icmp.4
  931.     3982    1942 51.2% 11-Dec-96 17:31:20 +imp.4
  932.     5645    2614 53.6% 11-Dec-96 17:31:20 +inet.4
  933.    10988    4466 59.3% 11-Dec-96 17:31:20 +ip.4
  934.     3231    1617 49.9% 11-Dec-96 17:31:20 +lo.4
  935.    11686    4644 60.2% 11-Dec-96 17:31:20 +netintro.4
  936.     2294    1187 48.2% 11-Dec-96 17:31:22 +null.4
  937.     6648    2799 57.8% 11-Dec-96 17:31:22 +pty.4
  938.    11008    4532 58.8% 11-Dec-96 17:31:22 +route.4
  939.     5785    2667 53.8% 11-Dec-96 17:31:22 +tcp.4
  940.    39259   12964 66.9% 11-Dec-96 17:31:22 +termios.4
  941.    19056    6938 63.5% 11-Dec-96 17:31:24 +tp.4
  942.    13098    4800 63.3% 11-Dec-96 17:31:24 +tty.4
  943.     4130    1971 52.2% 11-Dec-96 17:31:24 +udp.4
  944.     4795    2227 53.5% 11-Dec-96 17:31:24 +unix.4
  945.    14552    5408 62.8% 11-Dec-96 17:31:26 +a.out.5
  946.     3826    1916 49.9% 11-Dec-96 17:31:26 +acct.5
  947.     3653    1728 52.6% 11-Dec-96 17:31:26 +core.5
  948.     5036    2364 53.0% 11-Dec-96 17:31:26 +dir.5
  949.     5834    2214 62.0% 11-Dec-96 17:31:26 +disktab.5
  950.     1024     593 42.0% 11-Dec-96 17:31:26 +ethers.5
  951.    12971    5073 60.8% 11-Dec-96 17:31:28 +fs.5
  952.     7249    3102 57.2% 11-Dec-96 17:31:28 +fstab.5
  953.     4609    2148 53.3% 11-Dec-96 17:31:28 +group.5
  954.     3782    1863 50.7% 11-Dec-96 17:31:28 +hosts.5
  955.    17459    6357 63.5% 11-Dec-96 17:31:28 +link.5
  956.      891     563 36.8% 11-Dec-96 17:31:28 +motd.5
  957.     3843    1861 51.5% 11-Dec-96 17:31:30 +netgroup.5
  958.     3364    1682 50.0% 11-Dec-96 17:31:30 +networks.5
  959.     7180    3236 54.9% 11-Dec-96 17:31:30 +passwd.5
  960.     3144    1605 48.9% 11-Dec-96 17:31:30 +phones.5
  961.     8031    3488 56.5% 11-Dec-96 17:31:32 +printcap.5
  962.     2956    1488 49.6% 11-Dec-96 17:31:32 +protocols.5
  963.     6064    2805 53.7% 11-Dec-96 17:31:32 +remote.5
  964.     7279    3132 56.9% 11-Dec-96 17:31:32 +resolv.conf.5
  965.     1687     915 45.7% 11-Dec-96 17:31:32 +rpc.5
  966.     3111    1568 49.5% 11-Dec-96 17:31:32 +services.5
  967.     2636    1370 48.0% 11-Dec-96 17:31:32 +shells.5
  968.     6835    2935 57.0% 11-Dec-96 17:31:34 +stab.5
  969.     4552    2077 54.3% 11-Dec-96 17:31:34 +types.5
  970.     3475    1244 64.2% 11-Dec-96 17:31:34 +tzfile.5
  971.     5310    2300 56.6% 11-Dec-96 17:31:34 +utmp.5
  972.     5804    2742 52.7% 11-Dec-96 17:31:34 +ascii.7
  973.     5243    2448 53.3% 11-Dec-96 17:31:36 +environ.7
  974.     8847    3339 62.2% 11-Dec-96 17:31:36 +hier.7
  975.     4182    1964 53.0% 11-Dec-96 17:31:36 +hostname.7
  976.     2631    1334 49.2% 11-Dec-96 17:31:36 +intro.7
  977.     5892    2751 53.3% 11-Dec-96 17:31:36 +mailaddr.7
  978.    12698    4680 63.1% 11-Dec-96 17:31:36 +mdoc.7
  979.    67090   23428 65.0% 11-Dec-96 17:31:38 +mdoc.samples.7
  980.     2737    1312 52.0% 11-Dec-96 17:31:38 +operator.7
  981.    11803    4608 60.9% 11-Dec-96 17:31:38 +re_format.7
  982.     2840    1429 49.6% 11-Dec-96 17:31:40 +intro.8
  983.     4529    1853 59.0% 11-Dec-96 17:31:40 +ixtimezone.8
  984.     1077     578 46.3% 11-Dec-96 17:31:40 +tzselect.8
  985.     9283    3596 61.2% 11-Dec-96 17:31:40 +zic.8
  986.    13807    2981 78.4% 11-Dec-96 17:31:42 +bin
  987.      802     442 44.8% 08-Jan-97 18:22:18 +bin-pi
  988.     6405    1491 76.7% 08-Jan-97 08:36:00 +env-bin
  989.      628     362 42.3% 08-Jan-97 18:22:34 +env-bin-pi
  990.     4424     945 78.6% 11-Dec-96 17:31:42 +inc-bin
  991.      297     194 34.6% 08-Jan-97 18:22:44 +inc-bin-pi
  992.    36114    5045 86.0% 20-Dec-96 13:32:42 +src
  993.      608     348 42.7% 11-Dec-96 17:28:34 +mkinstalldirs
  994.    15211    4871 67.9% 11-Dec-96 17:31:44 +getnetgrent.c
  995.     5085    2145 57.8% 11-Dec-96 17:31:44 +getttyent.c
  996.     4605    1997 56.6% 11-Dec-96 17:31:44 +linkaddr.c
  997.      980     485 50.5% 11-Dec-96 17:31:44 +Makefile.in
  998.    12368    4458 63.9% 11-Dec-96 17:31:44 +rcmd.c
  999.     9478    3591 62.1% 11-Dec-96 17:31:44 +res_comp.c
  1000.    17248    5584 67.6% 11-Dec-96 17:31:44 +res_debug.c
  1001.    11739    4106 65.0% 11-Dec-96 17:31:44 +res_init.c
  1002.     7815    2819 63.9% 15-Dec-96 12:47:36 +res_mkquery.c
  1003.    11111    4267 61.5% 11-Dec-96 17:31:44 +res_query.c
  1004.    12748    4529 64.4% 11-Dec-96 17:31:46 +res_send.c
  1005.     3685    1730 53.0% 11-Dec-96 17:31:46 +ttyname.c
  1006.     2634    1322 49.8% 11-Dec-96 17:31:46 +ttyslot.c
  1007.    28871   11989 58.4% 01-Jan-97 15:46:20 +NEWS
  1008.     2760    1436 47.9% 11-Dec-96 17:28:34 +PROBLEMS
  1009.     1355     767 43.3% 11-Dec-96 17:28:34 +Product-Info
  1010.    16726    7059 57.7% 11-Dec-96 17:28:34 +README
  1011.     1129     515 54.3% 26-Dec-96 09:05:36 +REGISTRY
  1012.      202     112 44.5% 11-Dec-96 17:31:48 +a4.h
  1013.      569     222 60.9% 11-Dec-96 17:31:48 +glue.c
  1014.      348     198 43.1% 11-Dec-96 17:31:48 +link_a5_0_f.c
  1015.      413     210 49.1% 11-Dec-96 17:31:48 +link_a5_d0_f.c
  1016.     1096     523 52.2% 11-Dec-96 17:31:48 +Makefile.in
  1017.      305     204 33.1% 11-Dec-96 17:31:48 +stack.c
  1018.       34      34  0.0% 11-Dec-96 17:31:48 +stk_argbytes.c
  1019.       19      19  0.0% 11-Dec-96 17:31:48 +stk_limit.c
  1020.      318     160 49.6% 11-Dec-96 17:31:48 +stkchk_d0.c
  1021.      385     209 45.7% 11-Dec-96 17:31:48 +sub_d0_sp.c
  1022.      350     193 44.8% 11-Dec-96 17:31:50 +_err.c
  1023.      146     119 18.4% 11-Dec-96 17:31:50 +_errx.c
  1024.      146     119 18.4% 11-Dec-96 17:31:50 +_verr.c
  1025.      148     121 18.2% 11-Dec-96 17:31:50 +_verrx.c
  1026.      148     121 18.2% 11-Dec-96 17:31:50 +_vwarn.c
  1027.      150     122 18.6% 11-Dec-96 17:31:50 +_vwarnx.c
  1028.      146     120 17.8% 11-Dec-96 17:31:50 +_warn.c
  1029.      148     121 18.2% 11-Dec-96 17:31:52 +_warnx.c
  1030.     1625     858 47.2% 11-Dec-96 17:31:52 +asctime.c
  1031.     2994    1406 53.0% 11-Dec-96 17:31:52 +cclass.h
  1032.     3941    1813 53.9% 11-Dec-96 17:31:52 +cname.h
  1033.     2950    1394 52.7% 11-Dec-96 17:31:50 +COPYRIGHT
  1034.     2334    1191 48.9% 11-Dec-96 17:31:52 +ctermid.c
  1035.    28921    7923 72.6% 11-Dec-96 17:31:52 +engine.h
  1036.     4440    1533 65.4% 11-Dec-96 17:31:52 +err.c
  1037.       31      31  0.0% 11-Dec-96 17:31:52 +errlst.c
  1038.    27388    9607 64.9% 11-Dec-96 17:31:52 +fts.c
  1039.     3828    1767 53.8% 11-Dec-96 17:31:52 +getopt.c
  1040.    38957   12030 69.1% 11-Dec-96 17:31:54 +localtime.c
  1041.      979     498 49.1% 11-Dec-96 17:31:50 +Makefile.in
  1042.     5133    1778 65.3% 11-Dec-96 17:31:54 +private.h
  1043.     5887    1922 67.3% 11-Dec-96 17:31:54 +rand48.c
  1044.    42011   12678 69.8% 11-Dec-96 17:31:54 +regcomp.c
  1045.     5723    2417 57.7% 11-Dec-96 17:31:54 +regerror.c
  1046.     7460    3244 56.5% 11-Dec-96 17:31:54 +regex2.h
  1047.     6622    2675 59.6% 11-Dec-96 17:31:54 +regexec.c
  1048.     3040    1431 52.9% 11-Dec-96 17:31:54 +regfree.c
  1049.     4602    2105 54.2% 11-Dec-96 17:31:54 +scandir.c
  1050.       32      32  0.0% 11-Dec-96 17:31:56 +siglist.c
  1051.     2955    1368 53.7% 11-Dec-96 17:31:56 +signame.c
  1052.     2543    1278 49.7% 11-Dec-96 17:31:56 +utils.h
  1053.      935     433 53.6% 11-Dec-96 17:31:56 +vfork_setup_child.c
  1054.     2333    1186 49.1% 11-Dec-96 17:31:56 +clrerr.c
  1055.     2812    1415 49.6% 11-Dec-96 17:31:56 +fclose.c
  1056.     3267    1616 50.5% 11-Dec-96 17:31:56 +fdopen.c
  1057.     2374    1214 48.8% 11-Dec-96 17:31:58 +feof.c
  1058.     2388    1217 49.0% 11-Dec-96 17:31:58 +ferror.c
  1059.     3152    1593 49.4% 11-Dec-96 17:31:58 +fflush.c
  1060.     2315    1179 49.0% 11-Dec-96 17:31:58 +fgetc.c
  1061.     5014    2316 53.8% 11-Dec-96 17:31:58 +fgetln.c
  1062.     2362    1212 48.6% 11-Dec-96 17:31:58 +fgetpos.c
  1063.     3513    1728 50.8% 11-Dec-96 17:31:58 +fgets.c
  1064.     2388    1215 49.1% 11-Dec-96 17:31:58 +fileno.c
  1065.     5224    2254 56.8% 11-Dec-96 17:31:58 +findfp.c
  1066.     3098    1530 50.6% 11-Dec-96 17:31:58 +flags.c
  1067.     2271    1168 48.5% 11-Dec-96 17:31:58 +floatio.h
  1068.     3287    1641 50.0% 11-Dec-96 17:31:58 +fopen.c
  1069.     2611    1290 50.5% 11-Dec-96 17:32:00 +fprintf.c
  1070.     2661    1359 48.9% 11-Dec-96 17:32:00 +fpurge.c
  1071.     2335    1191 48.9% 11-Dec-96 17:32:00 +fputc.c
  1072.     2588    1316 49.1% 11-Dec-96 17:32:00 +fputs.c
  1073.     3128    1553 50.3% 11-Dec-96 17:32:00 +fread.c
  1074.     5190    2403 53.6% 11-Dec-96 17:32:00 +freopen.c
  1075.     2608    1291 50.4% 11-Dec-96 17:32:00 +fscanf.c
  1076.     6998    2997 57.1% 11-Dec-96 17:32:00 +fseek.c
  1077.     2402    1228 48.8% 11-Dec-96 17:32:02 +fsetpos.c
  1078.     3268    1615 50.5% 11-Dec-96 17:32:02 +ftell.c
  1079.     3053    1477 51.6% 11-Dec-96 17:32:02 +funopen.c
  1080.     5789    2474 57.2% 11-Dec-96 17:32:02 +fvwrite.c
  1081.     2360    1201 49.1% 11-Dec-96 17:32:02 +fvwrite.h
  1082.     2614    1326 49.2% 11-Dec-96 17:32:02 +fwalk.c
  1083.     2963    1503 49.2% 11-Dec-96 17:32:04 +fwrite.c
  1084.     2383    1218 48.8% 11-Dec-96 17:32:04 +getc.c
  1085.     2379    1208 49.2% 11-Dec-96 17:32:04 +getchar.c
  1086.     2567    1324 48.4% 11-Dec-96 17:32:04 +gets.c
  1087.     2359    1222 48.1% 11-Dec-96 17:32:04 +getw.c
  1088.     3308    1545 53.2% 11-Dec-96 17:32:04 +local.h
  1089.     4031    1884 53.2% 11-Dec-96 17:32:04 +makebuf.c
  1090.     1120     576 48.5% 11-Dec-96 17:31:56 +Makefile.in
  1091.     2623    1359 48.1% 11-Dec-96 17:32:04 +mktemp.c
  1092.     2911    1433 50.7% 11-Dec-96 17:32:04 +perror.c
  1093.     2548    1267 50.2% 11-Dec-96 17:32:04 +printf.c
  1094.     2397    1227 48.8% 11-Dec-96 17:32:04 +putc.c
  1095.     2420    1236 48.9% 11-Dec-96 17:32:04 +putchar.c
  1096.     2680    1357 49.3% 11-Dec-96 17:32:06 +puts.c
  1097.     2497    1274 48.9% 11-Dec-96 17:32:06 +putw.c
  1098.     3985    1882 52.7% 11-Dec-96 17:32:06 +refill.c
  1099.     2310    1178 49.0% 11-Dec-96 17:32:06 +remove.c
  1100.     2431    1247 48.7% 11-Dec-96 17:32:06 +rewind.c
  1101.     2502    1293 48.3% 11-Dec-96 17:32:06 +rget.c
  1102.     2581    1289 50.0% 11-Dec-96 17:32:06 +scanf.c
  1103.     2390    1217 49.0% 11-Dec-96 17:32:06 +setbuf.c
  1104.     2528    1281 49.3% 11-Dec-96 17:32:06 +setbuffer.c
  1105.     5063    2400 52.5% 11-Dec-96 17:32:06 +setvbuf.c
  1106.     2798    1400 49.9% 11-Dec-96 17:32:06 +snprintf.c
  1107.     2777    1383 50.1% 11-Dec-96 17:32:06 +sprintf.c
  1108.     2939    1447 50.7% 11-Dec-96 17:32:08 +sscanf.c
  1109.     3397    1588 53.2% 11-Dec-96 17:32:08 +stdio.c
  1110.     3118    1424 54.3% 11-Dec-96 17:32:08 +tempnam.c
  1111.     2996    1470 50.9% 11-Dec-96 17:32:08 +tmpfile.c
  1112.     2498    1277 48.8% 11-Dec-96 17:32:08 +tmpnam.c
  1113.     4642    2134 54.0% 11-Dec-96 17:32:08 +ungetc.c
  1114.    19031    7079 62.8% 11-Dec-96 17:32:08 +vfprintf.c
  1115.    18403    6187 66.3% 11-Dec-96 17:32:08 +vfscanf.c
  1116.     2368    1212 48.8% 11-Dec-96 17:32:08 +vprintf.c
  1117.     2393    1228 48.6% 11-Dec-96 17:32:08 +vscanf.c
  1118.     2581    1325 48.6% 11-Dec-96 17:32:08 +vsnprintf.c
  1119.     2552    1303 48.9% 11-Dec-96 17:32:08 +vsprintf.c
  1120.     2716    1380 49.1% 11-Dec-96 17:32:10 +vsscanf.c
  1121.     3607    1800 50.0% 11-Dec-96 17:32:10 +wbuf.c
  1122.     3317    1650 50.2% 11-Dec-96 17:32:10 +wsetup.c
  1123.      183     160 12.5% 11-Dec-96 17:32:10 +abort.c
  1124.     1282     717 44.0% 11-Dec-96 17:32:10 +abs.c
  1125.     2041    1074 47.3% 11-Dec-96 17:32:10 +atexit.c
  1126.     1408     789 43.9% 11-Dec-96 17:32:12 +atexit.h
  1127.     2183    1152 47.2% 11-Dec-96 17:32:12 +atof.c
  1128.     1295     750 42.0% 11-Dec-96 17:32:12 +atoi.c
  1129.     1291     748 42.0% 11-Dec-96 17:32:12 +atol.c
  1130.     2464    1256 49.0% 11-Dec-96 17:32:12 +bsearch.c
  1131.     1438     817 43.1% 11-Dec-96 17:32:12 +calloc.c
  1132.     1911    1061 44.4% 11-Dec-96 17:32:12 +div.c
  1133.     6218    2583 58.4% 11-Dec-96 17:32:12 +exec.c
  1134.    19408    7338 62.1% 15-Dec-96 12:47:40 +execve.c
  1135.     2884    1435 50.2% 11-Dec-96 17:32:12 +getenv.c
  1136.     4361    2196 49.6% 11-Dec-96 17:32:12 +heapsort.c
  1137.     1258     738 41.3% 11-Dec-96 17:32:14 +labs.c
  1138.     1682     920 45.3% 11-Dec-96 17:32:14 +ldiv.c
  1139.     1248     623 50.0% 11-Dec-96 17:32:10 +Makefile.in
  1140.     3170    1457 54.0% 11-Dec-96 17:32:14 +multibyte.c
  1141.     2305    1193 48.2% 11-Dec-96 17:32:14 +putenv.c
  1142.     6381    2780 56.4% 11-Dec-96 17:32:14 +qsort.c
  1143.     9010    3844 57.3% 11-Dec-96 17:32:14 +radixsort.c
  1144.     1350     779 42.2% 11-Dec-96 17:32:14 +rand.c
  1145.     3820    1782 53.3% 11-Dec-96 17:32:14 +setenv.c
  1146.     1111     639 42.4% 11-Dec-96 17:32:14 +ssystem.c
  1147.    48976   16275 66.7% 11-Dec-96 17:32:14 +strtod.c
  1148.     3587    1781 50.3% 11-Dec-96 17:32:16 +strtol.c
  1149.     4411    2136 51.5% 11-Dec-96 17:32:16 +strtoq.c
  1150.     2631    1309 50.2% 11-Dec-96 17:32:16 +strtoul.c
  1151.     3417    1663 51.3% 11-Dec-96 17:32:16 +strtouq.c
  1152.     2912    1466 49.6% 11-Dec-96 17:32:16 +system.c
  1153.     2638    1219 53.7% 11-Dec-96 17:32:16 +bcmp.c
  1154.     3448    1326 61.5% 11-Dec-96 17:32:16 +bcopy.c
  1155.     2287    1125 50.8% 11-Dec-96 17:32:18 +bzero.c
  1156.     1339     742 44.5% 11-Dec-96 17:32:18 +ffs.c
  1157.     1528     829 45.7% 11-Dec-96 17:32:18 +index.c
  1158.     1080     552 48.8% 11-Dec-96 17:32:16 +Makefile.in
  1159.     2271    1177 48.1% 11-Dec-96 17:32:18 +memccpy.c
  1160.     2335    1199 48.6% 11-Dec-96 17:32:18 +memchr.c
  1161.     2350    1219 48.1% 11-Dec-96 17:32:18 +memcmp.c
  1162.      334     221 33.8% 11-Dec-96 17:32:18 +memcpy.c
  1163.      152     108 28.9% 11-Dec-96 17:32:18 +memmove.c
  1164.     2271    1166 48.6% 11-Dec-96 17:32:18 +memset.c
  1165.     1535     837 45.4% 11-Dec-96 17:32:18 +rindex.c
  1166.     5186    2072 60.0% 11-Dec-96 17:32:18 +strcasecmp.c
  1167.     2140    1111 48.0% 11-Dec-96 17:32:18 +strcat.c
  1168.     1836     967 47.3% 11-Dec-96 17:32:18 +strcmp.c
  1169.     2300    1183 48.5% 11-Dec-96 17:32:20 +strcoll.c
  1170.     1429     783 45.2% 11-Dec-96 17:32:20 +strcpy.c
  1171.     2558    1322 48.3% 11-Dec-96 17:32:20 +strcspn.c
  1172.     2273    1173 48.3% 11-Dec-96 17:32:20 +strdup.c
  1173.     1636     896 45.2% 11-Dec-96 17:32:20 +strerror.c
  1174.     5990    2002 66.5% 11-Dec-96 17:32:20 +strftime.c
  1175.     1344     746 44.4% 11-Dec-96 17:32:20 +strlen.c
  1176.     3670    1475 59.8% 11-Dec-96 17:32:20 +strmode.c
  1177.     2525    1282 49.2% 11-Dec-96 17:32:20 +strncat.c
  1178.     2002    1035 48.3% 11-Dec-96 17:32:20 +strncmp.c
  1179.     1749     890 49.1% 11-Dec-96 17:32:20 +strncpy.c
  1180.     2331    1202 48.4% 11-Dec-96 17:32:20 +strpbrk.c
  1181.     2911    1442 50.4% 11-Dec-96 17:32:20 +strsep.c
  1182.     2381    1230 48.3% 11-Dec-96 17:32:22 +strspn.c
  1183.     2451    1243 49.2% 11-Dec-96 17:32:22 +strstr.c
  1184.     2990    1496 49.9% 11-Dec-96 17:32:22 +strtok.c
  1185.     2648    1337 49.5% 11-Dec-96 17:32:22 +strxfrm.c
  1186.     2466    1256 49.0% 11-Dec-96 17:32:22 +swab.c
  1187.     2604    1352 48.0% 15-Dec-96 12:47:06 +TODO
  1188.     2068     914 55.8% 12-Dec-96 01:15:50 +ChangeLog
  1189.     9066    2636 70.9% 11-Dec-96 17:32:24 +cli.c
  1190.    21995    6958 68.3% 11-Dec-96 17:32:28 +africa
  1191.     4440    2049 53.8% 11-Dec-96 17:32:28 +antarctica
  1192.    31783    9691 69.5% 11-Dec-96 17:32:30 +asia
  1193.    31040   10113 67.4% 11-Dec-96 17:32:30 +australasia
  1194.     2743    1065 61.1% 11-Dec-96 17:32:30 +backward
  1195.     1705     730 57.1% 11-Dec-96 17:32:30 +etcetera
  1196.    92162   28618 68.9% 11-Dec-96 17:32:30 +europe
  1197.      311     228 26.6% 11-Dec-96 17:32:30 +factory
  1198.     1433     551 61.5% 11-Dec-96 17:32:30 +leapseconds
  1199.    47285   13707 71.0% 11-Dec-96 17:32:30 +northamerica
  1200.     1117     631 43.5% 11-Dec-96 17:32:30 +pacificnew
  1201.    19221    3107 83.8% 11-Dec-96 17:32:32 +solar87
  1202.    19239    3047 84.1% 11-Dec-96 17:32:32 +solar88
  1203.    19515    3248 83.3% 11-Dec-96 17:32:32 +solar89
  1204.    15872    5036 68.2% 11-Dec-96 17:32:32 +southamerica
  1205.     1390     620 55.3% 11-Dec-96 17:32:32 +systemv
  1206.     7990    2453 69.2% 11-Dec-96 17:32:24 +functions.c
  1207.    22099    7471 66.1% 11-Dec-96 17:32:24 +getopt.c
  1208.     4438    1814 59.1% 11-Dec-96 17:32:24 +getopt.h
  1209.     4254    1718 59.6% 11-Dec-96 17:32:24 +getopt1.c
  1210.     1518     573 62.2% 11-Dec-96 17:32:24 +ialloc.c
  1211.     3661    2190 40.1% 11-Dec-96 17:32:24 +iso3166.tab
  1212.    11584    4264 63.1% 11-Dec-96 17:32:24 +ixpipe-handler.c
  1213.     9418    2945 68.7% 11-Dec-96 17:32:24 +ixprefs.c
  1214.     6396    1277 80.0% 11-Dec-96 17:32:24 +ixprefs.gui
  1215.    23651    8778 62.8% 11-Dec-96 17:32:24 +ixprefs.guide
  1216.      504     263 47.8% 11-Dec-96 17:32:24 +ixprefs.guide.info
  1217.     3811     892 76.5% 11-Dec-96 17:32:26 +ixprefs.h
  1218.      617     386 37.4% 11-Dec-96 17:32:26 +ixprefs.info
  1219.     1741     689 60.4% 11-Dec-96 17:32:26 +ixrun.c
  1220.     1949     789 59.5% 11-Dec-96 17:32:26 +ixstack.c
  1221.     7969    2762 65.3% 11-Dec-96 17:32:26 +ixtimezone.c
  1222.    13420    4299 67.9% 15-Dec-96 12:47:44 +ixtrace.c
  1223.    35655    6539 81.6% 12-Dec-96 01:15:52 +ixtrace.h
  1224.     4035    1624 59.7% 11-Dec-96 17:32:26 +main.c
  1225.     3594    1573 56.2% 11-Dec-96 17:32:22 +Makefile.in
  1226.      134     112 16.4% 11-Dec-96 17:32:22 +Mountlist
  1227.     1180     533 54.8% 11-Dec-96 17:32:26 +scheck.c
  1228.     6589    2535 61.5% 11-Dec-96 17:32:26 +tzselect.ksh
  1229.      509     211 58.5% 11-Dec-96 17:32:28 +yearistype.sh
  1230.    49857   14723 70.4% 11-Dec-96 17:32:28 +zic.c
  1231.    14329    6978 51.3% 11-Dec-96 17:32:28 +zone.tab
  1232.      318     200 37.1% 01-Jan-97 14:04:20 +version.in
  1233. -------- ------- ----- --------- --------
  1234.  5430958 2179039 59.8% 14-Jan-97 22:38:48   1089 files
  1235.