home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / gcc / ixemulsdk.readme < prev    next >
Text File  |  1997-03-02  |  35KB  |  719 lines

  1. Short:    IXemul 45.1 - developer's tool kit
  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.     3610    1620 55.1% 11-Dec-96 17:29:00 +a.out.h
  145.     3718    1564 57.9% 11-Dec-96 17:29:14 +socketbasetags.h
  146.     1675     800 52.2% 11-Dec-96 17:29:14 +usergroup.h
  147.     2588    1288 50.2% 11-Dec-96 17:29:02 +ar.h
  148.     3646    1623 55.4% 11-Dec-96 17:29:14 +ftp.h
  149.     2416    1194 50.5% 11-Dec-96 17:29:14 +inet.h
  150.     8577    3301 61.5% 11-Dec-96 17:29:14 +nameser.h
  151.    10547    3958 62.4% 11-Dec-96 17:29:16 +telnet.h
  152.     2960    1439 51.3% 11-Dec-96 17:29:16 +tftp.h
  153.     1387     447 67.7% 11-Dec-96 17:29:02 +assert.h
  154.     4729    1666 64.7% 11-Dec-96 17:29:02 +bitstring.h
  155.       20      20  0.0% 11-Dec-96 17:29:02 +bstring.h
  156.     4237    1681 60.3% 11-Dec-96 17:29:02 +ctype.h
  157.     8215    3007 63.3% 11-Dec-96 17:29:02 +db.h
  158.     3987    1869 53.1% 11-Dec-96 17:29:02 +dirent.h
  159.     3185    1391 56.3% 11-Dec-96 17:29:02 +err.h
  160.     6766    2764 59.1% 11-Dec-96 17:29:02 +errno.h
  161.       23      23  0.0% 11-Dec-96 17:29:02 +fcntl.h
  162.       70      68  2.8% 11-Dec-96 17:29:02 +float.h
  163.     2340    1198 48.8% 11-Dec-96 17:29:02 +fnmatch.h
  164.     5392    2314 57.0% 11-Dec-96 17:29:04 +fts.h
  165.     4052    1877 53.6% 11-Dec-96 17:29:04 +glob.h
  166.     2235    1126 49.6% 11-Dec-96 17:29:04 +glue.h
  167.     7233    2496 65.4% 11-Dec-96 17:29:04 +gnu.a.out.h
  168.     2457    1198 51.2% 15-Dec-96 12:47:12 +grp.h
  169.     1739     699 59.8% 11-Dec-96 17:29:04 +gvarargs.h
  170.     1519     755 50.2% 11-Dec-96 17:29:04 +inetd.h
  171.      560     287 48.7% 11-Dec-96 17:29:04 +init.h
  172.     2868    1293 54.9% 11-Dec-96 17:29:04 +ix_amiga.h
  173.     2981    1360 54.3% 11-Dec-96 17:29:04 +limits.h
  174.     2750    1350 50.9% 11-Dec-96 17:29:04 +locale.h
  175.     2879    1304 54.7% 11-Dec-96 17:29:16 +asm.h
  176.     2727    1342 50.7% 11-Dec-96 17:29:16 +signal.h
  177.     2641    1291 51.1% 11-Dec-96 17:29:16 +trap.h
  178.     3403    1685 50.4% 11-Dec-96 17:29:18 +ansi.h
  179.      137     121 11.6% 11-Dec-96 17:29:18 +asm.h
  180.      857     349 59.2% 11-Dec-96 17:29:18 +cdefs.h
  181.     6940    3106 55.2% 11-Dec-96 17:29:18 +cpu.h
  182.     2887    1352 53.1% 11-Dec-96 17:29:18 +endian.h
  183.     3641    1590 56.3% 11-Dec-96 17:29:18 +float.h
  184.     4294    1697 60.4% 11-Dec-96 17:29:18 +frame.h
  185.     3776    1541 59.1% 11-Dec-96 17:29:18 +limits.h
  186.     2340    1164 50.2% 11-Dec-96 17:29:20 +mtpr.h
  187.     7547    3078 59.2% 11-Dec-96 17:29:20 +param.h
  188.     2893    1456 49.6% 11-Dec-96 17:29:20 +pcb.h
  189.     4005    1875 53.1% 11-Dec-96 17:29:20 +pmap.h
  190.     2205    1137 48.4% 11-Dec-96 17:29:20 +proc.h
  191.     3121    1344 56.9% 11-Dec-96 17:29:20 +psl.h
  192.      537     301 43.9% 11-Dec-96 17:29:20 +reg.h
  193.      149     126 15.4% 11-Dec-96 17:29:20 +signal.h
  194.     2568    1260 50.9% 11-Dec-96 17:29:20 +stdarg.h
  195.      258     200 22.4% 11-Dec-96 17:29:20 +trap.h
  196.     2708    1343 50.4% 11-Dec-96 17:29:20 +types.h
  197.     9082    4055 55.3% 11-Dec-96 17:29:22 +vmparam.h
  198.       81      81  0.0% 11-Dec-96 17:29:06 +malloc.h
  199.     9530    1903 80.0% 11-Dec-96 17:29:06 +math-68881.h
  200.     4553    1850 59.3% 11-Dec-96 17:29:06 +math.h
  201.     1882     951 49.4% 11-Dec-96 17:29:06 +memory.h
  202.     5285    2090 60.4% 11-Dec-96 17:29:06 +mpool.h
  203.     2939    1454 50.5% 11-Dec-96 17:29:06 +ndbm.h
  204.       62      58  6.4% 11-Dec-96 17:29:06 +ndir.h
  205.     1418     775 45.3% 11-Dec-96 17:29:22 +af.h
  206.     8419    3313 60.6% 11-Dec-96 17:29:22 +bpf.h
  207.     3941    1839 53.3% 11-Dec-96 17:29:22 +bpfdesc.h
  208.     7861    3091 60.6% 11-Dec-96 17:29:22 +if.h
  209.     2495    1163 53.3% 11-Dec-96 17:29:22 +if_arp.h
  210.     3495    1755 49.7% 11-Dec-96 17:29:22 +if_dl.h
  211.     2834    1314 53.6% 11-Dec-96 17:29:24 +if_llc.h
  212.     3368    1625 51.7% 11-Dec-96 17:29:24 +if_slvar.h
  213.     2961    1373 53.6% 11-Dec-96 17:29:24 +if_types.h
  214.     1835     961 47.6% 11-Dec-96 17:29:24 +netisr.h
  215.     4434    1900 57.1% 11-Dec-96 17:29:24 +radix.h
  216.     2194    1064 51.5% 11-Dec-96 17:29:24 +raw_cb.h
  217.    10673    4006 62.4% 11-Dec-96 17:29:24 +route.h
  218.     6740    2968 55.9% 11-Dec-96 17:29:24 +slcompress.h
  219.     4880    2014 58.7% 11-Dec-96 17:29:06 +netdb.h
  220.     2604    1236 52.5% 11-Dec-96 17:29:06 +netgroup.h
  221.     1610     836 48.0% 11-Dec-96 17:29:26 +icmp_var.h
  222.     2916    1339 54.0% 11-Dec-96 17:29:26 +if_ether.h
  223.     9067    3434 62.1% 11-Dec-96 17:29:28 +in.h
  224.     1892     956 49.4% 11-Dec-96 17:29:28 +in_pcb.h
  225.     1462     806 44.8% 11-Dec-96 17:29:28 +in_systm.h
  226.     2086    1033 50.4% 11-Dec-96 17:29:28 +in_var.h
  227.     5898    2528 57.1% 11-Dec-96 17:29:28 +ip.h
  228.     4307    1754 59.2% 11-Dec-96 17:29:28 +ip_icmp.h
  229.     3670    1654 54.9% 11-Dec-96 17:29:28 +ip_var.h
  230.     2575    1274 50.5% 11-Dec-96 17:29:28 +tcp.h
  231.     1295     736 43.1% 11-Dec-96 17:29:28 +tcp_debug.h
  232.     2585    1215 52.9% 11-Dec-96 17:29:28 +tcp_fsm.h
  233.     1643     856 47.9% 11-Dec-96 17:29:28 +tcp_seq.h
  234.     4786    2058 56.9% 11-Dec-96 17:29:30 +tcp_timer.h
  235.     8838    3326 62.3% 11-Dec-96 17:29:30 +tcp_var.h
  236.     1514     745 50.7% 11-Dec-96 17:29:30 +tcpip.h
  237.     1103     637 42.2% 11-Dec-96 17:29:30 +udp.h
  238.     1548     797 48.5% 11-Dec-96 17:29:30 +udp_var.h
  239.     1002     421 57.9% 11-Dec-96 17:29:30 +krpc.h
  240.     9957    3982 60.0% 11-Dec-96 17:29:30 +nfs.h
  241.     2953    1503 49.1% 11-Dec-96 17:29:30 +nfsdiskless.h
  242.     8391    3045 63.7% 11-Dec-96 17:29:32 +nfsm_subs.h
  243.     4468    1943 56.5% 11-Dec-96 17:29:32 +nfsmount.h
  244.     7071    2631 62.7% 11-Dec-96 17:29:32 +nfsnode.h
  245.     3918    1872 52.2% 11-Dec-96 17:29:32 +nfsrtt.h
  246.     3100    1489 51.9% 11-Dec-96 17:29:32 +nfsrvcache.h
  247.     8233    2887 64.9% 11-Dec-96 17:29:32 +nfsv2.h
  248.     7371    3075 58.2% 11-Dec-96 17:29:32 +nqnfs.h
  249.     3180    1470 53.7% 11-Dec-96 17:29:32 +rpcv2.h
  250.     3646    1598 56.1% 11-Dec-96 17:29:32 +xdr_subs.h
  251.     3674    1792 51.2% 11-Dec-96 17:29:06 +nlist.h
  252.     3256     967 70.3% 11-Dec-96 17:29:06 +packets.h
  253.       23      23  0.0% 11-Dec-96 17:29:06 +param.h
  254.     3034    1372 54.7% 11-Dec-96 17:29:06 +paths.h
  255.     4182    1899 54.5% 11-Dec-96 17:29:34 +dumprestore.h
  256.     3999    1920 51.9% 11-Dec-96 17:29:34 +routed.h
  257.     2687    1330 50.5% 11-Dec-96 17:29:34 +rwhod.h
  258.     4860    2120 56.3% 11-Dec-96 17:29:34 +talkd.h
  259.     3992    1779 55.4% 11-Dec-96 17:29:34 +timed.h
  260.     3745    1598 57.3% 11-Dec-96 17:29:08 +pwd.h
  261.     2210    1119 49.3% 11-Dec-96 17:29:08 +ranlib.h
  262.     3744    1725 53.9% 11-Dec-96 17:29:08 +regex.h
  263.     2836    1380 51.3% 11-Dec-96 17:29:08 +regexp.h
  264.     6234    2688 56.8% 11-Dec-96 17:29:08 +resolv.h
  265.     5285    2227 57.8% 11-Dec-96 17:29:34 +auth.h
  266.     2615    1391 46.8% 11-Dec-96 17:29:36 +auth_unix.h
  267.     9824    3527 64.0% 11-Dec-96 17:29:36 +clnt.h
  268.     3176    1447 54.4% 11-Dec-96 17:29:36 +pmap_clnt.h
  269.     3603    1664 53.8% 11-Dec-96 17:29:36 +pmap_prot.h
  270.     2047    1110 45.7% 11-Dec-96 17:29:36 +pmap_rmt.h
  271.     3252    1608 50.5% 11-Dec-96 17:29:36 +rpc.h
  272.     4485    1901 57.6% 11-Dec-96 17:29:36 +rpc_msg.h
  273.     9911    3731 62.3% 11-Dec-96 17:29:36 +svc.h
  274.     1746     984 43.6% 11-Dec-96 17:29:36 +svc_auth.h
  275.     1897    1032 45.5% 11-Dec-96 17:29:36 +types.h
  276.    11086    3863 65.1% 11-Dec-96 17:29:36 +xdr.h
  277.      320     210 34.3% 11-Dec-96 17:29:08 +search.h
  278.     2504    1230 50.8% 11-Dec-96 17:29:08 +setjmp.h
  279.     1936     983 49.2% 11-Dec-96 17:29:08 +sgtty.h
  280.     4145    1709 58.7% 11-Dec-96 17:29:08 +signal.h
  281.     4738    1694 64.2% 11-Dec-96 17:29:08 +stab.def
  282.     3266    1441 55.8% 11-Dec-96 17:29:08 +stab.h
  283.     1957     992 49.3% 11-Dec-96 17:29:08 +stdarg.h
  284.     2313    1168 49.5% 11-Dec-96 17:29:10 +stddef.h
  285.    12591    4702 62.6% 11-Dec-96 17:29:10 +stdio.h
  286.     6304    2244 64.4% 11-Dec-96 17:29:10 +stdlib.h
  287.     3860    1405 63.6% 11-Dec-96 17:29:10 +string.h
  288.     1889     953 49.5% 11-Dec-96 17:29:10 +strings.h
  289.     2293    1107 51.7% 11-Dec-96 17:29:10 +struct.h
  290.     2896    1465 49.4% 11-Dec-96 17:29:38 +acct.h
  291.     4682    2112 54.8% 11-Dec-96 17:29:38 +cdefs.h
  292.     2565    1306 49.0% 11-Dec-96 17:29:38 +dir.h
  293.     3185    1560 51.0% 11-Dec-96 17:29:38 +dirent.h
  294.     2288    1139 50.2% 11-Dec-96 17:29:38 +domain.h
  295.       19      19  0.0% 11-Dec-96 17:29:38 +errno.h
  296.     3107    1432 53.9% 11-Dec-96 17:29:38 +exec.h
  297.     6971    2853 59.0% 11-Dec-96 17:29:38 +fcntl.h
  298.     4324    1953 54.8% 11-Dec-96 17:29:38 +file.h
  299.     2818    1363 51.6% 11-Dec-96 17:29:40 +filio.h
  300.     3861    1685 56.3% 11-Dec-96 17:29:40 +gprof.h
  301.     3259    1529 53.0% 11-Dec-96 17:29:40 +ioccom.h
  302.     3262    1588 51.3% 11-Dec-96 17:29:40 +ioctl.h
  303.     7160    2758 61.4% 11-Dec-96 17:29:40 +ioctl_compat.h
  304.     3885    1290 66.7% 11-Dec-96 17:29:40 +ixnet_syscall.def
  305.     1051     582 44.6% 11-Dec-96 17:29:40 +ixnet_syscall.h
  306.     3113    1323 57.5% 11-Dec-96 17:29:40 +localedef.h
  307.    12144    4399 63.7% 11-Dec-96 17:29:40 +mbuf.h
  308.     3751    1736 53.7% 11-Dec-96 17:29:40 +mman.h
  309.    10073    3846 61.8% 11-Dec-96 17:29:40 +mount.h
  310.     4734    2045 56.8% 11-Dec-96 17:29:40 +mtio.h
  311.     8158    3680 54.8% 11-Dec-96 17:29:42 +param.h
  312.     9316    3818 59.0% 11-Dec-96 17:29:42 +proc.h
  313.     8947    3510 60.7% 11-Dec-96 17:29:42 +protosw.h
  314.     4133    1743 57.8% 11-Dec-96 17:29:42 +ptrace.h
  315.    10853    2572 76.3% 11-Dec-96 17:29:42 +queue.h
  316.     3944    1734 56.0% 11-Dec-96 17:29:42 +resource.h
  317.     8005    3351 58.1% 11-Dec-96 17:29:44 +signal.h
  318.    11688    4283 63.3% 11-Dec-96 17:29:44 +socket.h
  319.     8243    3326 59.6% 11-Dec-96 17:29:44 +socketvar.h
  320.     4947    1731 65.0% 11-Dec-96 17:29:44 +sockio.h
  321.     5506    2114 61.6% 11-Dec-96 17:29:44 +stat.h
  322.     1536     839 45.3% 11-Dec-96 17:29:44 +stdc.h
  323.    17064    4264 75.0% 11-Dec-96 17:29:44 +syscall.def
  324.     1035     575 44.4% 11-Dec-96 17:29:44 +syscall.h
  325.     3020    1419 53.0% 11-Dec-96 17:29:44 +syslimits.h
  326.     6390    2654 58.4% 11-Dec-96 17:29:44 +syslog.h
  327.     9058    3383 62.6% 11-Dec-96 17:29:44 +termios.h
  328.     5324    2178 59.0% 11-Dec-96 17:29:44 +time.h
  329.     2132    1090 48.8% 11-Dec-96 17:29:46 +timeb.h
  330.     2375    1155 51.3% 11-Dec-96 17:29:46 +times.h
  331.     2994    1378 53.9% 11-Dec-96 17:29:46 +tracecntl.h
  332.     6213    2736 55.9% 11-Dec-96 17:29:46 +tty.h
  333.     2716    1313 51.6% 11-Dec-96 17:29:46 +ttychars.h
  334.     6834    2609 61.8% 11-Dec-96 17:29:46 +ttycom.h
  335.     3373    1583 53.0% 11-Dec-96 17:29:46 +ttydefaults.h
  336.     2268    1111 51.0% 11-Dec-96 17:29:46 +ttydev.h
  337.     5783    2485 57.0% 11-Dec-96 17:29:46 +types.h
  338.     2332    1169 49.8% 11-Dec-96 17:29:46 +ucred.h
  339.     2628    1316 49.9% 11-Dec-96 17:29:46 +uio.h
  340.     2251    1170 48.0% 11-Dec-96 17:29:46 +un.h
  341.     3604    1636 54.6% 11-Dec-96 17:29:48 +unistd.h
  342.     1899     878 53.7% 11-Dec-96 17:29:48 +unix_socket.h
  343.     3500    1644 53.0% 11-Dec-96 17:29:48 +unpcb.h
  344.     3380    1578 53.3% 11-Dec-96 17:29:48 +user.h
  345.     1214     618 49.0% 11-Dec-96 17:29:48 +utsname.h
  346.     5552    2330 58.0% 11-Dec-96 17:29:48 +wait.h
  347.     5461    2443 55.2% 11-Dec-96 17:29:10 +sysexits.h
  348.       24      24  0.0% 11-Dec-96 17:29:10 +syslog.h
  349.       25      25  0.0% 11-Dec-96 17:29:10 +termios.h
  350.     3828    1743 54.4% 11-Dec-96 17:29:10 +time.h
  351.     3130    1503 51.9% 11-Dec-96 17:29:10 +ttyent.h
  352.     4808    1817 62.2% 11-Dec-96 17:29:10 +tzfile.h
  353.     7088    2404 66.0% 11-Dec-96 17:29:10 +unistd.h
  354.    13843    5247 62.0% 11-Dec-96 17:29:12 +user.h
  355.     2131    1088 48.9% 11-Dec-96 17:29:12 +utime.h
  356.     2735    1230 55.0% 11-Dec-96 17:29:12 +utmp.h
  357.      137     105 23.3% 11-Dec-96 17:29:12 +values.h
  358.     2064    1047 49.2% 11-Dec-96 17:29:12 +varargs.h
  359.     3199    1507 52.8% 11-Dec-96 17:29:12 +vis.h
  360.       22      22  0.0% 11-Dec-96 17:29:12 +wait.h
  361.    61005   22673 62.8% 05-Jan-97 11:32:12 +bcrt0.o
  362.    60379   22325 63.0% 05-Jan-97 11:31:40 +crt0.o
  363.    66857   25336 62.1% 05-Jan-97 11:32:50 +gcrt0.o
  364.    61065   22674 62.8% 05-Jan-97 11:31:56 +lcrt0.o
  365.   813516  300383 63.0% 05-Jan-97 11:30:52 +libc.a
  366.   813110  299417 63.1% 05-Jan-97 11:31:10 +libc.a
  367.   817058  300328 63.2% 05-Jan-97 11:30:16 +libc.a
  368.   857752  302441 64.7% 05-Jan-97 11:30:32 +libc_p.a
  369.    66857   25336 62.1% 05-Jan-97 11:32:50 +mcrt0.o
  370.    61342   22784 62.8% 05-Jan-97 11:32:30 +rcrt0.o
  371.    61402   22786 62.8% 05-Jan-97 11:33:08 +scrt0.o
  372.     1304     650 50.1% 05-Jan-97 11:38:18 +intro.0
  373.     3813    1376 63.9% 05-Jan-97 11:38:22 +ixrun.0
  374.     1037     501 51.6% 05-Jan-97 11:38:24 +ixstack.0
  375.     6367    2441 61.6% 05-Jan-97 11:38:26 +ixtrace.0
  376.     2322    1037 55.3% 05-Jan-97 11:38:32 +_exit.0
  377.     3842    1572 59.0% 05-Jan-97 11:38:36 +accept.0
  378.     3311    1404 57.5% 05-Jan-97 11:38:42 +access.0
  379.     2668    1223 54.1% 05-Jan-97 11:38:46 +adjtime.0
  380.     2906    1297 55.3% 05-Jan-97 11:38:50 +bind.0
  381.     2836    1139 59.8% 05-Jan-97 11:38:56 +chdir.0
  382.     4863    1844 62.0% 05-Jan-97 11:39:02 +chmod.0
  383.     3434    1401 59.2% 05-Jan-97 11:39:08 +chown.0
  384.     2118     981 53.6% 05-Jan-97 11:39:12 +chroot.0
  385.     2604    1194 54.1% 05-Jan-97 11:39:16 +close.0
  386.     3854    1588 58.7% 05-Jan-97 11:39:22 +connect.0
  387.     2452    1095 55.3% 05-Jan-97 11:39:28 +dup.0
  388.     7983    2846 64.3% 05-Jan-97 11:39:36 +execve.0
  389.    12533    4211 66.4% 05-Jan-97 11:39:46 +fcntl.0
  390.     3530    1537 56.4% 05-Jan-97 11:39:50 +flock.0
  391.     2662    1127 57.6% 05-Jan-97 11:39:56 +fork.0
  392.     1360     720 47.0% 05-Jan-97 11:40:00 +fsync.0
  393.     3463    1390 59.8% 05-Jan-97 11:40:04 +getfsstat.0
  394.     1481     648 56.2% 05-Jan-97 11:40:08 +getgid.0
  395.     1895     774 59.1% 05-Jan-97 11:40:12 +getgroups.0
  396.     4114    1513 63.2% 05-Jan-97 11:40:16 +getitimer.0
  397.     3001    1262 57.9% 05-Jan-97 11:40:20 +getlogin.0
  398.     1587     747 52.9% 05-Jan-97 11:40:26 +getpeername.0
  399.     2041     927 54.5% 05-Jan-97 11:40:28 +getpgrp.0
  400.     1181     545 53.8% 05-Jan-97 11:40:32 +getpid.0
  401.     2978    1127 62.1% 05-Jan-97 11:40:38 +getpriority.0
  402.     5407    2013 62.7% 05-Jan-97 11:40:44 +getrlimit.0
  403.     5443    1800 66.9% 05-Jan-97 11:40:48 +getrusage.0
  404.     1563     752 51.8% 05-Jan-97 11:40:52 +getsockname.0
  405.    11123    3892 65.0% 05-Jan-97 11:41:02 +getsockopt.0
  406.     2894    1253 56.7% 05-Jan-97 11:41:06 +gettimeofday.0
  407.     1431     627 56.1% 05-Jan-97 11:41:10 +getuid.0
  408.    30204    9804 67.5% 05-Jan-97 11:41:28 +intro.0
  409.     1829     879 51.9% 05-Jan-97 11:41:32 +ioctl.0
  410.     3343    1317 60.6% 05-Jan-97 11:41:38 +kill.0
  411.     3598    1365 62.0% 05-Jan-97 11:41:42 +link.0
  412.     1829     879 51.9% 05-Jan-97 11:41:46 +listen.0
  413.     2487    1047 57.9% 05-Jan-97 11:41:52 +lseek.0
  414.     2909    1169 59.8% 05-Jan-97 11:41:56 +mkdir.0
  415.     3104    1229 60.4% 05-Jan-97 11:42:02 +mkfifo.0
  416.     3175    1268 60.0% 05-Jan-97 11:42:06 +mknod.0
  417.     7055    2479 64.8% 05-Jan-97 11:42:14 +open.0
  418.     4001    1522 61.9% 05-Jan-97 11:42:20 +pathconf.0
  419.     2181    1037 52.4% 05-Jan-97 11:42:24 +pipe.0
  420.     2483    1088 56.1% 05-Jan-97 11:42:28 +profil.0
  421.    12746    3896 69.4% 05-Jan-97 11:42:38 +ptrace.0
  422.     4138    1691 59.1% 05-Jan-97 11:42:44 +read.0
  423.     1919     878 54.2% 05-Jan-97 11:42:48 +readlink.0
  424.     7546    2906 61.4% 05-Jan-97 11:42:56 +recv.0
  425.     4773    1825 61.7% 05-Jan-97 11:43:02 +rename.0
  426.     2355     997 57.6% 05-Jan-97 11:43:06 +rmdir.0
  427.     5101    1934 62.0% 05-Jan-97 11:43:12 +select.0
  428.     3938    1570 60.1% 05-Jan-97 11:43:18 +send.0
  429.     1510     707 53.1% 05-Jan-97 11:43:22 +setgroups.0
  430.     2695     936 65.2% 05-Jan-97 11:43:26 +setuid.0
  431.     1246     592 52.4% 05-Jan-97 11:43:30 +shutdown.0
  432.    11384    3857 66.1% 05-Jan-97 11:43:42 +sigaction.0
  433.     1255     614 51.0% 05-Jan-97 11:43:46 +sigpending.0
  434.     2423    1012 58.2% 05-Jan-97 11:43:50 +sigprocmask.0
  435.     2103     954 54.6% 05-Jan-97 11:43:54 +sigreturn.0
  436.      539     292 45.8% 05-Jan-97 11:43:58 +sigstack.0
  437.     1614     779 51.7% 05-Jan-97 11:44:00 +sigsuspend.0
  438.     6760    2707 59.9% 05-Jan-97 11:44:08 +socket.0
  439.     1879     791 57.9% 05-Jan-97 11:44:12 +socketpair.0
  440.     7213    2601 63.9% 05-Jan-97 11:44:20 +stat.0
  441.     3770    1413 62.5% 05-Jan-97 11:44:24 +statfs.0
  442.     3522    1199 65.9% 05-Jan-97 11:44:30 +symlink.0
  443.     1165     622 46.6% 05-Jan-97 11:44:34 +sync.0
  444.     2668    1142 57.1% 05-Jan-97 11:44:38 +truncate.0
  445.     1530     739 51.6% 05-Jan-97 11:44:42 +umask.0
  446.     2756    1166 57.6% 05-Jan-97 11:44:48 +unlink.0
  447.     2853    1154 59.5% 05-Jan-97 11:44:52 +utimes.0
  448.     2468    1207 51.0% 05-Jan-97 11:44:56 +vfork.0
  449.     7762    2471 68.1% 05-Jan-97 11:45:04 +wait.0
  450.     4862    1931 60.2% 05-Jan-97 11:45:10 +write.0
  451.      877     451 48.5% 05-Jan-97 11:45:14 +abort.0
  452.      832     407 51.0% 05-Jan-97 11:45:16 +abs.0
  453.      828     410 50.4% 05-Jan-97 11:45:20 +acos.0
  454.      877     430 50.9% 05-Jan-97 11:45:24 +acosh.0
  455.     1410     668 52.6% 05-Jan-97 11:45:28 +alarm.0
  456.      973     491 49.5% 05-Jan-97 11:45:32 +alloca.0
  457.      831     411 50.5% 05-Jan-97 11:45:36 +asin.0
  458.     1017     444 56.3% 05-Jan-97 11:45:40 +asinh.0
  459.     1429     660 53.8% 05-Jan-97 11:45:44 +assert.0
  460.      853     425 50.1% 05-Jan-97 11:45:48 +atan.0
  461.      884     433 51.0% 05-Jan-97 11:45:52 +atanh.0
  462.     1406     692 50.7% 05-Jan-97 11:45:56 +atexit.0
  463.      839     445 46.9% 05-Jan-97 11:45:58 +atof.0
  464.      843     452 46.3% 05-Jan-97 11:46:02 +atoi.0
  465.      859     456 46.9% 05-Jan-97 11:46:06 +atol.0
  466.      940     476 49.3% 05-Jan-97 11:46:10 +bcmp.0
  467.      823     415 49.5% 05-Jan-97 11:46:14 +bcopy.0
  468.     4339    1188 72.6% 05-Jan-97 11:46:18 +bitstring.0
  469.     1910     818 57.1% 05-Jan-97 11:46:22 +bsearch.0
  470.     2482     735 70.3% 05-Jan-97 11:46:28 +bstring.0
  471.     8445    3072 63.6% 05-Jan-97 11:46:32 +btree.0
  472.     1491     678 54.5% 05-Jan-97 11:46:36 +byteorder.0
  473.      710     376 47.0% 05-Jan-97 11:46:38 +bzero.0
  474.     1019     503 50.6% 05-Jan-97 11:46:42 +calloc.0
  475.      811     407 49.8% 05-Jan-97 11:46:46 +ceil.0
  476.      892     453 49.2% 05-Jan-97 11:46:50 +clock.0
  477.     1022     512 49.9% 05-Jan-97 11:46:54 +cos.0
  478.      798     381 52.2% 05-Jan-97 11:46:58 +cosh.0
  479.     1016     494 51.3% 05-Jan-97 11:47:00 +creat.0
  480.     6262    2322 62.9% 05-Jan-97 11:47:08 +crypt.0
  481.     1619     800 50.5% 05-Jan-97 11:47:12 +ctermid.0
  482.     7286    2506 65.6% 05-Jan-97 11:47:14 +ctime.0
  483.     1839     676 63.2% 05-Jan-97 11:47:20 +ctype.0
  484.     7403    1896 74.3% 05-Jan-97 11:47:30 +curses.0
  485.     2624    1090 58.4% 05-Jan-97 11:47:34 +cuserid.0
  486.    16119    4756 70.4% 05-Jan-97 11:47:38 +dbopen.0
  487.     4199    1382 67.0% 05-Jan-97 11:47:44 +directory.0
  488.      834     433 48.0% 05-Jan-97 11:47:48 +div.0
  489.      862     435 49.5% 05-Jan-97 11:47:52 +end.0
  490.     6474    2113 67.3% 05-Jan-97 11:47:58 +exec.0
  491.     1112     541 51.3% 05-Jan-97 11:48:02 +exit.0
  492.     6074    2307 62.0% 05-Jan-97 11:48:10 +exp.0
  493.      901     429 52.3% 05-Jan-97 11:48:12 +fabs.0
  494.     1329     671 49.5% 05-Jan-97 11:48:16 +fclose.0
  495.     1853     676 63.5% 05-Jan-97 11:48:22 +ferror.0
  496.     1864     845 54.6% 05-Jan-97 11:48:26 +fflush.0
  497.      763     401 47.4% 05-Jan-97 11:48:28 +ffs.0
  498.     2327    1074 53.8% 05-Jan-97 11:48:34 +fgetln.0
  499.     2664    1136 57.3% 05-Jan-97 11:48:38 +fgets.0
  500.      823     410 50.1% 05-Jan-97 11:48:42 +floor.0
  501.     2678    1042 61.0% 05-Jan-97 11:48:46 +fnmatch.0
  502.     4839    1654 65.8% 05-Jan-97 11:48:54 +fopen.0
  503.     1462     638 56.3% 05-Jan-97 11:48:58 +fputs.0
  504.     1992     778 60.9% 05-Jan-97 11:49:02 +fread.0
  505.     1135     562 50.4% 05-Jan-97 11:49:06 +free.0
  506.     1200     599 50.0% 05-Jan-97 11:49:10 +frexp.0
  507.     3670    1302 64.5% 05-Jan-97 11:49:16 +fseek.0
  508.     1708     798 53.2% 05-Jan-97 11:49:18 +ftime.0
  509.    23133    5928 74.3% 05-Jan-97 11:49:32 +fts.0
  510.     4022    1503 62.6% 05-Jan-97 11:49:38 +funopen.0
  511.     2343     995 57.5% 05-Jan-97 11:49:42 +getc.0
  512.     2990    1295 56.6% 05-Jan-97 11:49:48 +getcwd.0
  513.      905     470 48.0% 05-Jan-97 11:49:52 +getdtablesize.0
  514.     2956    1100 62.7% 05-Jan-97 11:49:56 +getenv.0
  515.     4691    1606 65.7% 05-Jan-97 11:50:02 +getgrent.0
  516.     7183    2459 65.7% 05-Jan-97 11:50:08 +gethostbyname.0
  517.     1361     640 52.9% 05-Jan-97 11:50:12 +gethostid.0
  518.     2018     897 55.5% 05-Jan-97 11:50:16 +gethostname.0
  519.     2196     891 59.4% 05-Jan-97 11:50:20 +getmntinfo.0
  520.     3526    1264 64.1% 05-Jan-97 11:50:26 +getnetent.0
  521.     6468    2282 64.7% 05-Jan-97 11:50:32 +getopt.0
  522.      851     446 47.5% 05-Jan-97 11:50:34 +getpagesize.0
  523.     1679     782 53.4% 05-Jan-97 11:50:38 +getpass.0
  524.     3295    1123 65.9% 05-Jan-97 11:50:42 +getprotoent.0
  525.     5429    1898 65.0% 05-Jan-97 11:50:48 +getpwent.0
  526.     3639    1282 64.7% 05-Jan-97 11:50:54 +getservent.0
  527.     3706    1229 66.8% 05-Jan-97 11:50:58 +getsubopt.0
  528.     4975    1762 64.5% 05-Jan-97 11:51:04 +getttyent.0
  529.     1776     658 62.9% 05-Jan-97 11:51:08 +getusershell.0
  530.    11413    3747 67.1% 05-Jan-97 11:51:16 +glob.0
  531.     4623    1858 59.8% 05-Jan-97 11:51:20 +hash.0
  532.     1021     498 51.2% 05-Jan-97 11:51:24 +index.0
  533.     5415    1760 67.4% 05-Jan-97 11:51:30 +inet.0
  534.     1520     681 55.1% 05-Jan-97 11:51:32 +initgroups.0
  535.     1460     619 57.6% 05-Jan-97 11:51:36 +insque.0
  536.     2714    1131 58.3% 05-Jan-97 11:51:42 +intro.0
  537.     1081     502 53.5% 05-Jan-97 11:51:46 +isalnum.0
  538.     1303     569 56.3% 05-Jan-97 11:51:52 +isalpha.0
  539.      924     457 50.5% 05-Jan-97 11:51:56 +isascii.0
  540.     1024     477 53.4% 05-Jan-97 11:52:00 +iscntrl.0
  541.     1049     484 53.8% 05-Jan-97 11:52:04 +isdigit.0
  542.     1078     499 53.7% 05-Jan-97 11:52:08 +isgraph.0
  543.     1020     491 51.8% 05-Jan-97 11:52:12 +isinf.0
  544.     1245     560 55.0% 05-Jan-97 11:52:16 +islower.0
  545.     1081     499 53.8% 05-Jan-97 11:52:20 +isprint.0
  546.     1097     510 53.5% 05-Jan-97 11:52:24 +ispunct.0
  547.     1462     626 57.1% 05-Jan-97 11:52:30 +isspace.0
  548.     1291     587 54.5% 05-Jan-97 11:52:34 +isupper.0
  549.     1060     488 53.9% 05-Jan-97 11:52:38 +isxdigit.0
  550.     1921     848 55.8% 05-Jan-97 11:52:42 +killpg.0
  551.      757     385 49.1% 05-Jan-97 11:52:46 +labs.0
  552.     1015     514 49.3% 05-Jan-97 11:52:50 +ldexp.0
  553.      882     446 49.4% 05-Jan-97 11:52:54 +ldiv.0
  554.     2922    1234 57.7% 05-Jan-97 11:52:58 +linkaddr.0
  555.     1680     826 50.8% 05-Jan-97 11:53:02 +malloc.0
  556.     1038     498 52.0% 05-Jan-97 11:53:06 +memccpy.0
  557.     1046     516 50.6% 05-Jan-97 11:53:10 +memchr.0
  558.     1190     581 51.1% 05-Jan-97 11:53:14 +memcmp.0
  559.     1172     549 53.1% 05-Jan-97 11:53:16 +memcpy.0
  560.     1003     484 51.7% 05-Jan-97 11:53:20 +memmove.0
  561.     1255     517 58.8% 05-Jan-97 11:53:24 +memory.0
  562.      755     402 46.7% 05-Jan-97 11:53:28 +memset.0
  563.     2499    1018 59.2% 05-Jan-97 11:53:32 +mktemp.0
  564.     1055     509 51.7% 05-Jan-97 11:53:36 +modf.0
  565.     6514    1945 70.1% 05-Jan-97 11:53:40 +mpool.0
  566.     7231    2485 65.6% 05-Jan-97 11:53:42 +newctime.0
  567.     9001    2621 70.8% 05-Jan-97 11:53:46 +newtzset.0
  568.     1051     541 48.5% 05-Jan-97 11:53:48 +nice.0
  569.     2955    1305 55.8% 05-Jan-97 11:53:54 +ns.0
  570.     1126     562 50.0% 05-Jan-97 11:53:56 +pause.0
  571.     1217     605 50.2% 05-Jan-97 11:54:00 +perror.0
  572.     3565    1444 59.4% 05-Jan-97 11:54:06 +popen.0
  573.    14716    4505 69.3% 05-Jan-97 11:54:18 +printf.0
  574.     1892     797 57.8% 05-Jan-97 11:54:24 +psignal.0
  575.     2179     892 59.0% 05-Jan-97 11:54:28 +putc.0
  576.      674     345 48.8% 05-Jan-97 11:54:32 +qabs.0
  577.      789     400 49.3% 05-Jan-97 11:54:34 +qdiv.0
  578.     5757    2041 64.5% 05-Jan-97 11:54:42 +qsort.0
  579.    15795    2721 82.7% 05-Jan-97 11:54:50 +queue.0
  580.     3669    1509 58.8% 05-Jan-97 11:54:56 +radixsort.0
  581.     1039     517 50.2% 05-Jan-97 11:55:00 +raise.0
  582.     1305     633 51.4% 05-Jan-97 11:55:02 +rand.0
  583.     4505    1731 61.5% 05-Jan-97 11:55:08 +random.0
  584.     5548    2052 63.0% 05-Jan-97 11:55:14 +rcmd.0
  585.     1762     757 57.0% 05-Jan-97 11:55:18 +realloc.0
  586.     6439    2284 64.5% 05-Jan-97 11:55:20 +recno.0
  587.    20211    6741 66.6% 05-Jan-97 11:55:24 +regex.0
  588.     8610    3186 62.9% 05-Jan-97 11:55:32 +regexp.0
  589.     1080     548 49.2% 05-Jan-97 11:55:36 +remove.0
  590.     9080    3042 66.4% 05-Jan-97 11:55:44 +resolver.0
  591.      993     482 51.4% 05-Jan-97 11:55:48 +rindex.0
  592.    10359    3318 67.9% 05-Jan-97 11:55:58 +scanf.0
  593.     4441    1738 60.8% 05-Jan-97 11:56:04 +setbuf.0
  594.     4033    1303 67.6% 05-Jan-97 11:56:10 +setjmp.0
  595.     1936     865 55.3% 05-Jan-97 11:56:14 +setregid.0
  596.     1801     815 54.7% 05-Jan-97 11:56:18 +setreuid.0
  597.     1339     652 51.3% 05-Jan-97 11:56:20 +sigblock.0
  598.     2529    1099 56.5% 05-Jan-97 11:56:24 +siginterrupt.0
  599.     7301    2654 63.6% 05-Jan-97 11:56:34 +signal.0
  600.     1206     589 51.1% 05-Jan-97 11:56:38 +sigpause.0
  601.     1289     632 50.9% 05-Jan-97 11:56:42 +sigsetmask.0
  602.     2787     900 67.7% 05-Jan-97 11:56:46 +sigsetops.0
  603.    10246    3580 65.0% 05-Jan-97 11:56:58 +sigvec.0
  604.      933     461 50.5% 05-Jan-97 11:57:00 +sin.0
  605.     1000     479 52.1% 05-Jan-97 11:57:04 +sinh.0
  606.     2199     968 55.9% 05-Jan-97 11:57:10 +sleep.0
  607.     1033     442 57.2% 05-Jan-97 11:57:12 +sqrt.0
  608.     4938    1685 65.8% 05-Jan-97 11:57:18 +stdarg.0
  609.     8482    2911 65.6% 05-Jan-97 11:57:24 +stdio.0
  610.     1503     615 59.0% 05-Jan-97 11:57:28 +strcasecmp.0
  611.     1364     551 59.6% 05-Jan-97 11:57:32 +strcat.0
  612.     1146     544 52.5% 05-Jan-97 11:57:36 +strchr.0
  613.     1421     587 58.6% 05-Jan-97 11:57:40 +strcmp.0
  614.     1021     487 52.3% 05-Jan-97 11:57:44 +strcoll.0
  615.     1614     630 60.9% 05-Jan-97 11:57:48 +strcpy.0
  616.     1151     532 53.7% 05-Jan-97 11:57:52 +strcspn.0
  617.      812     418 48.5% 05-Jan-97 11:57:56 +strdup.0
  618.      910     479 47.3% 05-Jan-97 11:58:00 +strerror.0
  619.     5201    1574 69.7% 05-Jan-97 11:58:06 +strftime.0
  620.     4445    1011 77.2% 05-Jan-97 11:58:14 +string.0
  621.      818     415 49.2% 05-Jan-97 11:58:18 +strlen.0
  622.     3893    1284 67.0% 05-Jan-97 11:58:22 +strmode.0
  623.     1089     499 54.1% 05-Jan-97 11:58:26 +strpbrk.0
  624.     1097     526 52.0% 05-Jan-97 11:58:30 +strrchr.0
  625.     1560     708 54.6% 05-Jan-97 11:58:34 +strsep.0
  626.      776     416 46.3% 05-Jan-97 11:58:38 +strsignal.0
  627.     1023     494 51.7% 05-Jan-97 11:58:42 +strspn.0
  628.     1225     515 57.9% 05-Jan-97 11:58:46 +strstr.0
  629.     2099     895 57.3% 05-Jan-97 11:58:50 +strtod.0
  630.     2128     979 53.9% 05-Jan-97 11:58:54 +strtok.0
  631.     3148    1254 60.1% 05-Jan-97 11:59:00 +strtol.0
  632.     3343    1314 60.6% 05-Jan-97 11:59:04 +strtoul.0
  633.      839     435 48.1% 05-Jan-97 11:59:08 +strxfrm.0
  634.      829     417 49.6% 05-Jan-97 11:59:12 +swab.0
  635.     5221    1861 64.3% 05-Jan-97 11:59:18 +sysconf.0
  636.     6551    2452 62.5% 05-Jan-97 11:59:26 +syslog.0
  637.     1492     709 52.4% 05-Jan-97 11:59:30 +system.0
  638.     1025     511 50.1% 05-Jan-97 11:59:34 +tan.0
  639.      969     453 53.2% 05-Jan-97 11:59:38 +tanh.0
  640.     1452     666 54.1% 05-Jan-97 11:59:42 +tcgetpgrp.0
  641.     3458    1224 64.6% 05-Jan-97 11:59:46 +tcsendbreak.0
  642.     9761    2751 71.8% 05-Jan-97 11:59:54 +tcsetattr.0
  643.     2196     859 60.8% 05-Jan-97 12:00:00 +tcsetpgrp.0
  644.     5685    2119 62.7% 05-Jan-97 12:00:06 +termcap.0
  645.     1227     634 48.3% 05-Jan-97 12:00:10 +time.0
  646.     4364    1721 60.5% 05-Jan-97 12:00:12 +time2posix.0
  647.     2598    1019 60.7% 05-Jan-97 12:00:16 +times.0
  648.     4831    1801 62.7% 05-Jan-97 12:00:22 +tmpnam.0
  649.     1133     520 54.1% 05-Jan-97 12:00:26 +tolower.0
  650.     1086     501 53.8% 05-Jan-97 12:00:30 +toupper.0
  651.     2202     912 58.5% 05-Jan-97 12:00:36 +ttyname.0
  652.     1586     762 51.9% 05-Jan-97 12:00:40 +ualarm.0
  653.     1621     761 53.0% 05-Jan-97 12:00:44 +uname.0
  654.     1636     799 51.1% 05-Jan-97 12:00:48 +ungetc.0
  655.     4260    1551 63.5% 05-Jan-97 12:00:52 +unvis.0
  656.     1560     737 52.7% 05-Jan-97 12:00:56 +usleep.0
  657.     3549    1457 58.9% 05-Jan-97 12:01:00 +utime.0
  658.     1347     663 50.7% 05-Jan-97 12:01:04 +valloc.0
  659.     5580    2013 63.9% 05-Jan-97 12:01:12 +vis.0
  660.     3850    1550 59.7% 05-Jan-97 12:01:16 +vtimes.0
  661.     2316    1065 54.0% 05-Jan-97 12:01:20 +icmp.0
  662.     2699    1188 55.9% 05-Jan-97 12:01:24 +imp.0
  663.     4233    1837 56.6% 05-Jan-97 12:01:30 +inet.0
  664.     9706    3716 61.7% 05-Jan-97 12:01:38 +ip.0
  665.     1627     807 50.3% 05-Jan-97 12:01:40 +lo.0
  666.    11434    4045 64.6% 05-Jan-97 12:01:48 +netintro.0
  667.      528     294 44.3% 05-Jan-97 12:01:50 +null.0
  668.     6139    2102 65.7% 05-Jan-97 12:01:56 +pty.0
  669.    10040    3792 62.2% 05-Jan-97 12:02:00 +route.0
  670.     4450    1944 56.3% 05-Jan-97 12:02:06 +tcp.0
  671.    40811   12822 68.5% 05-Jan-97 12:02:30 +termios.0
  672.    22154    6821 69.2% 05-Jan-97 12:02:42 +tp.0
  673.    14292    4362 69.4% 05-Jan-97 12:02:52 +tty.0
  674.     2666    1197 55.1% 05-Jan-97 12:02:58 +udp.0
  675.     3280    1423 56.6% 05-Jan-97 12:03:02 +unix.0
  676.    16794    5075 69.7% 05-Jan-97 12:03:12 +a.out.0
  677.     2518    1124 55.3% 05-Jan-97 12:03:16 +acct.0
  678.     2185     943 56.8% 05-Jan-97 12:03:20 +core.0
  679.     3713    1535 58.6% 05-Jan-97 12:03:24 +dir.0
  680.     4534    1312 71.0% 05-Jan-97 12:03:30 +disktab.0
  681.     1094     572 47.7% 05-Jan-97 12:03:34 +ethers.0
  682.    13410    4535 66.1% 05-Jan-97 12:03:40 +fs.0
  683.     6314    2380 62.3% 05-Jan-97 12:03:46 +fstab.0
  684.     2578    1146 55.5% 05-Jan-97 12:03:50 +group.0
  685.     2099    1008 51.9% 05-Jan-97 12:03:54 +hosts.0
  686.    20940    6290 69.9% 05-Jan-97 12:04:06 +link.0
  687.      992     580 41.5% 05-Jan-97 12:04:08 +motd.0
  688.     2259    1028 54.4% 05-Jan-97 12:04:12 +netgroup.0
  689.     1627     816 49.8% 05-Jan-97 12:04:16 +networks.0
  690.     5967    2447 58.9% 05-Jan-97 12:04:22 +passwd.0
  691.     1393     730 47.5% 05-Jan-97 12:04:26 +phones.0
  692.     8096    2801 65.4% 05-Jan-97 12:04:36 +printcap.0
  693.     1220     608 50.1% 05-Jan-97 12:04:40 +protocols.0
  694.     4708    2020 57.0% 05-Jan-97 12:04:44 +remote.0
  695.     6940    2522 63.6% 05-Jan-97 12:04:50 +resolv.conf.0
  696.     2247     883 60.7% 05-Jan-97 12:04:54 +rpc.0
  697.     1397     695 50.2% 05-Jan-97 12:04:58 +services.0
  698.      871     481 44.7% 05-Jan-97 12:05:00 +shells.0
  699.     5989    2229 62.7% 05-Jan-97 12:05:06 +stab.0
  700.     3462    1269 63.3% 05-Jan-97 12:05:10 +types.0
  701.     5000    1604 67.9% 05-Jan-97 12:05:12 +tzfile.0
  702.     3998    1487 62.8% 05-Jan-97 12:05:18 +utmp.0
  703.     4133    1743 57.8% 05-Jan-97 12:05:22 +ascii.0
  704.     3997    1681 57.9% 05-Jan-97 12:05:28 +environ.0
  705.     9332    2598 72.1% 05-Jan-97 12:05:40 +hier.0
  706.     2522    1138 54.8% 05-Jan-97 12:05:44 +hostname.0
  707.      457     266 41.7% 05-Jan-97 12:05:46 +intro.0
  708.     4680    2092 55.2% 05-Jan-97 12:05:50 +mailaddr.0
  709.    12544    4093 67.3% 05-Jan-97 12:06:12 +mdoc.0
  710.    69897   23428 66.4% 05-Jan-97 12:07:06 +mdoc.samples.0
  711.     1303     368 71.7% 05-Jan-97 12:07:10 +operator.0
  712.    11937    4203 64.7% 05-Jan-97 12:07:14 +re_format.0
  713.     1044     546 47.7% 05-Jan-97 12:07:18 +intro.0
  714.     7128    2391 66.4% 05-Jan-97 12:07:20 +ixtimezone.0
  715.     1643     755 54.0% 05-Jan-97 12:07:24 +tzselect.0
  716.    11848    3934 66.7% 05-Jan-97 12:07:26 +zic.0
  717. -------- ------- ----- --------- --------
  718.  5960477 2228949 62.6% 14-Jan-97 22:38:30   573 files
  719.