在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Minix3最新源码 minix 3.2.0版本

Minix3最新源码 minix 3.2.0版本

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:17.74M
  • 下载次数:7
  • 浏览次数:238
  • 发布时间:2021-03-05
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
Minix3最新源码 版本:minix 3.2.0。 minix使用微内核设计,内核代码只有几千行,是阅读源码和学习操作系统很好的选择。
【实例截图】
【核心代码】
07ab38a9-e3eb-44b9-8b22-28b640da417a
└── minix3
├── benchmarks
│   ├── Makefile
│   ├── run
│   └── unixbench-5.1.2
│   ├── Makefile
│   ├── pgms
│   │   ├── gfx-x11
│   │   ├── index.base
│   │   ├── multi.sh
│   │   ├── tst.sh
│   │   └── unixbench.logo
│   ├── README
│   ├── Run
│   ├── run.sh
│   ├── src
│   │   ├── arith.c
│   │   ├── big.c
│   │   ├── context1.c
│   │   ├── dhry_1.c
│   │   ├── dhry_2.c
│   │   ├── dhry.h
│   │   ├── dummy.c
│   │   ├── execl.c
│   │   ├── fstime.c
│   │   ├── hanoi.c
│   │   ├── looper.c
│   │   ├── pipe.c
│   │   ├── spawn.c
│   │   ├── syscall.c
│   │   ├── timeit.c
│   │   ├── time-polling.c
│   │   ├── ubgears.c
│   │   └── whets.c
│   ├── testdir
│   │   ├── cctest.c
│   │   ├── dc.dat
│   │   ├── large.txt
│   │   └── sort.src
│   ├── USAGE
│   └── WRITING_TESTS
├── bin
│   ├── date
│   │   ├── date.1
│   │   ├── date.c
│   │   ├── extern.h
│   │   ├── Makefile
│   │   └── netdate.c
│   ├── Makefile
│   ├── Makefile.inc
│   ├── mkdir
│   │   ├── Makefile
│   │   ├── mkdir.1
│   │   └── mkdir.c
│   ├── rm
│   │   ├── Makefile
│   │   ├── rm.1
│   │   └── rm.c
│   └── rmdir
│   ├── Makefile
│   ├── rmdir.1
│   └── rmdir.c
├── commands
│   ├── acknm
│   │   ├── acknm.c
│   │   └── Makefile
│   ├── acksize
│   │   ├── acksize.c
│   │   └── Makefile
│   ├── add_route
│   │   ├── add_route.c
│   │   └── Makefile
│   ├── arp
│   │   ├── arp.c
│   │   └── Makefile
│   ├── ash
│   │   ├── alias.c
│   │   ├── alias.h
│   │   ├── arith_lex.h
│   │   ├── arith_lex.l
│   │   ├── arith.y
│   │   ├── bltin
│   │   │   ├── binary_op
│   │   │   ├── bltin.h
│   │   │   ├── catf.c
│   │   │   ├── echo.c
│   │   │   ├── error.c
│   │   │   ├── expr.c
│   │   │   ├── LICENSE
│   │   │   ├── line.c
│   │   │   ├── makefile.not
│   │   │   ├── mkexpr
│   │   │   ├── myregexp.h
│   │   │   ├── nlecho.c
│   │   │   ├── regexp.c
│   │   │   ├── stalloc.c
│   │   │   ├── umask.c
│   │   │   └── unary_op
│   │   ├── builtins
│   │   ├── builtins.def
│   │   ├── cd.c
│   │   ├── cd.h
│   │   ├── complete.c
│   │   ├── complete.h
│   │   ├── errmsg.c
│   │   ├── errmsg.h
│   │   ├── error.c
│   │   ├── error.h
│   │   ├── eval.c
│   │   ├── eval.h
│   │   ├── exec.c
│   │   ├── exec.h
│   │   ├── expand.c
│   │   ├── expand.h
│   │   ├── funcs
│   │   │   ├── cmv
│   │   │   ├── dirs
│   │   │   ├── kill
│   │   │   ├── login
│   │   │   ├── newgrp
│   │   │   ├── popd
│   │   │   ├── pushd
│   │   │   └── suspend
│   │   ├── histedit.c
│   │   ├── init.h
│   │   ├── input.c
│   │   ├── input.h
│   │   ├── jobs.c
│   │   ├── jobs.h
│   │   ├── machdep.h
│   │   ├── mail.c
│   │   ├── mail.h
│   │   ├── main.c
│   │   ├── main.h
│   │   ├── Makefile
│   │   ├── memalloc.c
│   │   ├── memalloc.h
│   │   ├── miscbltin.c
│   │   ├── mkbuiltins
│   │   ├── mkinit.c
│   │   ├── mknodes.c
│   │   ├── mksignames.c
│   │   ├── mksyntax.c
│   │   ├── mktokens
│   │   ├── myhistedit.h
│   │   ├── mystring.c
│   │   ├── mystring.h
│   │   ├── nodes.c.pat
│   │   ├── nodetypes
│   │   ├── options.c
│   │   ├── options.h
│   │   ├── output.c
│   │   ├── output.h
│   │   ├── parser.c
│   │   ├── parser.h
│   │   ├── redir.c
│   │   ├── redir.h
│   │   ├── setmode.c
│   │   ├── shell.h
│   │   ├── show.c
│   │   ├── show.h
│   │   ├── TOUR
│   │   ├── trap.c
│   │   ├── trap.h
│   │   ├── var.c
│   │   └── var.h
│   ├── at
│   │   ├── at.c
│   │   └── Makefile
│   ├── atnormalize
│   │   ├── atnormalize.c
│   │   └── Makefile
│   ├── autopart
│   │   ├── autopart.c
│   │   └── Makefile
│   ├── awk
│   │   ├── awk.1
│   │   ├── awkgram.y
│   │   ├── awk.h
│   │   ├── b.c
│   │   ├── FIXES
│   │   ├── lex.c
│   │   ├── lib.c
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── Makefile.orig
│   │   ├── maketab.c
│   │   ├── parse.c
│   │   ├── proto.h
│   │   ├── README
│   │   ├── run.c
│   │   └── tran.c
│   ├── backup
│   │   ├── backup.c
│   │   └── Makefile
│   ├── badblocks
│   │   ├── badblocks.c
│   │   └── Makefile
│   ├── banner
│   │   ├── banner.c
│   │   └── Makefile
│   ├── basename
│   │   ├── basename.c
│   │   └── Makefile
│   ├── btrace
│   │   ├── btrace.c
│   │   └── Makefile
│   ├── cal
│   │   ├── cal.c
│   │   └── Makefile
│   ├── calendar
│   │   ├── calendar.c
│   │   └── Makefile
│   ├── cat
│   │   ├── cat.c
│   │   └── Makefile
│   ├── cawf
│   │   ├── ansi.h
│   │   ├── bsfilt.c
│   │   ├── cawf.c
│   │   ├── cawf.h
│   │   ├── cawflib.h
│   │   ├── common
│   │   ├── device.c
│   │   ├── device.cf
│   │   ├── diffs
│   │   ├── dumb.dev
│   │   ├── error.c
│   │   ├── expand.c
│   │   ├── expr.c
│   │   ├── getopt.c
│   │   ├── macsup.c
│   │   ├── Makefile
│   │   ├── man.mac
│   │   ├── me.mac
│   │   ├── mnx.mac
│   │   ├── ms.mac
│   │   ├── nreq.c
│   │   ├── output.c
│   │   ├── pass2.c
│   │   ├── pass3.c
│   │   ├── proto.h
│   │   ├── README
│   │   ├── regerror.c
│   │   ├── regexp.c
│   │   ├── regexp.h
│   │   ├── regmagic.h
│   │   ├── store.c
│   │   └── string.c
│   ├── cd
│   │   ├── cd.sh
│   │   └── Makefile
│   ├── cdprobe
│   │   ├── cdprobe.c
│   │   └── Makefile
│   ├── checkhier
│   │   ├── checkhier.sh
│   │   └── Makefile
│   ├── chmod
│   │   ├── chmod.c
│   │   └── Makefile
│   ├── chown
│   │   ├── chown.c
│   │   └── Makefile
│   ├── chroot
│   │   ├── chroot.c
│   │   └── Makefile
│   ├── ci
│   │   ├── ci.c
│   │   └── Makefile
│   ├── cksum
│   │   ├── cksum.c
│   │   └── Makefile
│   ├── cleantmp
│   │   ├── cleantmp.c
│   │   └── Makefile
│   ├── clear
│   │   ├── clear.sh
│   │   └── Makefile
│   ├── cmp
│   │   ├── cmp.c
│   │   └── Makefile
│   ├── co
│   │   ├── co.c
│   │   └── Makefile
│   ├── comm
│   │   ├── comm.c
│   │   └── Makefile
│   ├── compress
│   │   ├── compress.c
│   │   └── Makefile
│   ├── cp
│   │   ├── cp.c
│   │   └── Makefile
│   ├── crc
│   │   ├── crc.c
│   │   └── Makefile
│   ├── cron
│   │   ├── cron.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── misc.h
│   │   ├── tab.c
│   │   └── tab.h
│   ├── crontab
│   │   ├── crontab.c
│   │   └── Makefile
│   ├── cut
│   │   ├── cut.1
│   │   ├── cut.c
│   │   ├── Makefile
│   │   └── x_cut.c
│   ├── dd
│   │   ├── dd.c
│   │   └── Makefile
│   ├── decomp16
│   │   ├── decomp16.c
│   │   └── Makefile
│   ├── DESCRIBE
│   │   ├── DESCRIBE.sh
│   │   └── Makefile
│   ├── dev2name
│   │   ├── dev2name.c
│   │   └── Makefile
│   ├── devsize
│   │   ├── devsize.c
│   │   └── Makefile
│   ├── df
│   │   ├── df.c
│   │   └── Makefile
│   ├── dhcpd
│   │   ├── arp.h
│   │   ├── devices.c
│   │   ├── dhcpd.c
│   │   ├── dhcpd.h
│   │   ├── ether.c
│   │   ├── Makefile
│   │   └── tags.c
│   ├── dhrystone
│   │   ├── dhrystone.c
│   │   └── Makefile
│   ├── diff
│   │   ├── diff.1
│   │   ├── diff.c
│   │   ├── diffdir.c
│   │   ├── diff.h
│   │   ├── diffreg.c
│   │   ├── Makefile
│   │   ├── pathnames.h
│   │   ├── xmalloc.c
│   │   └── xmalloc.h
│   ├── dirname
│   │   ├── dirname.c
│   │   └── Makefile
│   ├── diskctl
│   │   ├── diskctl.c
│   │   └── Makefile
│   ├── dosread
│   │   ├── dosread.c
│   │   └── Makefile
│   ├── du
│   │   ├── du.c
│   │   └── Makefile
│   ├── dumpcore
│   │   ├── dumpcore.c
│   │   └── Makefile
│   ├── ed
│   │   ├── ed.c
│   │   └── Makefile
│   ├── eject
│   │   ├── eject.c
│   │   └── Makefile
│   ├── elvis
│   │   ├── blk.c
│   │   ├── cmd1.c
│   │   ├── cmd2.c
│   │   ├── config.h
│   │   ├── ctags.c
│   │   ├── ctype.c
│   │   ├── ctype.h
│   │   ├── curses.c
│   │   ├── curses.h
│   │   ├── cut.c
│   │   ├── Doc.sh
│   │   ├── elvprsv.c
│   │   ├── elvrec.c
│   │   ├── ex.c
│   │   ├── fmt.c
│   │   ├── input.c
│   │   ├── Knownbug.txt
│   │   ├── main.c
│   │   ├── Makedoc
│   │   ├── Makefile
│   │   ├── Man.sh
│   │   ├── misc.c
│   │   ├── modify.c
│   │   ├── move1.c
│   │   ├── move2.c
│   │   ├── move3.c
│   │   ├── move4.c
│   │   ├── move5.c
│   │   ├── opts.c
│   │   ├── prsvunix.c
│   │   ├── Readme.txt
│   │   ├── recycle.c
│   │   ├── redraw.c
│   │   ├── ref.c
│   │   ├── regexp.c
│   │   ├── regexp.h
│   │   ├── regsub.c
│   │   ├── system.c
│   │   ├── tinyprnt.c
│   │   ├── tinytcap.c
│   │   ├── tio.c
│   │   ├── tmp.c
│   │   ├── unix.c
│   │   ├── vars.c
│   │   ├── vcmd.c
│   │   ├── vi.c
│   │   └── vi.h
│   ├── env
│   │   ├── env.c
│   │   └── Makefile
│   ├── expand
│   │   ├── expand.c
│   │   └── Makefile
│   ├── factor
│   │   ├── factor.c
│   │   └── Makefile
│   ├── fbdctl
│   │   ├── fbdctl.c
│   │   └── Makefile
│   ├── fdisk
│   │   ├── fdisk.c
│   │   └── Makefile
│   ├── fetch
│   │   ├── fetch.1
│   │   ├── fetch.c
│   │   └── Makefile
│   ├── file
│   │   ├── file.c
│   │   └── Makefile
│   ├── find
│   │   ├── extern.h
│   │   ├── find.1
│   │   ├── find.c
│   │   ├── find.h
│   │   ├── function.c
│   │   ├── ls.c
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── operator.c
│   │   └── option.c
│   ├── finger
│   │   ├── finger.c
│   │   └── Makefile
│   ├── fingerd
│   │   ├── fingerd.c
│   │   └── Makefile
│   ├── fix
│   │   ├── fix.c
│   │   └── Makefile
│   ├── fold
│   │   ├── fold.c
│   │   └── Makefile
│   ├── format
│   │   ├── format.c
│   │   └── Makefile
│   ├── fortune
│   │   ├── fortune.c
│   │   ├── fortune.dat
│   │   └── Makefile
│   ├── fsck.mfs
│   │   ├── fsck.c
│   │   └── Makefile
│   ├── ftp101
│   │   ├── crc.c
│   │   ├── file.c
│   │   ├── file.h
│   │   ├── ftp.1
│   │   ├── ftp.c
│   │   ├── ftp.h
│   │   ├── local.c
│   │   ├── local.h
│   │   ├── Makefile
│   │   ├── net.c
│   │   ├── net.h
│   │   ├── other.c
│   │   ├── other.h
│   │   ├── README
│   │   ├── xfer.c
│   │   └── xfer.h
│   ├── gcore
│   │   ├── gcore.c
│   │   └── Makefile
│   ├── gcov-pull
│   │   ├── gcov-pull.c
│   │   └── Makefile
│   ├── getty
│   │   ├── getty.c
│   │   └── Makefile
│   ├── grep
│   │   ├── binary.c
│   │   ├── file.c
│   │   ├── grep.1
│   │   ├── grep.c
│   │   ├── grep.h
│   │   ├── Makefile
│   │   ├── mmfile.c
│   │   ├── queue.c
│   │   ├── readme.md
│   │   └── util.c
│   ├── head
│   │   ├── head.c
│   │   └── Makefile
│   ├── hexdump
│   │   ├── conv.c
│   │   ├── display.c
│   │   ├── hexdump.1
│   │   ├── hexdump.c
│   │   ├── hexdump.h
│   │   ├── hexsyntax.c
│   │   ├── Makefile
│   │   ├── od.1
│   │   ├── odsyntax.c
│   │   └── parse.c
│   ├── host
│   │   ├── host.c
│   │   └── Makefile
│   ├── hostaddr
│   │   ├── hostaddr.c
│   │   └── Makefile
│   ├── id
│   │   ├── groups.1
│   │   ├── id.1
│   │   ├── id.c
│   │   ├── Makefile
│   │   └── whoami.1
│   ├── ifconfig
│   │   ├── ifconfig.c
│   │   └── Makefile
│   ├── ifdef
│   │   ├── ifdef.c
│   │   └── Makefile
│   ├── install
│   │   ├── install.c
│   │   └── Makefile
│   ├── intr
│   │   ├── intr.c
│   │   └── Makefile
│   ├── ipcrm
│   │   ├── ipcrm.c
│   │   └── Makefile
│   ├── ipcs
│   │   ├── ipcs.c
│   │   └── Makefile
│   ├── irdpd
│   │   ├── irdpd.c
│   │   └── Makefile
│   ├── isoread
│   │   ├── isoread.c
│   │   └── Makefile
│   ├── join
│   │   ├── join.c
│   │   └── Makefile
│   ├── kill
│   │   ├── kill.c
│   │   └── Makefile
│   ├── last
│   │   ├── last.c
│   │   └── Makefile
│   ├── leave
│   │   ├── leave.c
│   │   └── Makefile
│   ├── less
│   │   ├── less
│   │   │   ├── brac.c
│   │   │   ├── charset.c
│   │   │   ├── charset.h
│   │   │   ├── ch.c
│   │   │   ├── cmdbuf.c
│   │   │   ├── cmd.h
│   │   │   ├── command.c
│   │   │   ├── decode.c
│   │   │   ├── defines.h
│   │   │   ├── edit.c
│   │   │   ├── filename.c
│   │   │   ├── forwback.c
│   │   │   ├── funcs.h
│   │   │   ├── help.c
│   │   │   ├── ifile.c
│   │   │   ├── input.c
│   │   │   ├── INSTALL
│   │   │   ├── jump.c
│   │   │   ├── less.1
│   │   │   ├── less.h
│   │   │   ├── lesskey.h
│   │   │   ├── lglob.h
│   │   │   ├── LICENSE
│   │   │   ├── line.c
│   │   │   ├── linenum.c
│   │   │   ├── lsystem.c
│   │   │   ├── main.c
│   │   │   ├── Makefile
│   │   │   ├── mark.c
│   │   │   ├── NEWS
│   │   │   ├── optfunc.c
│   │   │   ├── option.c
│   │   │   ├── option.h
│   │   │   ├── opttbl.c
│   │   │   ├── os.c
│   │   │   ├── output.c
│   │   │   ├── pckeys.h
│   │   │   ├── position.c
│   │   │   ├── position.h
│   │   │   ├── prompt.c
│   │   │   ├── README
│   │   │   ├── screen.c
│   │   │   ├── search.c
│   │   │   ├── signal.c
│   │   │   ├── tags.c
│   │   │   ├── ttyin.c
│   │   │   └── version.c
│   │   ├── less2netbsd
│   │   ├── lessecho
│   │   │   ├── lessecho.c
│   │   │   └── Makefile
│   │   ├── lesskey
│   │   │   ├── lesskey.1
│   │   │   ├── lesskey.c
│   │   │   ├── lesskey.h
│   │   │   └── Makefile
│   │   ├── Makefile
│   │   └── Makefile.inc
│   ├── lex
│   │   ├── ccl.c
│   │   ├── config.h
│   │   ├── COPYING
│   │   ├── dfa.c
│   │   ├── ecs.c
│   │   ├── flex.1
│   │   ├── flexdef.h
│   │   ├── FlexLexer.h
│   │   ├── flex.skl
│   │   ├── gen.c
│   │   ├── initscan.c
│   │   ├── libmain.c
│   │   ├── libyywrap.c
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── mkskel.sh
│   │   ├── NEWS
│   │   ├── nfa.c
│   │   ├── parse.y
│   │   ├── scan.l
│   │   ├── sym.c
│   │   ├── tblcmp.c
│   │   ├── version.h
│   │   └── yylex.c
│   ├── loadfont
│   │   ├── loadfont.c
│   │   └── Makefile
│   ├── loadkeys
│   │   ├── loadkeys.c
│   │   └── Makefile
│   ├── loadramdisk
│   │   ├── loadramdisk.c
│   │   └── Makefile
│   ├── logger
│   │   ├── logger.c
│   │   └── Makefile
│   ├── login
│   │   ├── login.c
│   │   └── Makefile
│   ├── look
│   │   ├── look.c
│   │   └── Makefile
│   ├── lp
│   │   ├── lp.c
│   │   └── Makefile
│   ├── lpd
│   │   ├── lpd.c
│   │   └── Makefile
│   ├── ls
│   │   ├── ls.c
│   │   └── Makefile
│   ├── lspci
│   │   ├── lspci.sh
│   │   └── Makefile
│   ├── mail
│   │   ├── mail.c
│   │   └── Makefile
│   ├── make
│   │   ├── arch.c
│   │   ├── buf.c
│   │   ├── buf.h
│   │   ├── compat.c
│   │   ├── cond.c
│   │   ├── config.h
│   │   ├── dir.c
│   │   ├── dir.h
│   │   ├── for.c
│   │   ├── hash.c
│   │   ├── hash.h
│   │   ├── job.c
│   │   ├── job.h
│   │   ├── lst.h
│   │   ├── lst.lib
│   │   │   ├── lstAppend.c
│   │   │   ├── lstAtEnd.c
│   │   │   ├── lstAtFront.c
│   │   │   ├── lstClose.c
│   │   │   ├── lstConcat.c
│   │   │   ├── lstDatum.c
│   │   │   ├── lstDeQueue.c
│   │   │   ├── lstDestroy.c
│   │   │   ├── lstDupl.c
│   │   │   ├── lstEnQueue.c
│   │   │   ├── lstFind.c
│   │   │   ├── lstFindFrom.c
│   │   │   ├── lstFirst.c
│   │   │   ├── lstForEach.c
│   │   │   ├── lstForEachFrom.c
│   │   │   ├── lstInit.c
│   │   │   ├── lstInsert.c
│   │   │   ├── lstInt.h
│   │   │   ├── lstIsAtEnd.c
│   │   │   ├── lstIsEmpty.c
│   │   │   ├── lstLast.c
│   │   │   ├── lstMember.c
│   │   │   ├── lstNext.c
│   │   │   ├── lstOpen.c
│   │   │   ├── lstPrev.c
│   │   │   ├── lstRemove.c
│   │   │   ├── lstReplace.c
│   │   │   ├── lstSucc.c
│   │   │   └── Makefile
│   │   ├── main.c
│   │   ├── make.1
│   │   ├── make.c
│   │   ├── Makefile
│   │   ├── Makefile.boot
│   │   ├── Makefile.netbsd
│   │   ├── make.h
│   │   ├── make_malloc.c
│   │   ├── make_malloc.h
│   │   ├── nonints.h
│   │   ├── parse.c
│   │   ├── pathnames.h
│   │   ├── PSD.doc
│   │   │   ├── Makefile
│   │   │   └── tutorial.ms
│   │   ├── sprite.h
│   │   ├── str.c
│   │   ├── strlist.c
│   │   ├── strlist.h
│   │   ├── suff.c
│   │   ├── targ.c
│   │   ├── trace.c
│   │   ├── trace.h
│   │   ├── unit-tests
│   │   │   ├── comment
│   │   │   ├── cond1
│   │   │   ├── dotwait
│   │   │   ├── export
│   │   │   ├── export-all
│   │   │   ├── forsubst
│   │   │   ├── Makefile
│   │   │   ├── moderrs
│   │   │   ├── modmatch
│   │   │   ├── modmisc
│   │   │   ├── modorder
│   │   │   ├── modts
│   │   │   ├── modword
│   │   │   ├── posix
│   │   │   ├── qequals
│   │   │   ├── ternary
│   │   │   ├── test.exp
│   │   │   ├── unexport
│   │   │   ├── unexport-env
│   │   │   └── varcmd
│   │   ├── util.c
│   │   └── var.c
│   ├── MAKEDEV
│   │   ├── MAKEDEV.sh
│   │   └── Makefile
│   ├── Makefile
│   ├── Makefile.inc
│   ├── mdb
│   │   ├── core.c
│   │   ├── decode.c
│   │   ├── Dist
│   │   ├── gnu_sym.c
│   │   ├── io.c
│   │   ├── ioctl.c
│   │   ├── kernel.c
│   │   ├── Makefile
│   │   ├── mdb.1
│   │   ├── mdb.c
│   │   ├── mdbdis86.c
│   │   ├── mdbexp.c
│   │   ├── mdb.h
│   │   ├── MDB.TXT
│   │   ├── misc.c
│   │   ├── proto.h
│   │   ├── README
│   │   ├── sample
│   │   ├── sym.c
│   │   ├── syscalls.c
│   │   └── trace.c
│   ├── mesg
│   │   ├── Makefile
│   │   └── mesg.c
│   ├── mined
│   │   ├── Makefile
│   │   ├── mined1.c
│   │   ├── mined2.c
│   │   └── mined.h
│   ├── mkfifo
│   │   ├── Makefile
│   │   ├── mkfifo.1
│   │   └── mkfifo.c
│   ├── mkfs.mfs
│   │   ├── Makefile
│   │   └── mkfs.c
│   ├── mknod
│   │   ├── Makefile
│   │   └── mknod.c
│   ├── mkproto
│   │   ├── Makefile
│   │   └── mkproto.c
│   ├── mktemp
│   │   ├── Makefile
│   │   ├── mktemp.1
│   │   └── mktemp.c
│   ├── modem
│   │   ├── Makefile
│   │   └── modem.c
│   ├── mount
│   │   ├── Makefile
│   │   └── mount.c
│   ├── mt
│   │   ├── Makefile
│   │   └── mt.c
│   ├── netconf
│   │   ├── Makefile
│   │   └── netconf.sh
│   ├── newroot
│   │   ├── Makefile
│   │   └── newroot.sh
│   ├── nice
│   │   ├── Makefile
│   │   └── nice.c
│   ├── nohup
│   │   ├── Makefile
│   │   └── nohup.c
│   ├── nonamed
│   │   ├── Makefile
│   │   └── nonamed.c
│   ├── od
│   │   ├── Makefile
│   │   └── od.c
│   ├── part
│   │   ├── Makefile
│   │   └── part.c
│   ├── partition
│   │   ├── Makefile
│   │   └── partition.c
│   ├── paste
│   │   ├── Makefile
│   │   └── paste.c
│   ├── patch
│   │   ├── backupfile.c
│   │   ├── backupfile.h
│   │   ├── common.h
│   │   ├── inp.c
│   │   ├── inp.h
│   │   ├── Makefile
│   │   ├── mkpath.c
│   │   ├── patch.1
│   │   ├── patch.c
│   │   ├── pathnames.h
│   │   ├── pch.c
│   │   ├── pch.h
│   │   ├── util.c
│   │   └── util.h
│   ├── pax
│   │   ├── ar_io.c
│   │   ├── ar_subs.c
│   │   ├── buf_subs.c
│   │   ├── cache.c
│   │   ├── cache.h
│   │   ├── cpio.1
│   │   ├── cpio.c
│   │   ├── cpio.h
│   │   ├── err.h
│   │   ├── extern.h
│   │   ├── fgetln.c
│   │   ├── file_subs.c
│   │   ├── ftree.c
│   │   ├── ftree.h
│   │   ├── gen_subs.c
│   │   ├── getoldopt.c
│   │   ├── Makefile
│   │   ├── options.c
│   │   ├── options.h
│   │   ├── pat_rep.c
│   │   ├── pat_rep.h
│   │   ├── pax.1
│   │   ├── pax.c
│   │   ├── pax.h
│   │   ├── sel_subs.c
│   │   ├── sel_subs.h
│   │   ├── tables.c
│   │   ├── tables.h
│   │   ├── tar.1
│   │   ├── tar.c
│   │   ├── tar.h
│   │   └── tty_subs.c
│   ├── ping
│   │   ├── Makefile
│   │   └── ping.c
│   ├── pkgin_cd
│   │   ├── Makefile
│   │   └── pkgin_cd.sh
│   ├── playwave
│   │   ├── Makefile
│   │   └── playwave.c
│   ├── postinstall
│   │   ├── Makefile
│   │   └── postinstall.sh
│   ├── poweroff
│   │   ├── Makefile
│   │   └── poweroff.sh
│   ├── pr
│   │   ├── Makefile
│   │   └── pr.c
│   ├── prep
│   │   ├── Makefile
│   │   └── prep.c
│   ├── printf
│   │   ├── Makefile
│   │   ├── printf.1
│   │   └── printf.c
│   ├── printroot
│   │   ├── Makefile
│   │   └── printroot.c
│   ├── profile
│   │   ├── cprofalyze.pl
│   │   ├── Makefile
│   │   ├── profile.c
│   │   ├── sprofalyze.pl
│   │   └── tools
│   │   ├── profextr.pl
│   │   └── proftsc.pl
│   ├── progressbar
│   │   ├── Makefile
│   │   └── progressbar.c
│   ├── proto
│   │   ├── Makefile
│   │   └── proto.c
│   ├── pr_routes
│   │   ├── Makefile
│   │   └── pr_routes.c
│   ├── ps
│   │   ├── Makefile
│   │   └── ps.c
│   ├── pwd
│   │   ├── Makefile
│   │   └── pwd.c
│   ├── pwdauth
│   │   ├── Makefile
│   │   └── pwdauth.c
│   ├── ramdisk
│   │   ├── Makefile
│   │   └── ramdisk.c
│   ├── rarpd
│   │   ├── Makefile
│   │   └── rarpd.c
│   ├── rawspeed
│   │   ├── Makefile
│   │   └── rawspeed.c
│   ├── rcp
│   │   ├── Makefile
│   │   └── rcp.c
│   ├── rdate
│   │   ├── Makefile
│   │   └── rdate.c
│   ├── readall
│   │   ├── Makefile
│   │   └── readall.c
│   ├── readclock
│   │   ├── Makefile
│   │   └── readclock.sh
│   ├── reboot
│   │   ├── halt.c
│   │   ├── log.c
│   │   ├── Makefile
│   │   ├── README
│   │   ├── shutdown.c
│   │   ├── sh_wall.c
│   │   └── wtmp.h
│   ├── recwave
│   │   ├── Makefile
│   │   └── recwave.c
│   ├── remsync
│   │   ├── Makefile
│   │   └── remsync.c
│   ├── repartition
│   │   ├── Makefile
│   │   └── repartition.c
│   ├── rev
│   │   ├── Makefile
│   │   └── rev.c
│   ├── rget
│   │   ├── Makefile
│   │   └── rget.c
│   ├── rlogin
│   │   ├── Makefile
│   │   └── rlogin.c
│   ├── rlogind
│   │   ├── Makefile
│   │   ├── rlogind.c
│   │   ├── rlogind.h
│   │   └── setup.c
│   ├── rotate
│   │   ├── Makefile
│   │   └── rotate.sh
│   ├── rsh
│   │   ├── Makefile
│   │   └── rsh.c
│   ├── rshd
│   │   ├── Makefile
│   │   └── rshd.c
│   ├── screendump
│   │   ├── Makefile
│   │   └── screendump.c
│   ├── sdump
│   │   ├── Makefile
│   │   └── sdump.c
│   ├── sed
│   │   ├── compile.c
│   │   ├── defs.h
│   │   ├── extern.h
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── POSIX
│   │   ├── process.c
│   │   ├── sed.1
│   │   └── TEST
│   │   ├── CVS
│   │   │   ├── Entries
│   │   │   ├── Repository
│   │   │   ├── Root
│   │   │   └── Tag
│   │   ├── hanoi.sed
│   │   ├── math.sed
│   │   └── sed.test
│   ├── service
│   │   ├── config.h
│   │   ├── Makefile
│   │   ├── parse.c
│   │   ├── parse.h
│   │   ├── print.c
│   │   ├── proto.h
│   │   ├── service.c
│   │   └── util.c
│   ├── setup
│   │   ├── Makefile
│   │   └── setup.sh
│   ├── shar
│   │   ├── Makefile
│   │   └── shar.c
│   ├── sleep
│   │   ├── Makefile
│   │   └── sleep.c
│   ├── slip
│   │   ├── Makefile
│   │   └── slip.c
│   ├── sort
│   │   ├── Makefile
│   │   └── sort.c
│   ├── spell
│   │   ├── Makefile
│   │   └── spell.sh
│   ├── split
│   │   ├── Makefile
│   │   └── split.c
│   ├── srccrc
│   │   ├── Makefile
│   │   └── srccrc.sh
│   ├── stty
│   │   ├── Makefile
│   │   └── stty.c
│   ├── su
│   │   ├── Makefile
│   │   └── su.c
│   ├── sum
│   │   ├── Makefile
│   │   └── sum.c
│   ├── svclog
│   │   ├── Makefile
│   │   └── svclog.sh
│   ├── swifi
│   │   ├── db_access.c
│   │   ├── db_access.h
│   │   ├── db_disasm.c
│   │   ├── db_machdep.h
│   │   ├── db_sym.c
│   │   ├── db_sym.h
│   │   ├── ddb.h
│   │   ├── do_swifi
│   │   ├── do_swifi_bug1
│   │   ├── extra.c
│   │   ├── extra.h
│   │   ├── fault_model.c
│   │   ├── Makefile
│   │   ├── random.c
│   │   ├── read_nlist.c
│   │   ├── rnd.c
│   │   ├── rs.restart_imm
│   │   ├── run_swifi
│   │   ├── run_swifi-x
│   │   ├── run_t1
│   │   ├── run_t1a
│   │   ├── run_t1b
│   │   ├── run_t2
│   │   ├── run_t2a
│   │   ├── run_t2b
│   │   ├── socket.c
│   │   ├── swifi-2.4.18-a-patch
│   │   ├── swifi.h
│   │   ├── swifi-ksyms.c
│   │   ├── swifi-user.h
│   │   └── systest.c
│   ├── sync
│   │   ├── Makefile
│   │   └── sync.c
│   ├── synctree
│   │   ├── Makefile
│   │   └── synctree.c
│   ├── sysenv
│   │   ├── Makefile
│   │   └── sysenv.c
│   ├── syslogd
│   │   ├── CHANGELOG
│   │   ├── Makefile
│   │   ├── README
│   │   ├── README.minix
│   │   └── syslogd.c
│   ├── tail
│   │   ├── Makefile
│   │   └── tail.c
│   ├── tar
│   │   ├── bsdtar.1
│   │   ├── bsdtar.c
│   │   ├── bsdtar.h
│   │   ├── bsdtar_platform.h
│   │   ├── cmdline.c
│   │   ├── config.h
│   │   ├── getdate.c
│   │   ├── libarchive_fe
│   │   │   ├── err.c
│   │   │   ├── err.h
│   │   │   ├── lafe_platform.h
│   │   │   ├── line_reader.c
│   │   │   ├── line_reader.h
│   │   │   ├── Makefile.inc
│   │   │   ├── matching.c
│   │   │   ├── matching.h
│   │   │   ├── pathmatch.c
│   │   │   └── pathmatch.h
│   │   ├── Makefile
│   │   ├── read.c
│   │   ├── subst.c
│   │   ├── test
│   │   │   ├── CMakeLists.txt
│   │   │   ├── config.sh
│   │   │   ├── list.h
│   │   │   ├── main.c
│   │   │   ├── test_0.c
│   │   │   ├── test-acl.sh
│   │   │   ├── test_basic.c
│   │   │   ├── test-basic.sh
│   │   │   ├── test_copy.c
│   │   │   ├── test-deep-dir.sh
│   │   │   ├── test_empty_mtree.c
│   │   │   ├── test-flags.sh
│   │   │   ├── test_getdate.c
│   │   │   ├── test.h
│   │   │   ├── test_help.c
│   │   │   ├── test-nodump.sh
│   │   │   ├── test_option_q.c
│   │   │   ├── test_option_r.c
│   │   │   ├── test_option_s.c
│   │   │   ├── test_option_T_upper.c
│   │   │   ├── test-overwrite.sh
│   │   │   ├── test_patterns_2.tar.uu
│   │   │   ├── test_patterns_3.tar.uu
│   │   │   ├── test_patterns_4.tar.uu
│   │   │   ├── test_patterns.c
│   │   │   ├── test_stdio.c
│   │   │   ├── test_strip_components.c
│   │   │   ├── test_symlink_dir.c
│   │   │   ├── test-utf8.sh
│   │   │   ├── test_version.c
│   │   │   └── test_windows.c
│   │   ├── tree.c
│   │   ├── tree.h
│   │   ├── util.c
│   │   └── write.c
│   ├── tcpd
│   │   ├── Makefile
│   │   └── tcpd.c
│   ├── tcpdp
│   │   ├── Makefile
│   │   └── tcpd.c
│   ├── tcpstat
│   │   ├── Makefile
│   │   └── tcpstat.c
│   ├── tee
│   │   ├── Makefile
│   │   └── tee.c
│   ├── telnet
│   │   ├── Makefile
│   │   ├── ttn.c
│   │   ├── ttn_conf.c
│   │   └── ttn.h
│   ├── telnetd
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── pty.c
│   │   ├── telnet.c
│   │   ├── telnetd.h
│   │   ├── telnet.h
│   │   ├── term.c
│   │   └── wtmp.c
│   ├── term
│   │   ├── Makefile
│   │   └── term.c
│   ├── termcap
│   │   ├── Makefile
│   │   └── termcap.c
│   ├── tget
│   │   ├── Makefile
│   │   └── tget.c
│   ├── time
│   │   ├── Makefile
│   │   └── time.c
│   ├── touch
│   │   ├── Makefile
│   │   ├── touch.1
│   │   └── touch.c
│   ├── tr
│   │   ├── Makefile
│   │   ├── str.c
│   │   ├── tr.c
│   │   └── tr.h
│   ├── truncate
│   │   ├── Makefile
│   │   └── truncate.c
│   ├── tsort
│   │   ├── Makefile
│   │   └── tsort.c
│   ├── tty
│   │   ├── Makefile
│   │   └── tty.c
│   ├── udpstat
│   │   ├── Makefile
│   │   └── udpstat.c
│   ├── umount
│   │   ├── Makefile
│   │   └── umount.c
│   ├── uname
│   │   ├── Makefile
│   │   └── uname.c
│   ├── unexpand
│   │   ├── Makefile
│   │   └── unexpand.c
│   ├── unstack
│   │   ├── Makefile
│   │   └── unstack.sh
│   ├── update
│   │   ├── Makefile
│   │   └── update.c
│   ├── updateboot
│   │   ├── Makefile
│   │   └── updateboot.sh
│   ├── uud
│   │   ├── Makefile
│   │   └── uud.c
│   ├── uue
│   │   ├── Makefile
│   │   └── uue.c
│   ├── version
│   │   ├── Makefile
│   │   └── version.sh
│   ├── vol
│   │   ├── Makefile
│   │   └── vol.c
│   ├── wc
│   │   ├── Makefile
│   │   └── wc.c
│   ├── whereis
│   │   ├── Makefile
│   │   └── whereis.sh
│   ├── which
│   │   ├── Makefile
│   │   └── which.c
│   ├── who
│   │   ├── Makefile
│   │   └── who.c
│   ├── worldstone
│   │   ├── Makefile
│   │   ├── worldstone.1
│   │   └── worldstone.sh
│   ├── write
│   │   ├── Makefile
│   │   └── write.c
│   ├── writeisofs
│   │   ├── Makefile
│   │   └── writeisofs.c
│   ├── xargs
│   │   ├── Makefile
│   │   └── xargs.c
│   ├── yacc
│   │   ├── ACKNOWLEDGEMENTS
│   │   ├── closure.c
│   │   ├── defs.h
│   │   ├── error.c
│   │   ├── lalr.c
│   │   ├── lr0.c
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── mkpar.c
│   │   ├── NEW_FEATURES
│   │   ├── NOTES
│   │   ├── output.c
│   │   ├── reader.c
│   │   ├── README
│   │   ├── skeleton.c
│   │   ├── symtab.c
│   │   ├── test
│   │   │   ├── error.output
│   │   │   ├── error.tab.c
│   │   │   ├── error.tab.h
│   │   │   ├── error.y
│   │   │   ├── ftp.output
│   │   │   ├── ftp.tab.c
│   │   │   ├── ftp.tab.h
│   │   │   └── ftp.y
│   │   ├── verbose.c
│   │   ├── warshall.c
│   │   └── yacc.1
│   ├── yes
│   │   ├── Makefile
│   │   └── yes.c
│   ├── zdump
│   │   └── Makefile
│   └── zmodem
│   ├── crctab.c
│   ├── Makefile
│   ├── rbsb.c
│   ├── rz.c
│   ├── sz.c
│   ├── zm.c
│   └── zmodem.h
├── common
│   ├── include
│   │   ├── arch
│   │   │   └── i386
│   │   │   ├── archtypes.h
│   │   │   ├── bios.h
│   │   │   ├── cmos.h
│   │   │   ├── cpu.h
│   │   │   ├── disklabel.h
│   │   │   ├── diskparm.h
│   │   │   ├── elf.h
│   │   │   ├── elf_machdep.h
│   │   │   ├── fpu.h
│   │   │   ├── int86.h
│   │   │   ├── interrupt.h
│   │   │   ├── Makefile.inc
│   │   │   ├── memory.h
│   │   │   ├── multiboot.h
│   │   │   ├── mutex.h
│   │   │   ├── partition.h
│   │   │   ├── pci_amd.h
│   │   │   ├── pci.h
│   │   │   ├── pci_intel.h
│   │   │   ├── pci_sis.h
│   │   │   ├── pci_via.h
│   │   │   ├── ports.h
│   │   │   ├── stackframe.h
│   │   │   └── vm.h
│   │   ├── Makefile.termios.inc
│   │   ├── sys
│   │   │   ├── bootblock.h
│   │   │   ├── disk.h
│   │   │   ├── disklabel_gpt.h
│   │   │   ├── disklabel.h
│   │   │   ├── dkbad.h
│   │   │   ├── dkio.h
│   │   │   ├── elf32.h
│   │   │   ├── elf64.h
│   │   │   ├── elf_common.h
│   │   │   ├── elf_core.h
│   │   │   ├── elf_generic.h
│   │   │   ├── exec_elf.h
│   │   │   ├── ioc_block.h
│   │   │   ├── ioccom.h
│   │   │   ├── ioc_disk.h
│   │   │   ├── ioc_fbd.h
│   │   │   ├── ioc_file.h
│   │   │   ├── ioc_memory.h
│   │   │   ├── ioc_sound.h
│   │   │   ├── ioc_tape.h
│   │   │   ├── ioc_tty.h
│   │   │   ├── iostat.h
│   │   │   ├── kbdio.h
│   │   │   ├── Makefile.inc
│   │   │   ├── Makefile.mount.inc
│   │   │   ├── mount.h
│   │   │   ├── mtio.h
│   │   │   ├── mutex.h
│   │   │   ├── procfs.h
│   │   │   ├── svrctl.h
│   │   │   ├── video.h
│   │   │   └── vm.h
│   │   └── termios.h
│   └── lib
│   ├── libc
│   │   ├── arch
│   │   │   ├── alpha
│   │   │   │   ├── atomic
│   │   │   │   │   ├── atomic_add.S
│   │   │   │   │   ├── atomic_and.S
│   │   │   │   │   ├── atomic_cas.S
│   │   │   │   │   ├── atomic_dec.S
│   │   │   │   │   ├── atomic_inc.S
│   │   │   │   │   ├── atomic_op_asm.h
│   │   │   │   │   ├── atomic_or.S
│   │   │   │   │   ├── atomic_swap.S
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── membar_ops.S
│   │   │   │   ├── gen
│   │   │   │   │   ├── byte_swap_2.S
│   │   │   │   │   └── byte_swap_4.S
│   │   │   │   ├── gmon
│   │   │   │   │   └── _mcount.S
│   │   │   │   └── string
│   │   │   │   ├── bcopy.S
│   │   │   │   ├── bzero.S
│   │   │   │   ├── ffs.S
│   │   │   │   ├── memcpy.S
│   │   │   │   └── memmove.S
│   │   │   ├── arm
│   │   │   │   ├── atomic
│   │   │   │   │   ├── atomic_add_32.S
│   │   │   │   │   ├── atomic_and_32.S
│   │   │   │   │   ├── atomic_cas_32.S
│   │   │   │   │   ├── atomic_cas_8.S
│   │   │   │   │   ├── atomic_cas_up.S
│   │   │   │   │   ├── atomic_dec_32.S
│   │   │   │   │   ├── atomic_inc_32.S
│   │   │   │   │   ├── atomic_op_asm.h
│   │   │   │   │   ├── atomic_or_32.S
│   │   │   │   │   ├── atomic_swap.S
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── membar_ops.S
│   │   │   │   ├── gen
│   │   │   │   │   ├── byte_swap_2.S
│   │   │   │   │   ├── byte_swap_4.S
│   │   │   │   │   └── divsi3.S
│   │   │   │   └── string
│   │   │   │   ├── ffs.S
│   │   │   │   ├── memcmp.S
│   │   │   │   ├── memcpy_arm.S
│   │   │   │   ├── memcpy.S
│   │   │   │   ├── memcpy_xscale.S
│   │   │   │   ├── memmove.S
│   │   │   │   ├── memset.S
│   │   │   │   ├── strcmp.S
│   │   │   │   └── strncmp.S
│   │   │   ├── hppa
│   │   │   │   └── atomic
│   │   │   │   ├── atomic_cas_up.S
│   │   │   │   ├── Makefile.inc
│   │   │   │   └── membar_ops.S
│   │   │   ├── i386
│   │   │   │   ├── atomic
│   │   │   │   │   ├── atomic.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── byte_swap_2.S
│   │   │   │   │   └── byte_swap_4.S
│   │   │   │   └── string
│   │   │   │   ├── ffs.S
│   │   │   │   ├── memchr.S
│   │   │   │   ├── memcmp.S
│   │   │   │   ├── memcpy.S
│   │   │   │   ├── memmove.S
│   │   │   │   ├── memset.S
│   │   │   │   ├── strcat.S
│   │   │   │   ├── strchr.S
│   │   │   │   ├── strcmp.S
│   │   │   │   ├── strcpy.S
│   │   │   │   ├── strlen.S
│   │   │   │   └── strrchr.S
│   │   │   ├── ia64
│   │   │   │   └── atomic
│   │   │   │   ├── atomic.S
│   │   │   │   └── Makefile.inc
│   │   │   ├── m68k
│   │   │   │   ├── atomic
│   │   │   │   │   ├── atomic_add.S
│   │   │   │   │   ├── atomic_and.S
│   │   │   │   │   ├── atomic_cas_68000.S
│   │   │   │   │   ├── atomic_cas.S
│   │   │   │   │   ├── atomic_dec.S
│   │   │   │   │   ├── atomic_inc.S
│   │   │   │   │   ├── atomic_op_asm.h
│   │   │   │   │   ├── atomic_or.S
│   │   │   │   │   ├── atomic_swap.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── bswap16.S
│   │   │   │   │   ├── bswap32.S
│   │   │   │   │   ├── bswap64.S
│   │   │   │   │   ├── divsi3.S
│   │   │   │   │   ├── modsi3.S
│   │   │   │   │   ├── mulsi3.S
│   │   │   │   │   ├── udivsi3.S
│   │   │   │   │   └── umodsi3.S
│   │   │   │   ├── net
│   │   │   │   │   ├── htonl.S
│   │   │   │   │   ├── htons.S
│   │   │   │   │   ├── ntohl.S
│   │   │   │   │   └── ntohs.S
│   │   │   │   └── string
│   │   │   │   ├── bcmp.S
│   │   │   │   ├── bcopy.S
│   │   │   │   ├── bzero.S
│   │   │   │   ├── ffs.S
│   │   │   │   ├── memcmp.S
│   │   │   │   ├── memcpy.S
│   │   │   │   ├── memmove.S
│   │   │   │   ├── memset.S
│   │   │   │   ├── strcat.S
│   │   │   │   ├── strchr.S
│   │   │   │   ├── strcmp.S
│   │   │   │   ├── strcpy.S
│   │   │   │   ├── strlen.S
│   │   │   │   ├── strncmp.S
│   │   │   │   ├── strncpy.S
│   │   │   │   └── strrchr.S
│   │   │   ├── mips
│   │   │   │   ├── atomic
│   │   │   │   │   ├── atomic_add.S
│   │   │   │   │   ├── atomic_and.S
│   │   │   │   │   ├── atomic_cas.S
│   │   │   │   │   ├── atomic_cas_up.S
│   │   │   │   │   ├── atomic_dec.S
│   │   │   │   │   ├── atomic_inc.S
│   │   │   │   │   ├── atomic_op_asm.h
│   │   │   │   │   ├── atomic_or.S
│   │   │   │   │   ├── atomic_swap.S
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── membar_ops.S
│   │   │   │   ├── gen
│   │   │   │   │   ├── byte_swap_2.S
│   │   │   │   │   ├── byte_swap_4.S
│   │   │   │   │   └── byte_swap_8.S
│   │   │   │   └── string
│   │   │   │   ├── bcopy.S
│   │   │   │   ├── ffs.S
│   │   │   │   ├── memcpy.S
│   │   │   │   ├── memmove.S
│   │   │   │   ├── strchr.S
│   │   │   │   ├── strcmp.S
│   │   │   │   ├── strlen.S
│   │   │   │   └── strrchr.S
│   │   │   ├── powerpc
│   │   │   │   ├── atomic
│   │   │   │   │   ├── atomic_add.S
│   │   │   │   │   ├── atomic_and.S
│   │   │   │   │   ├── atomic_cas.S
│   │   │   │   │   ├── atomic_dec.S
│   │   │   │   │   ├── atomic_inc.S
│   │   │   │   │   ├── atomic_op_asm.h
│   │   │   │   │   ├── atomic_or.S
│   │   │   │   │   ├── atomic_swap.S
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── membar_ops.S
│   │   │   │   └── string
│   │   │   │   ├── bcopy.S
│   │   │   │   ├── ffs.S
│   │   │   │   ├── memcmp.S
│   │   │   │   ├── memcpy.S
│   │   │   │   ├── memmove.S
│   │   │   │   └── strlen.S
│   │   │   ├── powerpc64
│   │   │   │   ├── atomic
│   │   │   │   │   ├── atomic_add.S
│   │   │   │   │   ├── atomic_and.S
│   │   │   │   │   ├── atomic_cas.S
│   │   │   │   │   ├── atomic_dec.S
│   │   │   │   │   ├── atomic_inc.S
│   │   │   │   │   ├── atomic_op_asm.h
│   │   │   │   │   ├── atomic_or.S
│   │   │   │   │   ├── atomic_swap.S
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── membar_ops.S
│   │   │   │   └── string
│   │   │   │   ├── ffs.S
│   │   │   │   └── strlen.S
│   │   │   ├── sh3
│   │   │   │   ├── atomic
│   │   │   │   │   └── Makefile.inc
│   │   │   │   └── string
│   │   │   │   ├── ffs.S
│   │   │   │   ├── memcpy.S
│   │   │   │   ├── memmove.S
│   │   │   │   └── memset.S
│   │   │   ├── sparc
│   │   │   │   ├── atomic
│   │   │   │   │   ├── atomic_cas.S
│   │   │   │   │   ├── atomic_op_asm.h
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── membar_ops.S
│   │   │   │   ├── gen
│   │   │   │   │   ├── mul.S
│   │   │   │   │   ├── saveregs.S
│   │   │   │   │   └── umul.S
│   │   │   │   ├── net
│   │   │   │   │   ├── htonl.S
│   │   │   │   │   ├── htons.S
│   │   │   │   │   ├── ntohl.S
│   │   │   │   │   └── ntohs.S
│   │   │   │   └── string
│   │   │   │   ├── bzero.S
│   │   │   │   ├── ffs.S
│   │   │   │   ├── memset.S
│   │   │   │   └── strlen.S
│   │   │   ├── sparc64
│   │   │   │   ├── atomic
│   │   │   │   │   ├── atomic_add.S
│   │   │   │   │   ├── atomic_and.S
│   │   │   │   │   ├── atomic_cas.S
│   │   │   │   │   ├── atomic_dec.S
│   │   │   │   │   ├── atomic_inc.S
│   │   │   │   │   ├── atomic_op_asm.h
│   │   │   │   │   ├── atomic_or.S
│   │   │   │   │   ├── atomic_swap.S
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── membar_ops.S
│   │   │   │   ├── gen
│   │   │   │   │   ├── mul.S
│   │   │   │   │   ├── saveregs.S
│   │   │   │   │   └── umul.S
│   │   │   │   ├── net
│   │   │   │   │   ├── htonl.S
│   │   │   │   │   ├── htons.S
│   │   │   │   │   ├── ntohl.S
│   │   │   │   │   └── ntohs.S
│   │   │   │   └── string
│   │   │   │   ├── ffs.S
│   │   │   │   └── strlen.S
│   │   │   ├── vax
│   │   │   │   ├── atomic
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── bswap16.S
│   │   │   │   │   ├── bswap32.S
│   │   │   │   │   ├── bswap64.S
│   │   │   │   │   ├── udiv.S
│   │   │   │   │   └── urem.S
│   │   │   │   └── string
│   │   │   │   ├── memcpy.S
│   │   │   │   ├── memmove.S
│   │   │   │   └── memset.S
│   │   │   └── x86_64
│   │   │   ├── atomic
│   │   │   │   ├── atomic.S
│   │   │   │   └── Makefile.inc
│   │   │   ├── gen
│   │   │   │   ├── byte_swap_2.S
│   │   │   │   ├── byte_swap_4.S
│   │   │   │   └── byte_swap_8.S
│   │   │   └── string
│   │   │   ├── bcmp.S
│   │   │   ├── bcopy.S
│   │   │   ├── bzero.S
│   │   │   ├── ffs.S
│   │   │   ├── memchr.S
│   │   │   ├── memcmp.S
│   │   │   ├── memcpy.S
│   │   │   ├── memmove.S
│   │   │   ├── memset.S
│   │   │   ├── strcat.S
│   │   │   ├── strchr.S
│   │   │   ├── strcmp.S
│   │   │   ├── strcpy.S
│   │   │   ├── strlen.S
│   │   │   └── strrchr.S
│   │   ├── atomic
│   │   │   ├── atomic_add_32_cas.c
│   │   │   ├── atomic_add_32_nv_cas.c
│   │   │   ├── atomic_add_64_cas.c
│   │   │   ├── atomic_add_64_nv_cas.c
│   │   │   ├── atomic_and_32_cas.c
│   │   │   ├── atomic_and_32_nv_cas.c
│   │   │   ├── atomic_and_64_cas.c
│   │   │   ├── atomic_and_64_nv_cas.c
│   │   │   ├── atomic_dec_32_add.c
│   │   │   ├── atomic_dec_32_cas.c
│   │   │   ├── atomic_dec_32_nv_add.c
│   │   │   ├── atomic_dec_32_nv_cas.c
│   │   │   ├── atomic_dec_64_add.c
│   │   │   ├── atomic_dec_64_cas.c
│   │   │   ├── atomic_dec_64_nv_add.c
│   │   │   ├── atomic_dec_64_nv_cas.c
│   │   │   ├── atomic_inc_32_add.c
│   │   │   ├── atomic_inc_32_cas.c
│   │   │   ├── atomic_inc_32_nv_add.c
│   │   │   ├── atomic_inc_32_nv_cas.c
│   │   │   ├── atomic_inc_64_add.c
│   │   │   ├── atomic_inc_64_cas.c
│   │   │   ├── atomic_inc_64_nv_add.c
│   │   │   ├── atomic_inc_64_nv_cas.c
│   │   │   ├── atomic_init_cas.c
│   │   │   ├── atomic_init_testset.c
│   │   │   ├── atomic_op_namespace.h
│   │   │   ├── atomic_or_32_cas.c
│   │   │   ├── atomic_or_32_nv_cas.c
│   │   │   ├── atomic_or_64_cas.c
│   │   │   ├── atomic_or_64_nv_cas.c
│   │   │   ├── atomic_swap_32_cas.c
│   │   │   ├── atomic_swap_64_cas.c
│   │   │   └── membar_ops_nop.c
│   │   ├── gen
│   │   │   ├── bswap16.c
│   │   │   ├── bswap32.c
│   │   │   ├── bswap64.c
│   │   │   ├── ptree.c
│   │   │   ├── rb.c
│   │   │   └── rpst.c
│   │   ├── gmon
│   │   │   └── mcount.c
│   │   ├── hash
│   │   │   ├── rmd160
│   │   │   │   └── rmd160.c
│   │   │   ├── sha1
│   │   │   │   └── sha1.c
│   │   │   └── sha2
│   │   │   └── sha2.c
│   │   ├── inet
│   │   │   └── inet_addr.c
│   │   ├── Makefile.inc
│   │   ├── md
│   │   │   ├── md4c.c
│   │   │   └── md5c.c
│   │   ├── net
│   │   │   ├── __cmsg_alignbytes.c
│   │   │   ├── htonl.c
│   │   │   ├── htons.c
│   │   │   ├── ntohl.c
│   │   │   └── ntohs.c
│   │   ├── quad
│   │   │   ├── adddi3.c
│   │   │   ├── anddi3.c
│   │   │   ├── ashldi3.c
│   │   │   ├── ashrdi3.c
│   │   │   ├── cmpdi2.c
│   │   │   ├── divdi3.c
│   │   │   ├── iordi3.c
│   │   │   ├── lshldi3.c
│   │   │   ├── lshrdi3.c
│   │   │   ├── moddi3.c
│   │   │   ├── muldi3.c
│   │   │   ├── negdi2.c
│   │   │   ├── notdi2.c
│   │   │   ├── qdivrem.c
│   │   │   ├── quad.h
│   │   │   ├── subdi3.c
│   │   │   ├── ucmpdi2.c
│   │   │   ├── udivdi3.c
│   │   │   ├── umoddi3.c
│   │   │   └── xordi3.c
│   │   ├── stdlib
│   │   │   ├── heapsort.c
│   │   │   ├── random.c
│   │   │   ├── _strtol.h
│   │   │   ├── strtoll.c
│   │   │   ├── strtoul.c
│   │   │   ├── _strtoul.h
│   │   │   ├── strtoull.c
│   │   │   └── strtoumax.c
│   │   ├── string
│   │   │   ├── bcmp.c
│   │   │   ├── bcopy.c
│   │   │   ├── bzero2.c
│   │   │   ├── bzero.c
│   │   │   ├── ffs.c
│   │   │   ├── memchr.c
│   │   │   ├── memcmp.c
│   │   │   ├── memcpy.c
│   │   │   ├── memmove.c
│   │   │   ├── memset2.c
│   │   │   ├── memset.c
│   │   │   ├── popcount32.c
│   │   │   ├── popcount64.c
│   │   │   ├── strcasecmp.c
│   │   │   ├── strcat.c
│   │   │   ├── strchr.c
│   │   │   ├── strcmp.c
│   │   │   ├── strcpy.c
│   │   │   ├── strlcat.c
│   │   │   ├── strlcpy.c
│   │   │   ├── strlen.c
│   │   │   ├── strncasecmp.c
│   │   │   ├── strncmp.c
│   │   │   ├── strncpy.c
│   │   │   ├── strrchr.c
│   │   │   ├── strsep.c
│   │   │   └── strstr.c
│   │   └── sys
│   │   └── cpuset.c
│   ├── libprop
│   │   ├── Makefile.inc
│   │   ├── prop_array.3
│   │   ├── prop_array.c
│   │   ├── prop_array_util.3
│   │   ├── prop_array_util.c
│   │   ├── prop_bool.3
│   │   ├── prop_bool.c
│   │   ├── prop_copyin_ioctl.9
│   │   ├── prop_data.3
│   │   ├── prop_data.c
│   │   ├── prop_dictionary.3
│   │   ├── prop_dictionary.c
│   │   ├── prop_dictionary_util.3
│   │   ├── prop_dictionary_util.c
│   │   ├── prop_ingest.3
│   │   ├── prop_ingest.c
│   │   ├── prop_kern.c
│   │   ├── proplib.3
│   │   ├── prop_number.3
│   │   ├── prop_number.c
│   │   ├── prop_object.3
│   │   ├── prop_object.c
│   │   ├── prop_object_impl.h
│   │   ├── prop_rb.c
│   │   ├── prop_rb_impl.h
│   │   ├── prop_send_ioctl.3
│   │   ├── prop_send_syscall.3
│   │   ├── prop_stack.c
│   │   ├── prop_stack.h
│   │   ├── prop_string.3
│   │   └── prop_string.c
│   └── libutil
│   ├── Makefile.inc
│   └── snprintb.c
├── dist
│   └── bzip2
│   ├── blocksort.c
│   ├── bz-common.xsl
│   ├── bzdiff
│   ├── bzdiff.1
│   ├── bz-fo.xsl
│   ├── bzgrep
│   ├── bzgrep.1
│   ├── bz-html.xsl
│   ├── bzip2
│   ├── bzip2.1
│   ├── bzip2.c
│   ├── bzip2netbsd
│   ├── bzip2recover
│   ├── bzip2recover.c
│   ├── bzip.css
│   ├── bzlib.c
│   ├── bzlib.h
│   ├── bzlib_private.h
│   ├── bzmore
│   ├── bzmore.1
│   ├── CHANGES
│   ├── compress.c
│   ├── crctable.c
│   ├── decompress.c
│   ├── dlltest.c
│   ├── dlltest.dsp
│   ├── entities.xml
│   ├── format.pl
│   ├── huffman.c
│   ├── libbz2.def
│   ├── libbz2.dsp
│   ├── LICENSE
│   ├── Makefile
│   ├── Makefile-libbz2_so
│   ├── makefile.msc
│   ├── manual.html
│   ├── manual.xml
│   ├── mk251.c
│   ├── randtable.c
│   ├── README
│   ├── README.COMPILATION.PROBLEMS
│   ├── README.XML.STUFF
│   ├── sample1.bz2
│   ├── sample1.rb2
│   ├── sample1.ref
│   ├── sample1.tst
│   ├── sample2.bz2
│   ├── sample2.rb2
│   ├── sample2.ref
│   ├── sample2.tst
│   ├── sample3.bz2
│   ├── sample3.rb2
│   ├── sample3.ref
│   ├── sample3.tst
│   ├── spewG.c
│   ├── unzcrash.c
│   ├── words0
│   ├── words1
│   ├── words2
│   ├── words3
│   └── xmlproc.sh
├── docs
│   ├── profiling.txt
│   └── UPDATING
├── drivers
│   ├── acpi
│   │   ├── acpi.c
│   │   ├── acpi_globals.h
│   │   ├── dispatcher
│   │   │   ├── dsfield.c
│   │   │   ├── dsinit.c
│   │   │   ├── dsmethod.c
│   │   │   ├── dsmthdat.c
│   │   │   ├── dsobject.c
│   │   │   ├── dsopcode.c
│   │   │   ├── dsutils.c
│   │   │   ├── dswexec.c
│   │   │   ├── dswload.c
│   │   │   ├── dswscope.c
│   │   │   └── dswstate.c
│   │   ├── events
│   │   │   ├── evevent.c
│   │   │   ├── evgpeblk.c
│   │   │   ├── evgpe.c
│   │   │   ├── evgpeinit.c
│   │   │   ├── evgpeutil.c
│   │   │   ├── evmisc.c
│   │   │   ├── evregion.c
│   │   │   ├── evrgnini.c
│   │   │   ├── evsci.c
│   │   │   ├── evxface.c
│   │   │   ├── evxfevnt.c
│   │   │   └── evxfregn.c
│   │   ├── executer
│   │   │   ├── exconfig.c
│   │   │   ├── exconvrt.c
│   │   │   ├── excreate.c
│   │   │   ├── exdebug.c
│   │   │   ├── exdump.c
│   │   │   ├── exfield.c
│   │   │   ├── exfldio.c
│   │   │   ├── exmisc.c
│   │   │   ├── exmutex.c
│   │   │   ├── exnames.c
│   │   │   ├── exoparg1.c
│   │   │   ├── exoparg2.c
│   │   │   ├── exoparg3.c
│   │   │   ├── exoparg6.c
│   │   │   ├── exprep.c
│   │   │   ├── exregion.c
│   │   │   ├── exresnte.c
│   │   │   ├── exresolv.c
│   │   │   ├── exresop.c
│   │   │   ├── exstore.c
│   │   │   ├── exstoren.c
│   │   │   ├── exstorob.c
│   │   │   ├── exsystem.c
│   │   │   └── exutils.c
│   │   ├── hardware
│   │   │   ├── hwacpi.c
│   │   │   ├── hwgpe.c
│   │   │   ├── hwregs.c
│   │   │   ├── hwsleep.c
│   │   │   ├── hwtimer.c
│   │   │   ├── hwvalid.c
│   │   │   └── hwxface.c
│   │   ├── include
│   │   │   ├── acapps.h
│   │   │   ├── accommon.h
│   │   │   ├── acconfig.h
│   │   │   ├── acdebug.h
│   │   │   ├── acdisasm.h
│   │   │   ├── acdispat.h
│   │   │   ├── acevents.h
│   │   │   ├── acexcep.h
│   │   │   ├── acglobal.h
│   │   │   ├── achware.h
│   │   │   ├── acinterp.h
│   │   │   ├── aclocal.h
│   │   │   ├── acmacros.h
│   │   │   ├── acnames.h
│   │   │   ├── acnamesp.h
│   │   │   ├── acobject.h
│   │   │   ├── acopcode.h
│   │   │   ├── acoutput.h
│   │   │   ├── acparser.h
│   │   │   ├── acpi.h
│   │   │   ├── acpiosxf.h
│   │   │   ├── acpixf.h
│   │   │   ├── acpredef.h
│   │   │   ├── acresrc.h
│   │   │   ├── acrestyp.h
│   │   │   ├── acstruct.h
│   │   │   ├── actables.h
│   │   │   ├── actbl1.h
│   │   │   ├── actbl2.h
│   │   │   ├── actbl.h
│   │   │   ├── actypes.h
│   │   │   ├── acutils.h
│   │   │   ├── amlcode.h
│   │   │   ├── amlresrc.h
│   │   │   └── platform
│   │   │   ├── accygwin.h
│   │   │   ├── acefi.h
│   │   │   ├── acenv.h
│   │   │   ├── acfreebsd.h
│   │   │   ├── acgcc.h
│   │   │   ├── acintel.h
│   │   │   ├── aclinux.h
│   │   │   ├── acminix.h
│   │   │   ├── acmsvc.h
│   │   │   ├── acnetbsd.h
│   │   │   ├── acos2.h
│   │   │   ├── acwin64.h
│   │   │   └── acwin.h
│   │   ├── Makefile
│   │   ├── namespace
│   │   │   ├── nsaccess.c
│   │   │   ├── nsalloc.c
│   │   │   ├── nsdump.c
│   │   │   ├── nsdumpdv.c
│   │   │   ├── nseval.c
│   │   │   ├── nsinit.c
│   │   │   ├── nsload.c
│   │   │   ├── nsnames.c
│   │   │   ├── nsobject.c
│   │   │   ├── nsparse.c
│   │   │   ├── nspredef.c
│   │   │   ├── nsrepair2.c
│   │   │   ├── nsrepair.c
│   │   │   ├── nssearch.c
│   │   │   ├── nsutils.c
│   │   │   ├── nswalk.c
│   │   │   ├── nsxfeval.c
│   │   │   ├── nsxfname.c
│   │   │   └── nsxfobj.c
│   │   ├── osminixxf.c
│   │   ├── parser
│   │   │   ├── psargs.c
│   │   │   ├── psloop.c
│   │   │   ├── psopcode.c
│   │   │   ├── psparse.c
│   │   │   ├── psscope.c
│   │   │   ├── pstree.c
│   │   │   ├── psutils.c
│   │   │   ├── pswalk.c
│   │   │   └── psxface.c
│   │   ├── pci.c
│   │   ├── pci.h
│   │   ├── resources
│   │   │   ├── rsaddr.c
│   │   │   ├── rscalc.c
│   │   │   ├── rscreate.c
│   │   │   ├── rsdump.c
│   │   │   ├── rsinfo.c
│   │   │   ├── rsio.c
│   │   │   ├── rsirq.c
│   │   │   ├── rslist.c
│   │   │   ├── rsmemory.c
│   │   │   ├── rsmisc.c
│   │   │   ├── rsutils.c
│   │   │   └── rsxface.c
│   │   ├── tables
│   │   │   ├── tbfadt.c
│   │   │   ├── tbfind.c
│   │   │   ├── tbinstal.c
│   │   │   ├── tbutils.c
│   │   │   ├── tbxface.c
│   │   │   └── tbxfroot.c
│   │   └── utilities
│   │   ├── utalloc.c
│   │   ├── utcache.c
│   │   ├── utclib.c
│   │   ├── utcopy.c
│   │   ├── utdebug.c
│   │   ├── utdelete.c
│   │   ├── uteval.c
│   │   ├── utglobal.c
│   │   ├── utids.c
│   │   ├── utinit.c
│   │   ├── utlock.c
│   │   ├── utmath.c
│   │   ├── utmisc.c
│   │   ├── utmutex.c
│   │   ├── utobject.c
│   │   ├── utresrc.c
│   │   ├── utstate.c
│   │   ├── uttrack.c
│   │   └── utxface.c
│   ├── ahci
│   │   ├── ahci.c
│   │   ├── ahci.h
│   │   └── Makefile
│   ├── amddev
│   │   ├── amddev.c
│   │   └── Makefile
│   ├── atl2
│   │   ├── atl2.c
│   │   ├── atl2.conf
│   │   ├── atl2.h
│   │   └── Makefile
│   ├── at_wini
│   │   ├── at_wini.c
│   │   ├── at_wini.h
│   │   ├── liveupdate.c
│   │   └── Makefile
│   ├── audio
│   │   ├── es1370
│   │   │   ├── AC97.h
│   │   │   ├── ak4531.c
│   │   │   ├── ak4531.h
│   │   │   ├── es1370.c
│   │   │   ├── es1370.h
│   │   │   ├── Makefile
│   │   │   ├── pci_helper.c
│   │   │   └── pci_helper.h
│   │   ├── es1371
│   │   │   ├── AC97.c
│   │   │   ├── AC97.h
│   │   │   ├── codec.c
│   │   │   ├── codec.h
│   │   │   ├── es1371.c
│   │   │   ├── es1371.h
│   │   │   ├── Makefile
│   │   │   ├── pci_helper.c
│   │   │   ├── pci_helper.h
│   │   │   ├── sample_rate_converter.c
│   │   │   ├── sample_rate_converter.h
│   │   │   ├── SRC.c
│   │   │   ├── SRC.h
│   │   │   ├── wait.c
│   │   │   └── wait.h
│   │   ├── Makefile
│   │   ├── Makefile.inc
│   │   ├── README
│   │   └── sb16
│   │   ├── Makefile
│   │   ├── mixer.c
│   │   ├── mixer.h
│   │   ├── README
│   │   ├── sb16.c
│   │   └── sb16.h
│   ├── bios_wini
│   │   ├── bios_wini.c
│   │   └── Makefile
│   ├── dec21140A
│   │   ├── dec21140A.c
│   │   ├── dec21140A.conf
│   │   ├── dec21140A.h
│   │   ├── Makefile
│   │   └── README.txt
│   ├── dp8390
│   │   ├── 3c503.c
│   │   ├── 3c503.h
│   │   ├── dp8390.c
│   │   ├── dp8390.h
│   │   ├── local.h
│   │   ├── Makefile
│   │   ├── ne2000.c
│   │   ├── ne2000.h
│   │   ├── rtl8029.c
│   │   ├── rtl8029.h
│   │   ├── wdeth.c
│   │   └── wdeth.h
│   ├── dpeth
│   │   ├── 3c501.c
│   │   ├── 3c501.h
│   │   ├── 3c503.c
│   │   ├── 3c503.h
│   │   ├── 3c509.c
│   │   ├── 3c509.h
│   │   ├── 8390.c
│   │   ├── 8390.h
│   │   ├── devio.c
│   │   ├── dp.c
│   │   ├── dp.h
│   │   ├── Makefile
│   │   ├── ne.c
│   │   ├── ne.h
│   │   ├── netbuff.c
│   │   ├── README
│   │   ├── wd.c
│   │   └── wd.h
│   ├── e1000
│   │   ├── e1000.c
│   │   ├── e1000.conf
│   │   ├── e1000.h
│   │   ├── e1000_hw.h
│   │   ├── e1000_pci.h
│   │   ├── e1000_reg.h
│   │   └── Makefile
│   ├── fbd
│   │   ├── action.c
│   │   ├── action.h
│   │   ├── fbd.c
│   │   ├── Makefile
│   │   ├── rule.c
│   │   └── rule.h
│   ├── filter
│   │   ├── crc.c
│   │   ├── crc.h
│   │   ├── driver.c
│   │   ├── inc.h
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── md5.c
│   │   ├── md5.h
│   │   ├── sum.c
│   │   └── util.c
│   ├── floppy
│   │   ├── floppy.c
│   │   ├── floppy.h
│   │   ├── liveupdate.c
│   │   └── Makefile
│   ├── fxp
│   │   ├── fxp.c
│   │   ├── fxp.conf
│   │   ├── fxp.h
│   │   ├── Makefile
│   │   ├── mii.c
│   │   └── mii.h
│   ├── hello
│   │   ├── hello.c
│   │   ├── hello.h
│   │   └── Makefile
│   ├── lance
│   │   ├── lance.c
│   │   ├── lance.conf
│   │   ├── lance.h
│   │   └── Makefile
│   ├── log
│   │   ├── diag.c
│   │   ├── liveupdate.c
│   │   ├── log.c
│   │   ├── log.h
│   │   └── Makefile
│   ├── Makefile
│   ├── Makefile.inc
│   ├── memory
│   │   ├── imgrd.c
│   │   ├── local.h
│   │   ├── Makefile
│   │   └── memory.c
│   ├── orinoco
│   │   ├── hermes.c
│   │   ├── hermes.h
│   │   ├── hermes_rid.h
│   │   ├── INSTALL.txt
│   │   ├── Makefile
│   │   ├── orinoco.c
│   │   └── orinoco.h
│   ├── pci
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── pci.c
│   │   ├── pci.h
│   │   └── pci_table.c
│   ├── printer
│   │   ├── liveupdate.c
│   │   ├── Makefile
│   │   └── printer.c
│   ├── ramdisk
│   │   ├── bintoc.c
│   │   ├── Makefile
│   │   ├── mtab
│   │   ├── proto
│   │   ├── proto.sh
│   │   ├── proto.small
│   │   └── rc
│   ├── random
│   │   ├── aes
│   │   │   ├── boxes.dat
│   │   │   ├── rijndael_alg.c
│   │   │   ├── rijndael-alg.h
│   │   │   ├── rijndael_api.c
│   │   │   ├── rijndael-api.h
│   │   │   ├── rijndael.h
│   │   │   └── word_i386.h
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── random.c
│   │   └── random.h
│   ├── readclock
│   │   ├── Makefile
│   │   └── readclock.c
│   ├── rtl8139
│   │   ├── liveupdate.c
│   │   ├── Makefile
│   │   ├── rtl8139.c
│   │   ├── rtl8139.conf
│   │   └── rtl8139.h
│   ├── rtl8169
│   │   ├── Makefile
│   │   ├── rtl8169.c
│   │   ├── rtl8169.conf
│   │   └── rtl8169.h
│   ├── ti1225
│   │   ├── i82365.h
│   │   ├── Makefile
│   │   ├── ti1225.c
│   │   └── ti1225.h
│   ├── tty
│   │   ├── console.c
│   │   ├── keyboard.c
│   │   ├── keymaps
│   │   │   ├── dvorak.src
│   │   │   ├── french.src
│   │   │   ├── genmap.c
│   │   │   ├── german.src
│   │   │   ├── italian.src
│   │   │   ├── japanese.src
│   │   │   ├── latin-america.src
│   │   │   ├── Makefile
│   │   │   ├── Makefile.inc
│   │   │   ├── olivetti.src
│   │   │   ├── polish.src
│   │   │   ├── russian-cp1251.src
│   │   │   ├── russian-cp866.src
│   │   │   ├── russian.src
│   │   │   ├── scandinavian.src
│   │   │   ├── spanish.src
│   │   │   ├── ukraine-koi8-u.src
│   │   │   ├── uk.src
│   │   │   ├── us-std-esc.src
│   │   │   ├── us-std.src
│   │   │   └── us-swap.src
│   │   ├── Makefile
│   │   ├── pty.c
│   │   ├── rs232.c
│   │   ├── tty.c
│   │   └── tty.h
│   └── vbox
│   ├── Makefile
│   ├── vbox.c
│   └── vbox.h
├── etc
│   ├── ast
│   ├── boot.cfg.default
│   ├── crontab
│   ├── defaults
│   │   ├── minix.rc.conf
│   │   └── rc.conf
│   ├── fonts
│   │   ├── cp1251.fnt
│   │   ├── cp437.fnt
│   │   ├── cp850.fnt
│   │   ├── cp865.fnt
│   │   ├── cp866.fnt
│   │   ├── iso1.fnt
│   │   ├── koi8-r.fnt
│   │   ├── koi8-u.fnt
│   │   └── polish.fnt
│   ├── group
│   ├── hostname.file
│   ├── inet.conf
│   ├── make.conf
│   ├── Makefile
│   ├── man.conf
│   ├── master.passwd
│   ├── motd
│   ├── motd.install
│   ├── mtab
│   ├── mtree
│   │   └── minix.tree
│   ├── mtree.sh
│   ├── newfstab.sh
│   ├── profile
│   ├── protocols
│   ├── rc
│   ├── rc.cd
│   ├── rc.conf
│   ├── rc.daemons.dist
│   ├── rc.subr
│   ├── rc.subr.minix
│   ├── resolv.conf
│   ├── rs.inet
│   ├── rs.single
│   ├── services
│   ├── shells
│   ├── syslog.conf
│   ├── system.conf
│   ├── termcap
│   ├── termcap.big
│   ├── ttys
│   ├── ttytab
│   ├── usr
│   │   ├── daily
│   │   ├── dhcptags.conf
│   │   ├── Makefile
│   │   └── rc
│   └── utmp
├── include
│   ├── aio.h
│   ├── a.out.h
│   ├── arch
│   │   ├── i386
│   │   │   ├── include
│   │   │   │   ├── ansi.h
│   │   │   │   ├── asm.h
│   │   │   │   ├── bswap.h
│   │   │   │   ├── byte_swap.h
│   │   │   │   ├── cdefs.h
│   │   │   │   ├── disklabel.h
│   │   │   │   ├── endian.h
│   │   │   │   ├── endian_machdep.h
│   │   │   │   ├── fenv.h
│   │   │   │   ├── float.h
│   │   │   │   ├── ieeefp.h
│   │   │   │   ├── ieee.h
│   │   │   │   ├── int_const.h
│   │   │   │   ├── int_fmtio.h
│   │   │   │   ├── int_limits.h
│   │   │   │   ├── int_mwgwtypes.h
│   │   │   │   ├── int_types.h
│   │   │   │   ├── limits.h
│   │   │   │   ├── Makefile
│   │   │   │   ├── math.h
│   │   │   │   ├── mcontext.h
│   │   │   │   ├── npx.h
│   │   │   │   ├── param.h
│   │   │   │   ├── profile.h
│   │   │   │   ├── setjmp.h
│   │   │   │   ├── signal.h
│   │   │   │   ├── stdarg.h
│   │   │   │   ├── types.h
│   │   │   │   ├── vmparam.h
│   │   │   │   └── wchar_limits.h
│   │   │   └── Makefile
│   │   ├── Makefile
│   │   └── x86
│   │   └── include
│   │   ├── float.h
│   │   ├── ieeefp.h
│   │   ├── ieee.h
│   │   ├── Makefile
│   │   ├── math.h
│   │   └── mutex.h
│   ├── ar.h
│   ├── arpa
│   │   ├── ftp.h
│   │   ├── inet.h
│   │   ├── nameser_compat.h
│   │   ├── nameser.h
│   │   ├── telnet.h
│   │   └── tftp.h
│   ├── assert.h
│   ├── atomic.h
│   ├── bitstring.h
│   ├── bm.h
│   ├── cdbr.h
│   ├── cdbw.h
│   ├── complex.h
│   ├── cpio.h
│   ├── ctype.h
│   ├── db.h
│   ├── ddekit
│   │   ├── assert.h
│   │   ├── attribs.h
│   │   ├── condvar.h
│   │   ├── ddekit.h
│   │   ├── debug.h
│   │   ├── initcall.h
│   │   ├── inline.h
│   │   ├── interrupt.h
│   │   ├── lock.h
│   │   ├── memory.h
│   │   ├── minix
│   │   │   ├── msg_queue.h
│   │   │   └── pci.h
│   │   ├── panic.h
│   │   ├── pci.h
│   │   ├── pgtab.h
│   │   ├── printf.h
│   │   ├── resources.h
│   │   ├── semaphore.h
│   │   ├── thread.h
│   │   ├── timer.h
│   │   ├── types.h
│   │   └── usb.h
│   ├── dirent.h
│   ├── disktab.h
│   ├── dlfcn.h
│   ├── env.h
│   ├── err.h
│   ├── errno.h
│   ├── fenv.h
│   ├── fetch.h
│   ├── fmtmsg.h
│   ├── fnmatch.h
│   ├── fstab.h
│   ├── fts.h
│   ├── ftw.h
│   ├── getopt.h
│   ├── glob.h
│   ├── grp.h
│   ├── heimdal
│   │   ├── config.h
│   │   ├── crypto-headers.h
│   │   ├── hx509_err.h
│   │   ├── krb5-types.h
│   │   ├── krb_err.h
│   │   ├── protos.h
│   │   ├── roken.h
│   │   └── version.h
│   ├── hesiod.h
│   ├── iconv.h
│   ├── ieeefp.h
│   ├── ifaddrs.h
│   ├── inttypes.h
│   ├── iso646.h
│   ├── kvm.h
│   ├── langinfo.h
│   ├── libgen.h
│   ├── lib.h
│   ├── libutil.h
│   ├── limits.h
│   ├── link_aout.h
│   ├── link_elf.h
│   ├── link.h
│   ├── locale.h
│   ├── login_cap.h
│   ├── lwp.h
│   ├── Makefile
│   ├── Makefile.minix.inc
│   ├── malloc.h
│   ├── math.h
│   ├── md2.h
│   ├── memory.h
│   ├── minix
│   │   ├── acpi.h
│   │   ├── ansi.h
│   │   ├── audio_fw.h
│   │   ├── bdev.h
│   │   ├── bitmap.h
│   │   ├── blockdriver.h
│   │   ├── blockdriver_mt.h
│   │   ├── btrace.h
│   │   ├── callnr.h
│   │   ├── chardriver.h
│   │   ├── com.h
│   │   ├── compiler.h
│   │   ├── config.h
│   │   ├── const.h
│   │   ├── cpufeature.h
│   │   ├── crtso.h
│   │   ├── debug.h
│   │   ├── devio.h
│   │   ├── devman.h
│   │   ├── dirent.h
│   │   ├── dmap.h
│   │   ├── driver.h
│   │   ├── drivers.h
│   │   ├── drvlib.h
│   │   ├── ds.h
│   │   ├── endpoint.h
│   │   ├── fslib.h
│   │   ├── gcov.h
│   │   ├── hash.h
│   │   ├── hgfs.h
│   │   ├── input.h
│   │   ├── ioctl.h
│   │   ├── ipcconst.h
│   │   ├── ipc.h
│   │   ├── keymap.h
│   │   ├── libminixfs.h
│   │   ├── limits.h
│   │   ├── Makefile
│   │   ├── minlib.h
│   │   ├── mthread.h
│   │   ├── netdriver.h
│   │   ├── optset.h
│   │   ├── partition.h
│   │   ├── paths.h
│   │   ├── portio.h
│   │   ├── priv.h
│   │   ├── procfs.h
│   │   ├── profile.h
│   │   ├── queryparam.h
│   │   ├── rs.h
│   │   ├── safecopies.h
│   │   ├── sched.h
│   │   ├── sef.h
│   │   ├── sound.h
│   │   ├── spin.h
│   │   ├── sys_config.h
│   │   ├── sysinfo.h
│   │   ├── syslib.h
│   │   ├── sysutil.h
│   │   ├── timers.h
│   │   ├── tty.h
│   │   ├── type.h
│   │   ├── types.h
│   │   ├── u64.h
│   │   ├── usb_ch9.h
│   │   ├── usb.h
│   │   ├── vfsif.h
│   │   ├── vm.h
│   │   └── vtreefs.h
│   ├── mntopts.h
│   ├── monetary.h
│   ├── mpool.h
│   ├── mqueue.h
│   ├── ndbm.h
│   ├── net
│   │   ├── ethertypes.h
│   │   ├── gen
│   │   │   ├── arp_io.h
│   │   │   ├── dhcp.h
│   │   │   ├── ether.h
│   │   │   ├── eth_hdr.h
│   │   │   ├── eth_io.h
│   │   │   ├── icmp.h
│   │   │   ├── icmp_hdr.h
│   │   │   ├── if_ether.h
│   │   │   ├── inet.h
│   │   │   ├── in.h
│   │   │   ├── ip_hdr.h
│   │   │   ├── ip_io.h
│   │   │   ├── oneCsum.h
│   │   │   ├── psip_hdr.h
│   │   │   ├── psip_io.h
│   │   │   ├── rip.h
│   │   │   ├── route.h
│   │   │   ├── socket.h
│   │   │   ├── tcp.h
│   │   │   ├── tcp_hdr.h
│   │   │   ├── tcp_io.h
│   │   │   ├── udp.h
│   │   │   ├── udp_hdr.h
│   │   │   ├── udp_io.h
│   │   │   ├── udp_io_hdr.h
│   │   │   └── vjhc.h
│   │   ├── hton.h
│   │   ├── if_ether.h
│   │   ├── if.h
│   │   ├── Makefile
│   │   └── netlib.h
│   ├── netconfig.h
│   ├── netdb.h
│   ├── netgroup.h
│   ├── netinet
│   │   ├── in.h
│   │   ├── Makefile
│   │   └── tcp.h
│   ├── netinet6
│   │   ├── in6.h
│   │   └── Makefile
│   ├── nlist.h
│   ├── nl_types.h
│   ├── nsswitch.h
│   ├── paths.h
│   ├── prop
│   │   ├── Makefile
│   │   ├── plistref.h
│   │   ├── prop_array.h
│   │   ├── prop_bool.h
│   │   ├── prop_data.h
│   │   ├── prop_dictionary.h
│   │   ├── prop_ingest.h
│   │   ├── proplib.h
│   │   ├── prop_number.h
│   │   ├── prop_object.h
│   │   └── prop_string.h
│   ├── protocols
│   │   ├── dumprestore.h
│   │   ├── routed.h
│   │   ├── rwhod.h
│   │   ├── talkd.h
│   │   └── timed.h
│   ├── pwd.h
│   ├── randomid.h
│   ├── ranlib.h
│   ├── re_comp.h
│   ├── regex.h
│   ├── regexp.h
│   ├── resolv.h
│   ├── res_update.h
│   ├── rmt.h
│   ├── rpc
│   │   ├── auth.h
│   │   ├── auth_unix.h
│   │   ├── clnt.h
│   │   ├── clnt_soc.h
│   │   ├── Makefile
│   │   ├── nettype.h
│   │   ├── pmap_clnt.h
│   │   ├── pmap_prot.h
│   │   ├── pmap_rmt.h
│   │   ├── raw.h
│   │   ├── rpcb_clnt.h
│   │   ├── rpcb_prot.x
│   │   ├── rpc_com.h
│   │   ├── rpcent.h
│   │   ├── rpc.h
│   │   ├── rpc_msg.h
│   │   ├── svc_auth.h
│   │   ├── svc.h
│   │   ├── svc_soc.h
│   │   ├── types.h
│   │   └── xdr.h
│   ├── rpcsvc
│   │   ├── ypclnt.h
│   │   └── yp_prot.h
│   ├── sa.h
│   ├── sched.h
│   ├── search.h
│   ├── semaphore.h
│   ├── setjmp.h
│   ├── sgtty.h
│   ├── signal.h
│   ├── ssp
│   │   ├── ssp.h
│   │   ├── stdio.h
│   │   ├── string.h
│   │   ├── strings.h
│   │   └── unistd.h
│   ├── stab.h
│   ├── stdbool.h
│   ├── stddef.h
│   ├── stdio.h
│   ├── stdlib.h
│   ├── string.h
│   ├── stringlist.h
│   ├── strings.h
│   ├── struct.h
│   ├── sys
│   │   ├── ansi.h
│   │   ├── atomic.h
│   │   ├── bitops.h
│   │   ├── bswap.h
│   │   ├── cdefs_aout.h
│   │   ├── cdefs_elf.h
│   │   ├── cdefs.h
│   │   ├── ctype_bits.h
│   │   ├── ctype_inline.h
│   │   ├── dirent.h
│   │   ├── endian.h
│   │   ├── errno.h
│   │   ├── fcntl.h
│   │   ├── fd_set.h
│   │   ├── featuretest.h
│   │   ├── file.h
│   │   ├── float_ieee754.h
│   │   ├── gcq.h
│   │   ├── gmon.h
│   │   ├── hash.h
│   │   ├── ieee754.h
│   │   ├── inttypes.h
│   │   ├── ioc_net.h
│   │   ├── ioctl.h
│   │   ├── ipc.h
│   │   ├── localedef.h
│   │   ├── Makefile
│   │   ├── md4.h
│   │   ├── md5.h
│   │   ├── mman.h
│   │   ├── mount.h
│   │   ├── null.h
│   │   ├── param.h
│   │   ├── poll.h
│   │   ├── ptrace.h
│   │   ├── ptree.h
│   │   ├── queue.h
│   │   ├── rbtree.h
│   │   ├── reboot.h
│   │   ├── resource.h
│   │   ├── rmd160.h
│   │   ├── select.h
│   │   ├── sem.h
│   │   ├── sha1.h
│   │   ├── sha2.h
│   │   ├── shm.h
│   │   ├── siginfo.h
│   │   ├── signal.h
│   │   ├── sigtypes.h
│   │   ├── socket.h
│   │   ├── statfs.h
│   │   ├── stat.h
│   │   ├── statvfs.h
│   │   ├── stdint.h
│   │   ├── sysctl.h
│   │   ├── syslimits.h
│   │   ├── syslog.h
│   │   ├── termios.h
│   │   ├── time.h
│   │   ├── times.h
│   │   ├── tree.h
│   │   ├── ttycom.h
│   │   ├── ttydefaults.h
│   │   ├── types.h
│   │   ├── ucontext.h
│   │   ├── ucred.h
│   │   ├── uio.h
│   │   ├── un.h
│   │   ├── unistd.h
│   │   ├── utsname.h
│   │   ├── uuid.h
│   │   └── wait.h
│   ├── sysexits.h
│   ├── tar.h
│   ├── tgmath.h
│   ├── time.h
│   ├── timers.h
│   ├── ttyent.h
│   ├── tzfile.h
│   ├── ucontext.h
│   ├── ufs
│   │   ├── chfs
│   │   │   ├── chfs_args.h
│   │   │   ├── chfs.h
│   │   │   ├── chfs_inode.h
│   │   │   ├── chfs_pool.h
│   │   │   ├── debug.h
│   │   │   ├── ebh.h
│   │   │   ├── ebh_media.h
│   │   │   ├── ebh_misc.h
│   │   │   └── media.h
│   │   ├── ext2fs
│   │   │   ├── ext2fs_dinode.h
│   │   │   ├── ext2fs_dir.h
│   │   │   ├── ext2fs_extern.h
│   │   │   └── ext2fs.h
│   │   ├── ffs
│   │   │   ├── ffs_extern.h
│   │   │   └── fs.h
│   │   ├── lfs
│   │   │   ├── lfs_extern.h
│   │   │   └── lfs.h
│   │   ├── mfs
│   │   │   ├── mfs_extern.h
│   │   │   └── mfsnode.h
│   │   └── ufs
│   │   ├── dinode.h
│   │   ├── dir.h
│   │   ├── dirhash.h
│   │   ├── extattr.h
│   │   ├── inode.h
│   │   ├── quota1.h
│   │   ├── quota2.h
│   │   ├── quota.h
│   │   ├── ufs_bswap.h
│   │   ├── ufs_extern.h
│   │   ├── ufsmount.h
│   │   ├── ufs_quota.h
│   │   └── ufs_wapbl.h
│   ├── ulimit.h
│   ├── unistd.h
│   ├── util.h
│   ├── utime.h
│   ├── utmp.h
│   ├── utmpx.h
│   ├── uuid.h
│   ├── varargs.h
│   ├── vis.h
│   ├── wchar.h
│   ├── wctype.h
│   └── wordexp.h
├── kernel
│   ├── arch
│   │   └── i386
│   │   ├── acpi.c
│   │   ├── acpi.h
│   │   ├── apic_asm.h
│   │   ├── apic_asm.S
│   │   ├── apic.c
│   │   ├── apic.h
│   │   ├── arch_clock.c
│   │   ├── arch_do_vmctl.c
│   │   ├── arch_smp.c
│   │   ├── arch_system.c
│   │   ├── arch_watchdog.c
│   │   ├── breakpoints.c
│   │   ├── debugreg.h
│   │   ├── debugreg.S
│   │   ├── do_int86.c
│   │   ├── do_iopenable.c
│   │   ├── do_readbios.c
│   │   ├── do_sdevio.c
│   │   ├── exception.c
│   │   ├── glo.h
│   │   ├── i8259.c
│   │   ├── include
│   │   │   ├── arch_clock.h
│   │   │   ├── archconst.h
│   │   │   ├── arch_proto.h
│   │   │   ├── arch_smp.h
│   │   │   ├── arch_watchdog.h
│   │   │   └── hw_intr.h
│   │   ├── io_inb.S
│   │   ├── io_inl.S
│   │   ├── io_intr.S
│   │   ├── io_inw.S
│   │   ├── io_outb.S
│   │   ├── io_outl.S
│   │   ├── io_outw.S
│   │   ├── kernel.lds
│   │   ├── klib16.S
│   │   ├── klib.S
│   │   ├── Makefile.inc
│   │   ├── mb_utils.h
│   │   ├── memory.c
│   │   ├── mpx.S
│   │   ├── multiboot.S
│   │   ├── oxpcie.c
│   │   ├── oxpcie.h
│   │   ├── pre_init.c
│   │   ├── protect.c
│   │   ├── sconst.h
│   │   ├── serial.h
│   │   └── trampoline.S
│   ├── clock.c
│   ├── clock.h
│   ├── config.h
│   ├── const.h
│   ├── cpulocals.c
│   ├── cpulocals.h
│   ├── debug.c
│   ├── debug.h
│   ├── extract-errno.sh
│   ├── extract-mfield.sh
│   ├── extract-mtype.sh
│   ├── glo.h
│   ├── interrupt.c
│   ├── interrupt.h
│   ├── ipc.h
│   ├── kernel.h
│   ├── main.c
│   ├── Makefile
│   ├── perf.h
│   ├── priv.h
│   ├── proc.c
│   ├── proc.h
│   ├── profile.c
│   ├── profile.h
│   ├── proto.h
│   ├── smp.c
│   ├── smp.h
│   ├── spinlock.h
│   ├── start.c
│   ├── system
│   │   ├── do_abort.c
│   │   ├── do_clear.c
│   │   ├── do_copy.c
│   │   ├── do_cprofile.c
│   │   ├── do_devio.c
│   │   ├── do_endksig.c
│   │   ├── do_exec.c
│   │   ├── do_exit.c
│   │   ├── do_fork.c
│   │   ├── do_getinfo.c
│   │   ├── do_getksig.c
│   │   ├── do_irqctl.c
│   │   ├── do_kill.c
│   │   ├── do_mcontext.c
│   │   ├── do_memset.c
│   │   ├── do_newmap.c
│   │   ├── do_privctl.c
│   │   ├── do_profbuf.c
│   │   ├── do_runctl.c
│   │   ├── do_safecopy.c
│   │   ├── do_safemap.c
│   │   ├── do_schedctl.c
│   │   ├── do_schedule.c
│   │   ├── do_setalarm.c
│   │   ├── do_setgrant.c
│   │   ├── do_sigreturn.c
│   │   ├── do_sigsend.c
│   │   ├── do_sprofile.c
│   │   ├── do_statectl.c
│   │   ├── do_stime.c
│   │   ├── do_sysctl.c
│   │   ├── do_times.c
│   │   ├── do_trace.c
│   │   ├── do_umap.c
│   │   ├── do_umap_remote.c
│   │   ├── do_update.c
│   │   ├── do_vdevio.c
│   │   ├── do_vmctl.c
│   │   ├── do_vtimer.c
│   │   └── Makefile.inc
│   ├── system.c
│   ├── system.h
│   ├── table.c
│   ├── type.h
│   ├── utility.c
│   ├── vm.h
│   ├── watchdog.c
│   └── watchdog.h
├── lib
│   ├── csu
│   │   ├── i386-elf
│   │   │   ├── crt1_c.c
│   │   │   ├── crt1_s.S
│   │   │   ├── crtbegin.S
│   │   │   ├── crtend.S
│   │   │   ├── crti.S
│   │   │   ├── crtn.S
│   │   │   └── Makefile
│   │   └── Makefile
│   ├── libarchive
│   │   ├── archive_check_magic.c
│   │   ├── archive_crc32.h
│   │   ├── archive_endian.h
│   │   ├── archive_entry.3
│   │   ├── archive_entry.c
│   │   ├── archive_entry_copy_bhfi.c
│   │   ├── archive_entry_copy_stat.c
│   │   ├── archive_entry.h
│   │   ├── archive_entry_link_resolver.c
│   │   ├── archive_entry_private.h
│   │   ├── archive_entry_stat.c
│   │   ├── archive_entry_strmode.c
│   │   ├── archive_entry_xattr.c
│   │   ├── archive.h
│   │   ├── archive_hash.h
│   │   ├── archive_platform.h
│   │   ├── archive_private.h
│   │   ├── archive_read.3
│   │   ├── archive_read.c
│   │   ├── archive_read_data_into_fd.c
│   │   ├── archive_read_disk.3
│   │   ├── archive_read_disk.c
│   │   ├── archive_read_disk_entry_from_file.c
│   │   ├── archive_read_disk_private.h
│   │   ├── archive_read_disk_set_standard_lookup.c
│   │   ├── archive_read_extract.c
│   │   ├── archive_read_open_fd.c
│   │   ├── archive_read_open_file.c
│   │   ├── archive_read_open_filename.c
│   │   ├── archive_read_open_memory.c
│   │   ├── archive_read_private.h
│   │   ├── archive_read_support_compression_all.c
│   │   ├── archive_read_support_compression_bzip2.c
│   │   ├── archive_read_support_compression_compress.c
│   │   ├── archive_read_support_compression_gzip.c
│   │   ├── archive_read_support_compression_none.c
│   │   ├── archive_read_support_compression_program.c
│   │   ├── archive_read_support_compression_uu.c
│   │   ├── archive_read_support_compression_xz.c
│   │   ├── archive_read_support_format_all.c
│   │   ├── archive_read_support_format_ar.c
│   │   ├── archive_read_support_format_empty.c
│   │   ├── archive_read_support_format_iso9660.c
│   │   ├── archive_read_support_format_mtree.c
│   │   ├── archive_read_support_format_raw.c
│   │   ├── archive_read_support_format_tar.c
│   │   ├── archive_read_support_format_xar.c
│   │   ├── archive_read_support_format_zip.c
│   │   ├── archive_string.c
│   │   ├── archive_string.h
│   │   ├── archive_string_sprintf.c
│   │   ├── archive_util.3
│   │   ├── archive_util.c
│   │   ├── archive_virtual.c
│   │   ├── archive_write.3
│   │   ├── archive_write.c
│   │   ├── archive_write_disk.3
│   │   ├── archive_write_disk.c
│   │   ├── archive_write_disk_private.h
│   │   ├── archive_write_disk_set_standard_lookup.c
│   │   ├── archive_write_open_fd.c
│   │   ├── archive_write_open_file.c
│   │   ├── archive_write_open_filename.c
│   │   ├── archive_write_open_memory.c
│   │   ├── archive_write_private.h
│   │   ├── archive_write_set_compression_bzip2.c
│   │   ├── archive_write_set_compression_compress.c
│   │   ├── archive_write_set_compression_gzip.c
│   │   ├── archive_write_set_compression_none.c
│   │   ├── archive_write_set_compression_program.c
│   │   ├── archive_write_set_compression_xz.c
│   │   ├── archive_write_set_format_ar.c
│   │   ├── archive_write_set_format_by_name.c
│   │   ├── archive_write_set_format.c
│   │   ├── archive_write_set_format_mtree.c
│   │   ├── archive_write_set_format_pax.c
│   │   ├── archive_write_set_format_shar.c
│   │   ├── archive_write_set_format_ustar.c
│   │   ├── archive_write_set_format_zip.c
│   │   ├── config.h
│   │   ├── filter_fork.c
│   │   ├── filter_fork.h
│   │   ├── libarchive.3
│   │   ├── libarchive-formats.5
│   │   ├── libarchive_internals.3
│   │   ├── Makefile
│   │   ├── minix_utils.h
│   │   ├── mtree.5
│   │   ├── README
│   │   └── tar.5
│   ├── libasyn
│   │   ├── asyn_cancel.c
│   │   ├── asynchio.h
│   │   ├── asyn_close.c
│   │   ├── asyn.h
│   │   ├── asyn_init.c
│   │   ├── asyn_pending.c
│   │   ├── asyn_read.c
│   │   ├── asyn_special.c
│   │   ├── asyn_synch.c
│   │   ├── asyn_wait.c
│   │   ├── asyn_write.c
│   │   ├── Makefile
│   │   └── Makefile.inc
│   ├── libaudiodriver
│   │   ├── audio_fw.c
│   │   ├── liveupdate.c
│   │   └── Makefile
│   ├── libbdev
│   │   ├── bdev.c
│   │   ├── call.c
│   │   ├── const.h
│   │   ├── driver.c
│   │   ├── ipc.c
│   │   ├── Makefile
│   │   ├── minor.c
│   │   ├── NOTES
│   │   ├── proto.h
│   │   └── type.h
│   ├── libblockdriver
│   │   ├── const.h
│   │   ├── driver.c
│   │   ├── driver.h
│   │   ├── driver_mt.c
│   │   ├── driver_st.c
│   │   ├── drvlib.c
│   │   ├── Makefile
│   │   ├── mq.c
│   │   ├── mq.h
│   │   ├── trace.c
│   │   └── trace.h
│   ├── libbz2
│   │   ├── Makefile
│   │   └── shlib_version
│   ├── libc
│   │   ├── arch
│   │   │   ├── alpha
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── divrem.m4
│   │   │   │   │   ├── fabs.S
│   │   │   │   │   ├── flt_rounds.c
│   │   │   │   │   ├── fpgetmask.c
│   │   │   │   │   ├── fpgetround.c
│   │   │   │   │   ├── fpgetsticky.c
│   │   │   │   │   ├── fpsetmask.c
│   │   │   │   │   ├── fpsetround.c
│   │   │   │   │   ├── fpsetsticky.c
│   │   │   │   │   ├── __longjmp14.c
│   │   │   │   │   ├── _lwp.c
│   │   │   │   │   ├── makecontext.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── nanf.c
│   │   │   │   │   ├── resumecontext.c
│   │   │   │   │   ├── _resumecontext.S
│   │   │   │   │   ├── __setjmp14.S
│   │   │   │   │   ├── __sigsetjmp14.S
│   │   │   │   │   └── swapcontext.S
│   │   │   │   ├── genassym.cf
│   │   │   │   ├── gmon
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── stdlib
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp2.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   └── SYS.h
│   │   │   ├── arm
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── alloca.S
│   │   │   │   │   ├── fabs.c
│   │   │   │   │   ├── flt_rounds.c
│   │   │   │   │   ├── _lwp.c
│   │   │   │   │   ├── makecontext.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── nanf.c
│   │   │   │   │   ├── resumecontext.c
│   │   │   │   │   ├── _setjmp.S
│   │   │   │   │   ├── setjmp.S
│   │   │   │   │   ├── sigsetjmp.S
│   │   │   │   │   └── swapcontext.S
│   │   │   │   ├── hardfloat
│   │   │   │   │   ├── fpgetmask.S
│   │   │   │   │   ├── fpgetround.c
│   │   │   │   │   ├── fpgetsticky.S
│   │   │   │   │   ├── fpsetmask.S
│   │   │   │   │   ├── fpsetround.c
│   │   │   │   │   └── fpsetsticky.S
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── softfloat
│   │   │   │   │   ├── arm-gcc.h
│   │   │   │   │   ├── milieu.h
│   │   │   │   │   └── softfloat.h
│   │   │   │   ├── stdlib
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   ├── bcopy.S
│   │   │   │   │   ├── bzero.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp2.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   └── SYS.h
│   │   │   ├── hppa
│   │   │   │   ├── DEFS.h
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── fabs.c
│   │   │   │   │   ├── flt_rounds.c
│   │   │   │   │   ├── fpgetmask.c
│   │   │   │   │   ├── fpgetround.c
│   │   │   │   │   ├── fpgetsticky.c
│   │   │   │   │   ├── fpsetmask.c
│   │   │   │   │   ├── fpsetround.c
│   │   │   │   │   ├── fpsetsticky.c
│   │   │   │   │   ├── __longjmp14.c
│   │   │   │   │   ├── _lwp.c
│   │   │   │   │   ├── makecontext.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── nanf.c
│   │   │   │   │   ├── resumecontext.c
│   │   │   │   │   ├── _resumecontext.S
│   │   │   │   │   ├── __setjmp14.S
│   │   │   │   │   ├── _setjmp.S
│   │   │   │   │   ├── __sigsetjmp14.S
│   │   │   │   │   └── swapcontext.S
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── stdlib
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   ├── bcmp.S
│   │   │   │   │   ├── bzero.S
│   │   │   │   │   ├── ffs.S
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── strlcpy.S
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp2.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   └── SYS.h
│   │   │   ├── i386
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── alloca.S
│   │   │   │   │   ├── divsi3.S
│   │   │   │   │   ├── fabs.S
│   │   │   │   │   ├── fixdfsi.S
│   │   │   │   │   ├── fixunsdfsi.S
│   │   │   │   │   ├── flt_rounds.S
│   │   │   │   │   ├── fpclassifyl.c
│   │   │   │   │   ├── fpgetmask.S
│   │   │   │   │   ├── fpgetround.S
│   │   │   │   │   ├── fpgetsticky.S
│   │   │   │   │   ├── fpsetmask.S
│   │   │   │   │   ├── fpsetround.S
│   │   │   │   │   ├── fpsetsticky.S
│   │   │   │   │   ├── infinityl.c
│   │   │   │   │   ├── isfinitel.c
│   │   │   │   │   ├── isinfl.c
│   │   │   │   │   ├── isnanl.c
│   │   │   │   │   ├── _lwp.c
│   │   │   │   │   ├── makecontext.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── nanf.c
│   │   │   │   │   ├── resumecontext.S
│   │   │   │   │   ├── _setjmp.S
│   │   │   │   │   ├── setjmp.S
│   │   │   │   │   ├── signbitl.c
│   │   │   │   │   ├── sigsetjmp.S
│   │   │   │   │   ├── swapcontext.S
│   │   │   │   │   └── udivsi3.S
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── stdlib
│   │   │   │   │   ├── abs.S
│   │   │   │   │   ├── div.S
│   │   │   │   │   ├── labs.S
│   │   │   │   │   ├── ldiv.S
│   │   │   │   │   ├── llabs.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   ├── bcmp.S
│   │   │   │   │   ├── bcopy.S
│   │   │   │   │   ├── bzero.S
│   │   │   │   │   ├── index.S
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── rindex.S
│   │   │   │   │   ├── strncmp.S
│   │   │   │   │   └── swab.S
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp2.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   ├── SYS.h
│   │   │   │   └── sys-minix
│   │   │   │   ├── brksize.S
│   │   │   │   ├── _ipc.S
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── _senda.S
│   │   │   │   ├── __sigreturn.S
│   │   │   │   └── ucontext.S
│   │   │   ├── ia64
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── flt_rounds.c
│   │   │   │   │   ├── fpgetmask.c
│   │   │   │   │   ├── fpgetround.c
│   │   │   │   │   ├── fpsetmask.c
│   │   │   │   │   ├── fpsetround.c
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── stdlib
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp2.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   └── SYS.h
│   │   │   ├── m68k
│   │   │   │   ├── DEFS.h
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── adddf3.S
│   │   │   │   │   ├── addsf3.S
│   │   │   │   │   ├── alloca.S
│   │   │   │   │   ├── ashlsi3.S
│   │   │   │   │   ├── ashrsi3.S
│   │   │   │   │   ├── cmpdf2.S
│   │   │   │   │   ├── cmpsf2.S
│   │   │   │   │   ├── divdf3.S
│   │   │   │   │   ├── divsf3.S
│   │   │   │   │   ├── extendsfdf2.S
│   │   │   │   │   ├── fabs.S
│   │   │   │   │   ├── fixdfsi.S
│   │   │   │   │   ├── fixunsdfsi.S
│   │   │   │   │   ├── floatsidf.S
│   │   │   │   │   ├── flt_rounds.S
│   │   │   │   │   ├── flt_rounds_softfloat.S
│   │   │   │   │   ├── fpclassifyl.c
│   │   │   │   │   ├── fpfake.c
│   │   │   │   │   ├── fpgetmask.S
│   │   │   │   │   ├── fpgetround.S
│   │   │   │   │   ├── fpgetsticky.S
│   │   │   │   │   ├── fpsetmask.S
│   │   │   │   │   ├── fpsetround.S
│   │   │   │   │   ├── fpsetsticky.S
│   │   │   │   │   ├── infinityl.c
│   │   │   │   │   ├── isfinitel.c
│   │   │   │   │   ├── isinfl.c
│   │   │   │   │   ├── isnanl.c
│   │   │   │   │   ├── ldexp_881.c
│   │   │   │   │   ├── longjmp.c
│   │   │   │   │   ├── lshlsi3.S
│   │   │   │   │   ├── lshrsi3.S
│   │   │   │   │   ├── _lwp.c
│   │   │   │   │   ├── makecontext.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── modf.S
│   │   │   │   │   ├── muldf3.S
│   │   │   │   │   ├── mulsf3.S
│   │   │   │   │   ├── nanf.c
│   │   │   │   │   ├── negdf2.S
│   │   │   │   │   ├── negsf2.S
│   │   │   │   │   ├── resumecontext.S
│   │   │   │   │   ├── _setjmp.S
│   │   │   │   │   ├── setjmp.S
│   │   │   │   │   ├── signbitl.c
│   │   │   │   │   ├── sigsetjmp.S
│   │   │   │   │   ├── subdf3.S
│   │   │   │   │   ├── subsf3.S
│   │   │   │   │   ├── swapcontext.S
│   │   │   │   │   ├── truncdfsf2.S
│   │   │   │   │   └── umulsi3.S
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── quad
│   │   │   │   │   ├── ashldi3.S
│   │   │   │   │   ├── ashrdi3.S
│   │   │   │   │   └── lshrdi3.S
│   │   │   │   ├── softfloat
│   │   │   │   │   ├── m68k-gcc.h
│   │   │   │   │   ├── milieu.h
│   │   │   │   │   └── softfloat.h
│   │   │   │   ├── stdlib
│   │   │   │   │   ├── abs.S
│   │   │   │   │   ├── llabs.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── memccpy.S
│   │   │   │   │   └── swab.S
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── _lwp_getprivate.S
│   │   │   │   │   ├── __mmap.S
│   │   │   │   │   ├── mremap.S
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp2.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   └── SYS.h
│   │   │   ├── mips
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── cacheflush.c
│   │   │   │   │   ├── fabs.S
│   │   │   │   │   ├── flt_rounds.c
│   │   │   │   │   ├── fpgetmask.c
│   │   │   │   │   ├── fpgetround.c
│   │   │   │   │   ├── fpgetsticky.c
│   │   │   │   │   ├── fpsetmask.c
│   │   │   │   │   ├── fpsetround.c
│   │   │   │   │   ├── fpsetsticky.c
│   │   │   │   │   ├── ldexp.S
│   │   │   │   │   ├── longjmp.c
│   │   │   │   │   ├── _lwp.c
│   │   │   │   │   ├── makecontext.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── modf.S
│   │   │   │   │   ├── nanf.c
│   │   │   │   │   ├── resumecontext.c
│   │   │   │   │   ├── _resumecontext.S
│   │   │   │   │   ├── _setjmp.S
│   │   │   │   │   ├── setjmp.S
│   │   │   │   │   ├── sigsetjmp.S
│   │   │   │   │   └── swapcontext.S
│   │   │   │   ├── genassym.cf
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── softfloat
│   │   │   │   │   ├── milieu.h
│   │   │   │   │   ├── mips-gcc.h
│   │   │   │   │   └── softfloat.h
│   │   │   │   ├── stdlib
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   ├── bcmp.S
│   │   │   │   │   ├── bzero.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp2.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   └── SYS.h
│   │   │   ├── powerpc
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── fabs.c
│   │   │   │   │   ├── flt_rounds.c
│   │   │   │   │   ├── fpgetmask.c
│   │   │   │   │   ├── fpgetround.c
│   │   │   │   │   ├── fpgetsticky.c
│   │   │   │   │   ├── fpsetmask.c
│   │   │   │   │   ├── fpsetround.c
│   │   │   │   │   ├── fpsetsticky.c
│   │   │   │   │   ├── _lwp.c
│   │   │   │   │   ├── makecontext.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── nanf.c
│   │   │   │   │   ├── resumecontext.c
│   │   │   │   │   ├── __setjmp14.S
│   │   │   │   │   ├── _setjmp.S
│   │   │   │   │   ├── __sigsetjmp14.S
│   │   │   │   │   ├── swapcontext.S
│   │   │   │   │   └── syncicache.c
│   │   │   │   ├── genassym.cf
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── softfloat
│   │   │   │   │   ├── milieu.h
│   │   │   │   │   ├── powerpc-gcc.h
│   │   │   │   │   └── softfloat.h
│   │   │   │   ├── stdlib
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   ├── bzero.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp2.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   └── SYS.h
│   │   │   ├── powerpc64
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── fabs.c
│   │   │   │   │   ├── flt_rounds.c
│   │   │   │   │   ├── fpgetmask.c
│   │   │   │   │   ├── fpgetround.c
│   │   │   │   │   ├── fpgetsticky.c
│   │   │   │   │   ├── fpsetmask.c
│   │   │   │   │   ├── fpsetround.c
│   │   │   │   │   ├── fpsetsticky.c
│   │   │   │   │   ├── _lwp.c
│   │   │   │   │   ├── makecontext.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── nanf.c
│   │   │   │   │   ├── resumecontext.c
│   │   │   │   │   ├── __setjmp14.S
│   │   │   │   │   ├── _setjmp.S
│   │   │   │   │   ├── __sigsetjmp14.S
│   │   │   │   │   ├── swapcontext.S
│   │   │   │   │   └── syncicache.c
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── stdlib
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   ├── bzero.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp2.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   └── SYS.h
│   │   │   ├── sh3
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── fabs.c
│   │   │   │   │   ├── flt_rounds.c
│   │   │   │   │   ├── _lwp.c
│   │   │   │   │   ├── makecontext.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── nanf.c
│   │   │   │   │   ├── resumecontext.c
│   │   │   │   │   ├── _setjmp.S
│   │   │   │   │   ├── setjmp.S
│   │   │   │   │   ├── sigsetjmp.S
│   │   │   │   │   └── swapcontext.S
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   ├── htonl.c
│   │   │   │   │   ├── htons.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── ntohl.c
│   │   │   │   │   └── ntohs.c
│   │   │   │   ├── softfloat
│   │   │   │   │   ├── milieu.h
│   │   │   │   │   ├── sh3-gcc.h
│   │   │   │   │   └── softfloat.h
│   │   │   │   ├── stdlib
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   ├── bcopy.S
│   │   │   │   │   ├── bzero.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp2.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   └── SYS.h
│   │   │   ├── sparc
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── divrem.m4
│   │   │   │   │   ├── fabs.S
│   │   │   │   │   ├── fixunsdfsi.S
│   │   │   │   │   ├── flt_rounds.c
│   │   │   │   │   ├── fpgetmask.c
│   │   │   │   │   ├── fpgetround.c
│   │   │   │   │   ├── fpgetsticky.c
│   │   │   │   │   ├── fpsetmask.c
│   │   │   │   │   ├── fpsetround.c
│   │   │   │   │   ├── fpsetsticky.c
│   │   │   │   │   ├── longjmp.c
│   │   │   │   │   ├── _lwp.c
│   │   │   │   │   ├── makecontext.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── modf.S
│   │   │   │   │   ├── nanf.c
│   │   │   │   │   ├── resumecontext.c
│   │   │   │   │   ├── _setjmp.S
│   │   │   │   │   ├── setjmp.S
│   │   │   │   │   ├── sigsetjmp.S
│   │   │   │   │   └── swapcontext.S
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── stdlib
│   │   │   │   │   ├── llabs.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp2.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   └── SYS.h
│   │   │   ├── sparc64
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── divrem.m4
│   │   │   │   │   ├── fabs.S
│   │   │   │   │   ├── fixunsdfsi.S
│   │   │   │   │   ├── flt_rounds.c
│   │   │   │   │   ├── fpclassifyl.c
│   │   │   │   │   ├── fpgetmask.c
│   │   │   │   │   ├── fpgetround.c
│   │   │   │   │   ├── fpgetsticky.c
│   │   │   │   │   ├── fpsetmask.c
│   │   │   │   │   ├── fpsetround.c
│   │   │   │   │   ├── fpsetsticky.c
│   │   │   │   │   ├── infinityl.c
│   │   │   │   │   ├── isfinitel.c
│   │   │   │   │   ├── isinfl.c
│   │   │   │   │   ├── isnanl.c
│   │   │   │   │   ├── longjmp.c
│   │   │   │   │   ├── _lwp.c
│   │   │   │   │   ├── makecontext.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── modf.S
│   │   │   │   │   ├── nanf.c
│   │   │   │   │   ├── resumecontext.c
│   │   │   │   │   ├── _setjmp.S
│   │   │   │   │   ├── setjmp.S
│   │   │   │   │   ├── signbitl.c
│   │   │   │   │   ├── sigsetjmp.S
│   │   │   │   │   └── swapcontext.S
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── softfloat
│   │   │   │   │   ├── milieu.h
│   │   │   │   │   ├── qp.c
│   │   │   │   │   ├── softfloat.h
│   │   │   │   │   ├── softfloat-qp.h
│   │   │   │   │   ├── softfloat-wrapper.c
│   │   │   │   │   └── sparc64-gcc.h
│   │   │   │   ├── stdlib
│   │   │   │   │   ├── abs.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── memcpy.S
│   │   │   │   │   └── memset.S
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp2.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   └── SYS.h
│   │   │   ├── vax
│   │   │   │   ├── DEFS.h
│   │   │   │   ├── gdtoa
│   │   │   │   │   ├── arith.h
│   │   │   │   │   ├── gd_qnan.h
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── gen
│   │   │   │   │   ├── alloca.S
│   │   │   │   │   ├── byte_swap_2.S
│   │   │   │   │   ├── byte_swap_4.S
│   │   │   │   │   ├── fabs.S
│   │   │   │   │   ├── fpclassifyd.c
│   │   │   │   │   ├── fpclassifyf.c
│   │   │   │   │   ├── frexp.c
│   │   │   │   │   ├── infinity.c
│   │   │   │   │   ├── infinityf.c
│   │   │   │   │   ├── infinityl.c
│   │   │   │   │   ├── isfinited.c
│   │   │   │   │   ├── isfinitef.c
│   │   │   │   │   ├── isinf.c
│   │   │   │   │   ├── isnan.c
│   │   │   │   │   ├── ldexp.S
│   │   │   │   │   ├── __longjmp14.c
│   │   │   │   │   ├── _lwp.c
│   │   │   │   │   ├── makecontext.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── modf.S
│   │   │   │   │   ├── resumecontext.c
│   │   │   │   │   ├── __setjmp14.S
│   │   │   │   │   ├── _setjmp.S
│   │   │   │   │   ├── signbitd.c
│   │   │   │   │   ├── signbitf.c
│   │   │   │   │   ├── __sigsetjmp14.S
│   │   │   │   │   └── swapcontext.S
│   │   │   │   ├── genassym.cf
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── net
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── stdlib
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── string
│   │   │   │   │   ├── bcmp.S
│   │   │   │   │   ├── bcopy.S
│   │   │   │   │   ├── bzero.S
│   │   │   │   │   ├── ffs.S
│   │   │   │   │   ├── index.S
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── memcmp.S
│   │   │   │   ├── sys
│   │   │   │   │   ├── brk.S
│   │   │   │   │   ├── cerror.S
│   │   │   │   │   ├── __clone.S
│   │   │   │   │   ├── execle.S
│   │   │   │   │   ├── execlp.S
│   │   │   │   │   ├── execl.S
│   │   │   │   │   ├── exect.S
│   │   │   │   │   ├── fork.S
│   │   │   │   │   ├── getcontext.S
│   │   │   │   │   ├── pipe.S
│   │   │   │   │   ├── ptrace.S
│   │   │   │   │   ├── sbrk.S
│   │   │   │   │   ├── shmat.S
│   │   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   │   ├── __sigtramp3.S
│   │   │   │   │   ├── __syscall.S
│   │   │   │   │   ├── syscall.S
│   │   │   │   │   └── __vfork14.S
│   │   │   │   └── SYS.h
│   │   │   └── x86_64
│   │   │   ├── gdtoa
│   │   │   │   ├── arith.h
│   │   │   │   ├── gd_qnan.h
│   │   │   │   └── Makefile.inc
│   │   │   ├── gen
│   │   │   │   ├── alloca.S
│   │   │   │   ├── fabs.S
│   │   │   │   ├── flt_rounds.S
│   │   │   │   ├── fpclassifyl.c
│   │   │   │   ├── fpgetmask.S
│   │   │   │   ├── fpgetround.S
│   │   │   │   ├── fpgetsticky.S
│   │   │   │   ├── fpsetmask.S
│   │   │   │   ├── fpsetround.S
│   │   │   │   ├── fpsetsticky.S
│   │   │   │   ├── infinityl.c
│   │   │   │   ├── isfinitel.c
│   │   │   │   ├── isinfl.c
│   │   │   │   ├── isnanl.c
│   │   │   │   ├── _lwp.c
│   │   │   │   ├── makecontext.c
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── nanf.c
│   │   │   │   ├── resumecontext.S
│   │   │   │   ├── __setjmp14.S
│   │   │   │   ├── _setjmp.S
│   │   │   │   ├── signbitl.c
│   │   │   │   ├── __sigsetjmp14.S
│   │   │   │   └── swapcontext.S
│   │   │   ├── Makefile.inc
│   │   │   ├── net
│   │   │   │   └── Makefile.inc
│   │   │   ├── stdlib
│   │   │   │   ├── abs.S
│   │   │   │   ├── div.S
│   │   │   │   ├── labs.S
│   │   │   │   ├── ldiv.S
│   │   │   │   └── Makefile.inc
│   │   │   ├── string
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── strncmp.S
│   │   │   │   └── swab.S
│   │   │   ├── sys
│   │   │   │   ├── brk.S
│   │   │   │   ├── cerror.S
│   │   │   │   ├── __clone.S
│   │   │   │   ├── exect.S
│   │   │   │   ├── fork.S
│   │   │   │   ├── getcontext.S
│   │   │   │   ├── pipe.S
│   │   │   │   ├── ptrace.S
│   │   │   │   ├── sbrk.S
│   │   │   │   ├── shmat.S
│   │   │   │   ├── __sigaction14_sigtramp.c
│   │   │   │   ├── __sigtramp2.S
│   │   │   │   ├── __syscall.S
│   │   │   │   ├── syscall.S
│   │   │   │   └── __vfork14.S
│   │   │   └── SYS.h
│   │   ├── atomic
│   │   │   ├── atomic_add.3
│   │   │   ├── atomic_and.3
│   │   │   ├── atomic_cas.3
│   │   │   ├── atomic_dec.3
│   │   │   ├── atomic_inc.3
│   │   │   ├── atomic_ops.3
│   │   │   ├── atomic_or.3
│   │   │   ├── atomic_swap.3
│   │   │   ├── Makefile.inc
│   │   │   └── membar_ops.3
│   │   ├── cdb
│   │   │   ├── cdb.5
│   │   │   ├── cdbr.3
│   │   │   ├── cdbr.c
│   │   │   ├── cdbw.3
│   │   │   ├── cdbw.c
│   │   │   └── Makefile.inc
│   │   ├── citrus
│   │   │   ├── citrus_aliasname_local.h
│   │   │   ├── citrus_bcs.c
│   │   │   ├── citrus_bcs.h
│   │   │   ├── citrus_bcs_strtol.c
│   │   │   ├── citrus_bcs_strtoul.c
│   │   │   ├── citrus_csmapper.c
│   │   │   ├── citrus_csmapper.h
│   │   │   ├── citrus_ctype.c
│   │   │   ├── citrus_ctype_fallback.c
│   │   │   ├── citrus_ctype_fallback.h
│   │   │   ├── citrus_ctype.h
│   │   │   ├── citrus_ctype_local.h
│   │   │   ├── citrus_ctype_template.h
│   │   │   ├── citrus_db.c
│   │   │   ├── citrus_db_factory.c
│   │   │   ├── citrus_db_factory.h
│   │   │   ├── citrus_db_file.h
│   │   │   ├── citrus_db.h
│   │   │   ├── citrus_db_hash.c
│   │   │   ├── citrus_db_hash.h
│   │   │   ├── citrus_esdb.c
│   │   │   ├── citrus_esdb_file.h
│   │   │   ├── citrus_esdb.h
│   │   │   ├── citrus_fix_grouping.h
│   │   │   ├── citrus_hash.c
│   │   │   ├── citrus_hash.h
│   │   │   ├── citrus_iconv.c
│   │   │   ├── citrus_iconv.h
│   │   │   ├── citrus_iconv_local.h
│   │   │   ├── citrus_lc_ctype.c
│   │   │   ├── citrus_lc_messages.c
│   │   │   ├── citrus_lc_messages.h
│   │   │   ├── citrus_lc_monetary.c
│   │   │   ├── citrus_lc_monetary.h
│   │   │   ├── citrus_lc_numeric.c
│   │   │   ├── citrus_lc_numeric.h
│   │   │   ├── citrus_lc_template_decl.h
│   │   │   ├── citrus_lc_template.h
│   │   │   ├── citrus_lc_time.c
│   │   │   ├── citrus_lc_time.h
│   │   │   ├── citrus_lookup.c
│   │   │   ├── citrus_lookup_factory.c
│   │   │   ├── citrus_lookup_factory.h
│   │   │   ├── citrus_lookup_file.h
│   │   │   ├── citrus_lookup.h
│   │   │   ├── citrus_mapper.c
│   │   │   ├── citrus_mapper.h
│   │   │   ├── citrus_mapper_local.h
│   │   │   ├── citrus_memstream.c
│   │   │   ├── citrus_memstream.h
│   │   │   ├── citrus_mmap.c
│   │   │   ├── citrus_mmap.h
│   │   │   ├── citrus_module.c
│   │   │   ├── citrus_module.h
│   │   │   ├── citrus_namespace.h
│   │   │   ├── citrus_none.c
│   │   │   ├── citrus_none.h
│   │   │   ├── citrus_pivot_factory.c
│   │   │   ├── citrus_pivot_factory.h
│   │   │   ├── citrus_pivot_file.h
│   │   │   ├── citrus_prop.c
│   │   │   ├── citrus_prop.h
│   │   │   ├── citrus_region.h
│   │   │   ├── citrus_stdenc.c
│   │   │   ├── citrus_stdenc.h
│   │   │   ├── citrus_stdenc_local.h
│   │   │   ├── citrus_stdenc_template.h
│   │   │   ├── citrus_types.h
│   │   │   ├── Makefile.inc
│   │   │   └── modules
│   │   │   ├── citrus_big5.c
│   │   │   ├── citrus_big5.h
│   │   │   ├── citrus_dechanyu.c
│   │   │   ├── citrus_dechanyu.h
│   │   │   ├── citrus_euc.c
│   │   │   ├── citrus_euc.h
│   │   │   ├── citrus_euctw.c
│   │   │   ├── citrus_euctw.h
│   │   │   ├── citrus_gbk2k.c
│   │   │   ├── citrus_gbk2k.h
│   │   │   ├── citrus_hz.c
│   │   │   ├── citrus_hz.h
│   │   │   ├── citrus_iconv_none.c
│   │   │   ├── citrus_iconv_none.h
│   │   │   ├── citrus_iconv_std.c
│   │   │   ├── citrus_iconv_std.h
│   │   │   ├── citrus_iconv_std_local.h
│   │   │   ├── citrus_iso2022.c
│   │   │   ├── citrus_iso2022.h
│   │   │   ├── citrus_johab.c
│   │   │   ├── citrus_johab.h
│   │   │   ├── citrus_mapper_646.c
│   │   │   ├── citrus_mapper_646.h
│   │   │   ├── citrus_mapper_none.c
│   │   │   ├── citrus_mapper_none.h
│   │   │   ├── citrus_mapper_serial.c
│   │   │   ├── citrus_mapper_serial.h
│   │   │   ├── citrus_mapper_std.c
│   │   │   ├── citrus_mapper_std_file.h
│   │   │   ├── citrus_mapper_std.h
│   │   │   ├── citrus_mapper_std_local.h
│   │   │   ├── citrus_mapper_zone.c
│   │   │   ├── citrus_mapper_zone.h
│   │   │   ├── citrus_mskanji.c
│   │   │   ├── citrus_mskanji.h
│   │   │   ├── citrus_ues.c
│   │   │   ├── citrus_ues.h
│   │   │   ├── citrus_utf1632.c
│   │   │   ├── citrus_utf1632.h
│   │   │   ├── citrus_utf7.c
│   │   │   ├── citrus_utf7.h
│   │   │   ├── citrus_utf8.c
│   │   │   ├── citrus_utf8.h
│   │   │   ├── citrus_viqr.c
│   │   │   ├── citrus_viqr.h
│   │   │   ├── citrus_zw.c
│   │   │   └── citrus_zw.h
│   │   ├── compat
│   │   │   ├── arch
│   │   │   │   ├── alpha
│   │   │   │   │   ├── gen
│   │   │   │   │   │   ├── compat__setjmp.S
│   │   │   │   │   │   ├── compat_setjmp.S
│   │   │   │   │   │   ├── compat_sigsetjmp.S
│   │   │   │   │   │   └── Makefile.inc
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat_msgctl.S
│   │   │   │   │   ├── compat_Ovfork.S
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   ├── compat_shmctl.S
│   │   │   │   │   ├── compat_sigaction.S
│   │   │   │   │   ├── compat_sigpending.S
│   │   │   │   │   ├── compat_sigprocmask.S
│   │   │   │   │   ├── compat___sigreturn14.S
│   │   │   │   │   ├── compat_sigreturn.S
│   │   │   │   │   ├── compat_sigsuspend.S
│   │   │   │   │   ├── compat___sigtramp1.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── arm
│   │   │   │   │   ├── gen
│   │   │   │   │   │   ├── compat_setjmp.S
│   │   │   │   │   │   ├── compat_sigsetjmp.S
│   │   │   │   │   │   └── Makefile.inc
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat_msgctl.S
│   │   │   │   │   ├── compat_Ovfork.S
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   ├── compat_shmctl.S
│   │   │   │   │   ├── compat_sigaction.S
│   │   │   │   │   ├── compat_sigpending.S
│   │   │   │   │   ├── compat_sigprocmask.S
│   │   │   │   │   ├── compat___sigreturn14.S
│   │   │   │   │   ├── compat_sigreturn.S
│   │   │   │   │   ├── compat_sigsuspend.S
│   │   │   │   │   ├── compat___sigtramp1.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── hppa
│   │   │   │   │   ├── gen
│   │   │   │   │   │   └── Makefile.inc
│   │   │   │   │   ├── locale
│   │   │   │   │   │   └── compat_setlocale32.c
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat_msgctl.S
│   │   │   │   │   ├── compat_Ovfork.S
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   ├── compat_shmctl.S
│   │   │   │   │   ├── compat_sigaction.S
│   │   │   │   │   ├── compat_sigpending.S
│   │   │   │   │   ├── compat_sigprocmask.S
│   │   │   │   │   ├── compat___sigreturn14.S
│   │   │   │   │   ├── compat_sigreturn.S
│   │   │   │   │   ├── compat_sigsuspend.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── i386
│   │   │   │   │   ├── gen
│   │   │   │   │   │   ├── compat_setjmp.S
│   │   │   │   │   │   ├── compat_sigsetjmp.S
│   │   │   │   │   │   └── Makefile.inc
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat_msgctl.S
│   │   │   │   │   ├── compat_Ovfork.S
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   ├── compat_shmctl.S
│   │   │   │   │   ├── compat_sigaction.S
│   │   │   │   │   ├── compat_sigpending.S
│   │   │   │   │   ├── compat_sigprocmask.S
│   │   │   │   │   ├── compat___sigreturn14.S
│   │   │   │   │   ├── compat_sigreturn.S
│   │   │   │   │   ├── compat_sigsuspend.S
│   │   │   │   │   ├── compat___sigtramp1.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── ia64
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── m68k
│   │   │   │   │   ├── gen
│   │   │   │   │   │   ├── compat_setjmp.S
│   │   │   │   │   │   ├── compat_sigsetjmp.S
│   │   │   │   │   │   └── Makefile.inc
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat_msgctl.S
│   │   │   │   │   ├── compat_Ovfork.S
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   ├── compat_shmctl.S
│   │   │   │   │   ├── compat_sigaction.S
│   │   │   │   │   ├── compat_sigpending.S
│   │   │   │   │   ├── compat_sigprocmask.S
│   │   │   │   │   ├── compat___sigreturn14.S
│   │   │   │   │   ├── compat_sigreturn.S
│   │   │   │   │   ├── compat_sigsuspend.S
│   │   │   │   │   ├── compat___sigtramp1.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── mips
│   │   │   │   │   ├── gen
│   │   │   │   │   │   ├── compat_setjmp.S
│   │   │   │   │   │   ├── compat_sigsetjmp.S
│   │   │   │   │   │   └── Makefile.inc
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat_msgctl.S
│   │   │   │   │   ├── compat_Ovfork.S
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   ├── compat_shmctl.S
│   │   │   │   │   ├── compat_sigaction.S
│   │   │   │   │   ├── compat_sigpending.S
│   │   │   │   │   ├── compat_sigprocmask.S
│   │   │   │   │   ├── compat___sigreturn14.S
│   │   │   │   │   ├── compat_sigreturn.S
│   │   │   │   │   ├── compat_sigsuspend.S
│   │   │   │   │   ├── compat___sigtramp1.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── powerpc
│   │   │   │   │   ├── gen
│   │   │   │   │   │   ├── compat_setjmp.S
│   │   │   │   │   │   ├── compat_sigsetjmp.S
│   │   │   │   │   │   └── Makefile.inc
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat_msgctl.S
│   │   │   │   │   ├── compat_Ovfork.S
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   ├── compat_shmctl.S
│   │   │   │   │   ├── compat_sigaction13.S
│   │   │   │   │   ├── compat_sigpending13.S
│   │   │   │   │   ├── compat_sigprocmask13.S
│   │   │   │   │   ├── compat_sigreturn13.S
│   │   │   │   │   ├── compat___sigreturn14.S
│   │   │   │   │   ├── compat_sigsuspend13.S
│   │   │   │   │   ├── compat___sigtramp1.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── powerpc64
│   │   │   │   │   ├── gen
│   │   │   │   │   │   └── Makefile.inc
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat_msgctl.S
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   ├── compat_shmctl.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── sh3
│   │   │   │   │   ├── gen
│   │   │   │   │   │   ├── compat_setjmp.S
│   │   │   │   │   │   ├── compat_sigsetjmp.S
│   │   │   │   │   │   └── Makefile.inc
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat_msgctl.S
│   │   │   │   │   ├── compat_Ovfork.S
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   ├── compat_shmctl.S
│   │   │   │   │   ├── compat_sigaction.S
│   │   │   │   │   ├── compat_sigpending.S
│   │   │   │   │   ├── compat_sigprocmask.S
│   │   │   │   │   ├── compat___sigreturn14.S
│   │   │   │   │   ├── compat_sigreturn.S
│   │   │   │   │   ├── compat_sigsuspend.S
│   │   │   │   │   ├── compat___sigtramp1.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── sparc
│   │   │   │   │   ├── gen
│   │   │   │   │   │   ├── compat_setjmp.S
│   │   │   │   │   │   ├── compat_sigsetjmp.S
│   │   │   │   │   │   └── Makefile.inc
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat_msgctl.S
│   │   │   │   │   ├── compat_Ovfork.S
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   ├── compat_shmctl.S
│   │   │   │   │   ├── compat_sigaction.S
│   │   │   │   │   ├── compat_sigpending.S
│   │   │   │   │   ├── compat_sigprocmask.S
│   │   │   │   │   ├── compat___sigreturn14.S
│   │   │   │   │   ├── compat_sigreturn.S
│   │   │   │   │   ├── compat_sigsuspend.S
│   │   │   │   │   ├── compat___sigtramp1.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── sparc64
│   │   │   │   │   ├── gen
│   │   │   │   │   │   ├── compat_setjmp.S
│   │   │   │   │   │   ├── compat_sigsetjmp.S
│   │   │   │   │   │   └── Makefile.inc
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat_msgctl.S
│   │   │   │   │   ├── compat_Ovfork.S
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   ├── compat_shmctl.S
│   │   │   │   │   ├── compat_sigaction.S
│   │   │   │   │   ├── compat_sigpending.S
│   │   │   │   │   ├── compat_sigprocmask.S
│   │   │   │   │   ├── compat___sigreturn14.S
│   │   │   │   │   ├── compat_sigreturn.S
│   │   │   │   │   ├── compat_sigsuspend.S
│   │   │   │   │   ├── compat___sigtramp1.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── vax
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   └── sys
│   │   │   │   │   ├── compat_msgctl.S
│   │   │   │   │   ├── compat_Ovfork.S
│   │   │   │   │   ├── compat___semctl.S
│   │   │   │   │   ├── compat_shmctl.S
│   │   │   │   │   ├── compat_sigaction13.S
│   │   │   │   │   ├── compat_sigpending13.S
│   │   │   │   │   ├── compat_sigprocmask13.S
│   │   │   │   │   ├── compat_sigreturn13.S
│   │   │   │   │   ├── compat___sigreturn14.S
│   │   │   │   │   ├── compat_sigsuspend13.S
│   │   │   │   │   ├── compat___sigtramp2.S
│   │   │   │   │   └── Makefile.inc
│   │   │   │   └── x86_64
│   │   │   │   ├── gen
│   │   │   │   │   └── Makefile.inc
│   │   │   │   ├── Makefile.inc
│   │   │   │   └── sys
│   │   │   │   ├── compat_msgctl.S
│   │   │   │   ├── compat_Ovfork.S
│   │   │   │   ├── compat___semctl.S
│   │   │   │   ├── compat_shmctl.S
│   │   │   │   ├── compat_sigaction.S
│   │   │   │   ├── compat_sigpending.S
│   │   │   │   ├── compat_sigprocmask.S
│   │   │   │   ├── compat___sigreturn14.S
│   │   │   │   ├── compat_sigreturn.S
│   │   │   │   ├── compat_sigsuspend.S
│   │   │   │   └── Makefile.inc
│   │   │   ├── db
│   │   │   │   ├── hash
│   │   │   │   │   ├── compat_ndbmdatum.c
│   │   │   │   │   └── Makefile.inc
│   │   │   │   └── Makefile.inc
│   │   │   ├── gen
│   │   │   │   ├── compat_alphasort.c
│   │   │   │   ├── compat_devname.c
│   │   │   │   ├── compat_errlist.c
│   │   │   │   ├── compat_frexp_ieee754.c
│   │   │   │   ├── compat___fts13.c
│   │   │   │   ├── compat___fts30.c
│   │   │   │   ├── compat___fts31.c
│   │   │   │   ├── compat___fts32.c
│   │   │   │   ├── compat___fts50.c
│   │   │   │   ├── compat_fts.c
│   │   │   │   ├── compat_getmntinfo.c
│   │   │   │   ├── compat_getpwent.c
│   │   │   │   ├── compat___glob13.c
│   │   │   │   ├── compat_glob.c
│   │   │   │   ├── compat_lastlogx.c
│   │   │   │   ├── compat_ldexp_ieee754.c
│   │   │   │   ├── compat_modf_ieee754.c
│   │   │   │   ├── compat_opendir.c
│   │   │   │   ├── compat_readdir.c
│   │   │   │   ├── compat__readdir_unlocked30.c
│   │   │   │   ├── compat_scandir.c
│   │   │   │   ├── compat_siglist.c
│   │   │   │   ├── compat_signame.c
│   │   │   │   ├── compat_sigsetops.c
│   │   │   │   ├── compat__sys_errlist.c
│   │   │   │   ├── compat__sys_nerr.c
│   │   │   │   ├── compat__sys_siglist.c
│   │   │   │   ├── compat_time.c
│   │   │   │   ├── compat_times.c
│   │   │   │   ├── compat_timezone.c
│   │   │   │   ├── compat_unvis.c
│   │   │   │   ├── compat_utime.c
│   │   │   │   ├── compat_utmp.c
│   │   │   │   ├── compat_utmpx.c
│   │   │   │   └── Makefile.inc
│   │   │   ├── include
│   │   │   │   ├── aio.h
│   │   │   │   ├── dirent.h
│   │   │   │   ├── fstypes.h
│   │   │   │   ├── fts.h
│   │   │   │   ├── glob.h
│   │   │   │   ├── locale.h
│   │   │   │   ├── lwp.h
│   │   │   │   ├── mqueue.h
│   │   │   │   ├── ndbm.h
│   │   │   │   ├── ns.h
│   │   │   │   ├── pwd.h
│   │   │   │   ├── rpc
│   │   │   │   │   ├── pmap_clnt.h
│   │   │   │   │   └── rpcb_clnt.h
│   │   │   │   ├── setjmp.h
│   │   │   │   ├── signal.h
│   │   │   │   ├── stdlib.h
│   │   │   │   ├── time.h
│   │   │   │   ├── unistd.h
│   │   │   │   ├── utime.h
│   │   │   │   ├── utmp.h
│   │   │   │   ├── utmpx.h
│   │   │   │   └── vis.h
│   │   │   ├── locale
│   │   │   │   ├── compat_setlocale1.c
│   │   │   │   ├── compat_setlocale32.c
│   │   │   │   └── Makefile.inc
│   │   │   ├── Makefile
│   │   │   ├── Makefile.inc
│   │   │   ├── net
│   │   │   │   ├── compat_ns_addr.c
│   │   │   │   ├── compat_ns_ntoa.c
│   │   │   │   └── Makefile.inc
│   │   │   ├── rpc
│   │   │   │   ├── compat_pmap_rmtcall.c
│   │   │   │   ├── compat_rpcb.c
│   │   │   │   └── Makefile.inc
│   │   │   ├── shlib_version
│   │   │   ├── stdlib
│   │   │   │   ├── compat_unsetenv.c
│   │   │   │   └── Makefile.inc
│   │   │   ├── sys
│   │   │   │   ├── compat_adjtime.c
│   │   │   │   ├── compat_aio_suspend.c
│   │   │   │   ├── compat_clock.c
│   │   │   │   ├── compat_fhopen.c
│   │   │   │   ├── compat___fhstat30.c
│   │   │   │   ├── compat_fhstatvfs1.c
│   │   │   │   ├── compat_fhstatvfs.c
│   │   │   │   ├── compat_getdents.c
│   │   │   │   ├── compat_getdirentries.c
│   │   │   │   ├── compat_getfh.c
│   │   │   │   ├── compat_getrusage.c
│   │   │   │   ├── compat_gettimeofday.c
│   │   │   │   ├── compat_itimer.c
│   │   │   │   ├── compat_kevent.c
│   │   │   │   ├── compat_lfs_segwait.c
│   │   │   │   ├── compat__lwp_park.c
│   │   │   │   ├── compat_mknod.c
│   │   │   │   ├── compat_mount.c
│   │   │   │   ├── compat_mqueue.c
│   │   │   │   ├── compat___msgctl13.c
│   │   │   │   ├── compat_msync.c
│   │   │   │   ├── compat_nanosleep.c
│   │   │   │   ├── compat___ntp_gettime30.c
│   │   │   │   ├── compat_ntp_gettime.c
│   │   │   │   ├── compat_sched.c
│   │   │   │   ├── compat_select.c
│   │   │   │   ├── compat___semctl13.c
│   │   │   │   ├── compat_semctl.c
│   │   │   │   ├── compat_settimeofday.c
│   │   │   │   ├── compat___shmctl13.c
│   │   │   │   ├── compat_sigaltstack.c
│   │   │   │   ├── compat_sigtimedwait.c
│   │   │   │   ├── compat_socket.c
│   │   │   │   ├── compat___stat13.c
│   │   │   │   ├── compat___stat30.c
│   │   │   │   ├── compat_stat.c
│   │   │   │   ├── compat_statfs.c
│   │   │   │   ├── compat_timer.c
│   │   │   │   ├── compat_utimes.c
│   │   │   │   ├── compat_wait4.c
│   │   │   │   ├── getdirentries.3
│   │   │   │   ├── Lint_Ovfork.c
│   │   │   │   └── Makefile.inc
│   │   │   └── time
│   │   │   ├── compat_difftime.c
│   │   │   ├── compat_localtime.c
│   │   │   └── Makefile.inc
│   │   ├── compat-43
│   │   │   ├── creat.3
│   │   │   ├── creat.c
│   │   │   ├── getdtablesize.3
│   │   │   ├── getdtablesize.c
│   │   │   ├── gethostid.3
│   │   │   ├── gethostid.c
│   │   │   ├── getwd.c
│   │   │   ├── killpg.3
│   │   │   ├── killpg.c
│   │   │   ├── Makefile.inc
│   │   │   ├── sethostid.c
│   │   │   ├── setpgrp.c
│   │   │   ├── setrgid.c
│   │   │   ├── setruid.3
│   │   │   ├── setruid.c
│   │   │   ├── sigblock.3
│   │   │   ├── sigcompat.c
│   │   │   ├── sigpause.3
│   │   │   ├── sigsetmask.3
│   │   │   └── sigvec.3
│   │   ├── compat-minix
│   │   │   └── Makefile.inc
│   │   ├── db
│   │   │   ├── btree
│   │   │   │   ├── bt_close.c
│   │   │   │   ├── bt_conv.c
│   │   │   │   ├── bt_debug.c
│   │   │   │   ├── bt_delete.c
│   │   │   │   ├── bt_get.c
│   │   │   │   ├── bt_open.c
│   │   │   │   ├── bt_overflow.c
│   │   │   │   ├── bt_page.c
│   │   │   │   ├── bt_put.c
│   │   │   │   ├── btree.h
│   │   │   │   ├── bt_search.c
│   │   │   │   ├── bt_seq.c
│   │   │   │   ├── bt_split.c
│   │   │   │   ├── bt_utils.c
│   │   │   │   ├── extern.h
│   │   │   │   └── Makefile.inc
│   │   │   ├── changelog
│   │   │   ├── db
│   │   │   │   ├── db.c
│   │   │   │   └── Makefile.inc
│   │   │   ├── db2netbsd
│   │   │   ├── hash
│   │   │   │   ├── extern.h
│   │   │   │   ├── hash_bigkey.c
│   │   │   │   ├── hash_buf.c
│   │   │   │   ├── hash.c
│   │   │   │   ├── hash_func.c
│   │   │   │   ├── hash.h
│   │   │   │   ├── hash_log2.c
│   │   │   │   ├── hash_page.c
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── ndbm.c
│   │   │   │   ├── ndbmdatum.c
│   │   │   │   ├── page.h
│   │   │   │   └── README
│   │   │   ├── Makefile.inc
│   │   │   ├── man
│   │   │   │   ├── btree.3
│   │   │   │   ├── dbm_clearerr.3
│   │   │   │   ├── dbopen.3
│   │   │   │   ├── hash.3
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── mpool.3
│   │   │   │   └── recno.3
│   │   │   ├── mpool
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── mpool.c
│   │   │   │   └── README
│   │   │   ├── README
│   │   │   └── recno
│   │   │   ├── extern.h
│   │   │   ├── Makefile.inc
│   │   │   ├── rec_close.c
│   │   │   ├── rec_delete.c
│   │   │   ├── rec_get.c
│   │   │   ├── recno.h
│   │   │   ├── rec_open.c
│   │   │   ├── rec_put.c
│   │   │   ├── rec_search.c
│   │   │   ├── rec_seq.c
│   │   │   └── rec_utils.c
│   │   ├── dlfcn
│   │   │   ├── dlfcn_elf.c
│   │   │   └── Makefile.inc
│   │   ├── gdtoa
│   │   │   ├── arithchk.c
│   │   │   ├── dmisc.c
│   │   │   ├── dtoa.c
│   │   │   ├── g_ddfmt.c
│   │   │   ├── g_dfmt.c
│   │   │   ├── gdtoa.c
│   │   │   ├── gdtoa.h
│   │   │   ├── gdtoaimp.h
│   │   │   ├── gdtoa_locks.c
│   │   │   ├── gethex.c
│   │   │   ├── g_ffmt.c
│   │   │   ├── g__fmt.c
│   │   │   ├── gmisc.c
│   │   │   ├── g_Qfmt.c
│   │   │   ├── g_xfmt.c
│   │   │   ├── g_xLfmt.c
│   │   │   ├── hd_init.c
│   │   │   ├── hdtoa.c
│   │   │   ├── hexnan.c
│   │   │   ├── ldtoa.c
│   │   │   ├── makefile
│   │   │   ├── Makefile.inc
│   │   │   ├── misc.c
│   │   │   ├── qnan.c
│   │   │   ├── README
│   │   │   ├── smisc.c
│   │   │   ├── strtod.c
│   │   │   ├── strtodg.c
│   │   │   ├── strtodI.c
│   │   │   ├── strtodnrp.c
│   │   │   ├── _strtof.c
│   │   │   ├── strtof.c
│   │   │   ├── strtof_vaxf.c
│   │   │   ├── strtoId.c
│   │   │   ├── strtoIdd.c
│   │   │   ├── strtoIf.c
│   │   │   ├── strtoIg.c
│   │   │   ├── strtoIQ.c
│   │   │   ├── strtoIx.c
│   │   │   ├── strtoIxL.c
│   │   │   ├── _strtold.c
│   │   │   ├── strtold_pQ.c
│   │   │   ├── strtold_px.c
│   │   │   ├── strtold_pxL.c
│   │   │   ├── strtold_subr.c
│   │   │   ├── strtopd.c
│   │   │   ├── strtopdd.c
│   │   │   ├── strtopf.c
│   │   │   ├── strtopQ.c
│   │   │   ├── strtopx.c
│   │   │   ├── strtopxL.c
│   │   │   ├── strtord.c
│   │   │   ├── strtordd.c
│   │   │   ├── strtorf.c
│   │   │   ├── strtorQ.c
│   │   │   ├── strtorx.c
│   │   │   ├── strtorxL.c
│   │   │   ├── sum.c
│   │   │   ├── ulp.c
│   │   │   └── xsum0.out
│   │   ├── gen
│   │   │   ├── alarm.3
│   │   │   ├── alarm.c
│   │   │   ├── alphasort.c
│   │   │   ├── arc4random.3
│   │   │   ├── arc4random.c
│   │   │   ├── assert.c
│   │   │   ├── basename.3
│   │   │   ├── basename.c
│   │   │   ├── bswap.3
│   │   │   ├── cgetcap.3
│   │   │   ├── clock.3
│   │   │   ├── clock.c
│   │   │   ├── closedir.c
│   │   │   ├── closefrom.3
│   │   │   ├── closefrom.c
│   │   │   ├── confstr.3
│   │   │   ├── confstr.c
│   │   │   ├── cpuset.3
│   │   │   ├── ctermid.3
│   │   │   ├── ctermid.c
│   │   │   ├── ctype.3
│   │   │   ├── ctype_.c
│   │   │   ├── daemon.3
│   │   │   ├── daemon.c
│   │   │   ├── dehumanize_number.c
│   │   │   ├── devname.3
│   │   │   ├── devname.c
│   │   │   ├── directory.3
│   │   │   ├── dirent_private.h
│   │   │   ├── dirname.3
│   │   │   ├── dirname.c
│   │   │   ├── disklabel.c
│   │   │   ├── endutxent.3
│   │   │   ├── err.3
│   │   │   ├── _err.c
│   │   │   ├── err.c
│   │   │   ├── errlist.awk
│   │   │   ├── _errno.c
│   │   │   ├── errno.c
│   │   │   ├── _errx.c
│   │   │   ├── errx.c
│   │   │   ├── exec.3
│   │   │   ├── execl.c
│   │   │   ├── execle.c
│   │   │   ├── execlp.c
│   │   │   ├── execv.c
│   │   │   ├── execvp.c
│   │   │   ├── extattr.3
│   │   │   ├── extattr.c
│   │   │   ├── fabs_ieee754.c
│   │   │   ├── fmtcheck.3
│   │   │   ├── fmtcheck.c
│   │   │   ├── fmtmsg.3
│   │   │   ├── fmtmsg.c
│   │   │   ├── fnmatch.3
│   │   │   ├── fnmatch.c
│   │   │   ├── fpclassify.3
│   │   │   ├── fpclassifyd_ieee754.c
│   │   │   ├── fpclassifyf_ieee754.c
│   │   │   ├── fpclassifyl_ieee754.c
│   │   │   ├── fpgetmask.3
│   │   │   ├── fstab.c
│   │   │   ├── ftok.3
│   │   │   ├── ftok.c
│   │   │   ├── fts.3
│   │   │   ├── fts.c
│   │   │   ├── ftw.3
│   │   │   ├── ftw.c
│   │   │   ├── getbsize.3
│   │   │   ├── getbsize.c
│   │   │   ├── getcap.c
│   │   │   ├── getcwd.3
│   │   │   ├── getcwd.c
│   │   │   ├── getdevmajor.3
│   │   │   ├── getdevmajor.c
│   │   │   ├── getdiskbyname.3
│   │   │   ├── getdomainname.3
│   │   │   ├── getdomainname.c
│   │   │   ├── getfsent.3
│   │   │   ├── getgrent.3
│   │   │   ├── getgrent.c
│   │   │   ├── getgrouplist.3
│   │   │   ├── getgrouplist.c
│   │   │   ├── getgroupmembership.c
│   │   │   ├── gethostname.3
│   │   │   ├── gethostname.c
│   │   │   ├── getlastlogx.3
│   │   │   ├── getloadavg.3
│   │   │   ├── getloadavg.c
│   │   │   ├── getlogin.c
│   │   │   ├── getmntinfo.3
│   │   │   ├── getmntinfo.c
│   │   │   ├── getnetgrent.3
│   │   │   ├── getnetgrent.c
│   │   │   ├── getpagesize.3
│   │   │   ├── getpagesize.c
│   │   │   ├── getpass.3
│   │   │   ├── getpass.c
│   │   │   ├── getprogname.3
│   │   │   ├── getprogname.c
│   │   │   ├── getpwent.3
│   │   │   ├── getpwent.c
│   │   │   ├── getttyent.3
│   │   │   ├── getttyent.c
│   │   │   ├── getusershell.3
│   │   │   ├── getusershell.c
│   │   │   ├── glob.3
│   │   │   ├── glob.c
│   │   │   ├── gr_private.h
│   │   │   ├── humanize_number.3
│   │   │   ├── humanize_number.c
│   │   │   ├── infinityf_ieee754.c
│   │   │   ├── infinity_ieee754.c
│   │   │   ├── infinityl_dbl_ieee754.c
│   │   │   ├── infinityl_ieee754.c
│   │   │   ├── initdir.c
│   │   │   ├── initgroups.3
│   │   │   ├── initgroups.c
│   │   │   ├── isalnum.3
│   │   │   ├── isalpha.3
│   │   │   ├── isascii.3
│   │   │   ├── isascii.c
│   │   │   ├── isatty.c
│   │   │   ├── isblank.3
│   │   │   ├── iscntrl.3
│   │   │   ├── isctype.c
│   │   │   ├── isdigit.3
│   │   │   ├── isfinite.3
│   │   │   ├── isfinited_ieee754.c
│   │   │   ├── isfinitef_ieee754.c
│   │   │   ├── isfinitel_ieee754.c
│   │   │   ├── isgraph.3
│   │   │   ├── isgreater.3
│   │   │   ├── isinf.3
│   │   │   ├── isinfd_ieee754.c
│   │   │   ├── isinff_ieee754.c
│   │   │   ├── isinfl_ieee754.c
│   │   │   ├── islower.3
│   │   │   ├── isnan.3
│   │   │   ├── isnand_ieee754.c
│   │   │   ├── isnanf_ieee754.c
│   │   │   ├── isnanl_ieee754.c
│   │   │   ├── isnormal.3
│   │   │   ├── isprint.3
│   │   │   ├── ispunct.3
│   │   │   ├── isspace.3
│   │   │   ├── isupper.3
│   │   │   ├── isxdigit.3
│   │   │   ├── ldexp_ieee754.c
│   │   │   ├── Lint_alloca.c
│   │   │   ├── Lint_bswap16.c
│   │   │   ├── Lint_bswap32.c
│   │   │   ├── Lint_bswap64.c
│   │   │   ├── Lint_fabs.c
│   │   │   ├── Lint_flt_rounds.c
│   │   │   ├── Lint_fpgetmask.c
│   │   │   ├── Lint_fpgetround.c
│   │   │   ├── Lint_fpgetsticky.c
│   │   │   ├── Lint_fpsetmask.c
│   │   │   ├── Lint_fpsetround.c
│   │   │   ├── Lint_fpsetsticky.c
│   │   │   ├── Lint_frexp.c
│   │   │   ├── Lint_ldexp.c
│   │   │   ├── Lint_modf.c
│   │   │   ├── Lint_resumecontext.c
│   │   │   ├── Lint___setjmp14.c
│   │   │   ├── Lint__setjmp.c
│   │   │   ├── Lint___sigsetjmp14.c
│   │   │   ├── Lint_swapcontext.c
│   │   │   ├── lockf.3
│   │   │   ├── lockf.c
│   │   │   ├── _lwp_makecontext.3
│   │   │   ├── makecontext.3
│   │   │   ├── Makefile.inc
│   │   │   ├── minix
│   │   │   │   ├── clock.c
│   │   │   │   ├── getdomainname.c
│   │   │   │   ├── gethostname.c
│   │   │   │   ├── getloadavg.c
│   │   │   │   ├── getpagesize.c
│   │   │   │   ├── getpass.c
│   │   │   │   ├── getprogname.c
│   │   │   │   ├── popen.c
│   │   │   │   ├── raise.c
│   │   │   │   ├── siglist.c
│   │   │   │   ├── sysconf.c
│   │   │   │   ├── times.c
│   │   │   │   ├── uname.c
│   │   │   │   ├── utime.c
│   │   │   │   ├── wait.c
│   │   │   │   └── waitpid.c
│   │   │   ├── modf_ieee754.c
│   │   │   ├── nftw.c
│   │   │   ├── nice.3
│   │   │   ├── nice.c
│   │   │   ├── nlist.3
│   │   │   ├── nlist_aout.c
│   │   │   ├── nlist.c
│   │   │   ├── nlist_coff.c
│   │   │   ├── nlist_ecoff.c
│   │   │   ├── nlist_elf32.c
│   │   │   ├── nlist_elf64.c
│   │   │   ├── nlist_private.h
│   │   │   ├── opendir.c
│   │   │   ├── pause.3
│   │   │   ├── pause.c
│   │   │   ├── popen.3
│   │   │   ├── popen.c
│   │   │   ├── psignal.3
│   │   │   ├── psignal.c
│   │   │   ├── pthread_atfork.3
│   │   │   ├── pthread_atfork.c
│   │   │   ├── pwcache.3
│   │   │   ├── pwcache.c
│   │   │   ├── pwcache.h
│   │   │   ├── pw_private.h
│   │   │   ├── pw_scan.c
│   │   │   ├── raise.3
│   │   │   ├── raise.c
│   │   │   ├── randomid.3
│   │   │   ├── randomid.c
│   │   │   ├── readdir.c
│   │   │   ├── realpath.3
│   │   │   ├── rewinddir.c
│   │   │   ├── scandir.3
│   │   │   ├── scandir.c
│   │   │   ├── seekdir.c
│   │   │   ├── setdomainname.c
│   │   │   ├── sethostname.c
│   │   │   ├── setjmp.3
│   │   │   ├── setjmperr.c
│   │   │   ├── setmode.3
│   │   │   ├── setmode.c
│   │   │   ├── setproctitle.3
│   │   │   ├── setproctitle.c
│   │   │   ├── setprogname.c
│   │   │   ├── shquote.3
│   │   │   ├── shquote.c
│   │   │   ├── shquotev.c
│   │   │   ├── sighold.3
│   │   │   ├── sighold.c
│   │   │   ├── sigignore.3
│   │   │   ├── sigignore.c
│   │   │   ├── siginterrupt.3
│   │   │   ├── siginterrupt.c
│   │   │   ├── siglist.c
│   │   │   ├── signal.3
│   │   │   ├── signal.c
│   │   │   ├── signame.c
│   │   │   ├── signbit.3
│   │   │   ├── signbitd_ieee754.c
│   │   │   ├── signbitf_ieee754.c
│   │   │   ├── signbitl_ieee754.c
│   │   │   ├── sigrelse.3
│   │   │   ├── sigrelse.c
│   │   │   ├── sigset.3
│   │   │   ├── sigset.c
│   │   │   ├── sigsetops.3
│   │   │   ├── sigsetops.c
│   │   │   ├── sleep.3
│   │   │   ├── sleep.c
│   │   │   ├── stringlist.3
│   │   │   ├── stringlist.c
│   │   │   ├── sysconf.3
│   │   │   ├── _sysconf.c
│   │   │   ├── sysconf.c
│   │   │   ├── sysctl.3
│   │   │   ├── sysctlbyname.c
│   │   │   ├── sysctl.c
│   │   │   ├── sysctlgetmibinfo.c
│   │   │   ├── sysctlnametomib.c
│   │   │   ├── syslog.3
│   │   │   ├── syslog.c
│   │   │   ├── telldir.c
│   │   │   ├── time.3
│   │   │   ├── time.c
│   │   │   ├── times.3
│   │   │   ├── times.c
│   │   │   ├── timezone.3
│   │   │   ├── toascii.3
│   │   │   ├── toascii.c
│   │   │   ├── tolower.3
│   │   │   ├── tolower_.c
│   │   │   ├── toupper.3
│   │   │   ├── toupper_.c
│   │   │   ├── ttyname.3
│   │   │   ├── ttyname.c
│   │   │   ├── ttyslot.c
│   │   │   ├── ualarm.3
│   │   │   ├── ualarm.c
│   │   │   ├── ulimit.3
│   │   │   ├── ulimit.c
│   │   │   ├── uname.3
│   │   │   ├── uname.c
│   │   │   ├── unvis.3
│   │   │   ├── unvis.c
│   │   │   ├── usleep.3
│   │   │   ├── usleep.c
│   │   │   ├── utime.3
│   │   │   ├── utime.c
│   │   │   ├── utmp.c
│   │   │   ├── utmpx.c
│   │   │   ├── valloc.3
│   │   │   ├── valloc.c
│   │   │   ├── _verr.c
│   │   │   ├── verr.c
│   │   │   ├── _verrx.c
│   │   │   ├── verrx.c
│   │   │   ├── vis.3
│   │   │   ├── vis.c
│   │   │   ├── _vwarn.c
│   │   │   ├── vwarn.c
│   │   │   ├── _vwarnx.c
│   │   │   ├── vwarnx.c
│   │   │   ├── wait3.c
│   │   │   ├── wait.c
│   │   │   ├── waitpid.c
│   │   │   ├── _warn.c
│   │   │   ├── warn.c
│   │   │   ├── _warnx.c
│   │   │   ├── warnx.c
│   │   │   ├── wordexp.3
│   │   │   └── wordexp.c
│   │   ├── gmon
│   │   │   ├── gmon.c
│   │   │   ├── Makefile.inc
│   │   │   └── moncontrol.3
│   │   ├── hash
│   │   │   ├── hashhl.c
│   │   │   ├── Makefile.inc
│   │   │   ├── md2
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── md2.3
│   │   │   │   ├── md2.c
│   │   │   │   └── md2hl.c
│   │   │   ├── rmd160
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── rmd160.3
│   │   │   │   └── rmd160hl.c
│   │   │   ├── sha1
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── sha1.3
│   │   │   │   └── sha1hl.c
│   │   │   └── sha2
│   │   │   ├── Makefile.inc
│   │   │   ├── sha224hl.c
│   │   │   ├── sha2.3
│   │   │   ├── sha256hl.c
│   │   │   ├── sha384hl.c
│   │   │   └── sha512hl.c
│   │   ├── iconv
│   │   │   ├── iconv.3
│   │   │   ├── iconv.c
│   │   │   └── Makefile.inc
│   │   ├── include
│   │   │   ├── env.h
│   │   │   ├── extern.h
│   │   │   ├── fd_setsize.h
│   │   │   ├── isc
│   │   │   │   ├── assertions.h
│   │   │   │   ├── dst.h
│   │   │   │   ├── eventlib.h
│   │   │   │   ├── heap.h
│   │   │   │   ├── list.h
│   │   │   │   └── memcluster.h
│   │   │   ├── namespace.h
│   │   │   ├── pathnames.h
│   │   │   ├── port_after.h
│   │   │   ├── port_before.h
│   │   │   ├── reentrant.h
│   │   │   └── resolv_mt.h
│   │   ├── inet
│   │   │   ├── inet.3
│   │   │   ├── inet6_option_space.3
│   │   │   ├── inet6_rthdr_space.3
│   │   │   ├── _inet_aton.c
│   │   │   ├── inet_cidr_ntop.c
│   │   │   ├── inet_cidr_pton.c
│   │   │   ├── inet_lnaof.c
│   │   │   ├── inet_makeaddr.c
│   │   │   ├── inet_net.3
│   │   │   ├── inet_neta.c
│   │   │   ├── inet_net_ntop.c
│   │   │   ├── inet_netof.c
│   │   │   ├── inet_net_pton.c
│   │   │   ├── inet_network.c
│   │   │   ├── inet_ntoa.c
│   │   │   ├── inet_ntop.c
│   │   │   ├── _inet_pton.c
│   │   │   ├── inet_pton.c
│   │   │   ├── Makefile.inc
│   │   │   └── nsap_addr.c
│   │   ├── isc
│   │   │   ├── assertions.c
│   │   │   ├── eventlib_p.h
│   │   │   ├── ev_streams.c
│   │   │   ├── ev_timers.c
│   │   │   └── Makefile.inc
│   │   ├── libcincludes.mk
│   │   ├── locale
│   │   │   ├── aliasname.c
│   │   │   ├── aliasname_local.h
│   │   │   ├── bsdctype.c
│   │   │   ├── bsdctype_file.h
│   │   │   ├── bsdctype_local.h
│   │   │   ├── btowc.3
│   │   │   ├── ctype_local.h
│   │   │   ├── current_locale.c
│   │   │   ├── _def_messages.c
│   │   │   ├── _def_monetary.c
│   │   │   ├── _def_numeric.c
│   │   │   ├── _def_time.c
│   │   │   ├── dummy_lc_collate.c
│   │   │   ├── dummy_lc_template.h
│   │   │   ├── fix_grouping.c
│   │   │   ├── fix_grouping.h
│   │   │   ├── generic_lc_all.c
│   │   │   ├── generic_lc_template_decl.h
│   │   │   ├── generic_lc_template.h
│   │   │   ├── global_locale.c
│   │   │   ├── iswalnum.3
│   │   │   ├── iswctype.3
│   │   │   ├── iswctype_mb.c
│   │   │   ├── iswctype_sb.c
│   │   │   ├── localeconv.c
│   │   │   ├── localeio.c
│   │   │   ├── localeio.h
│   │   │   ├── localeio_lc_ctype.c
│   │   │   ├── localeio_lc_messages.c
│   │   │   ├── localeio_lc_monetary.c
│   │   │   ├── localeio_lc_numeric.c
│   │   │   ├── localeio_lc_time.c
│   │   │   ├── Makefile.inc
│   │   │   ├── __mb_cur_max.c
│   │   │   ├── mblen.3
│   │   │   ├── mbrlen.3
│   │   │   ├── mbrtowc.3
│   │   │   ├── mbsinit.3
│   │   │   ├── mbsrtowcs.3
│   │   │   ├── mbstowcs.3
│   │   │   ├── mbtowc.3
│   │   │   ├── multibyte_amd1.c
│   │   │   ├── multibyte_c90.c
│   │   │   ├── multibyte.h
│   │   │   ├── multibyte_sb.c
│   │   │   ├── nb_lc_messages_misc.h
│   │   │   ├── nb_lc_monetary_misc.h
│   │   │   ├── nb_lc_numeric_misc.h
│   │   │   ├── nb_lc_template_decl.h
│   │   │   ├── nb_lc_template.h
│   │   │   ├── nb_lc_time_misc.h
│   │   │   ├── nl_langinfo.3
│   │   │   ├── nl_langinfo.c
│   │   │   ├── rune.c
│   │   │   ├── runetable.c
│   │   │   ├── runetype_file.h
│   │   │   ├── runetype_local.h
│   │   │   ├── runetype_misc.h
│   │   │   ├── setlocale.3
│   │   │   ├── setlocale.c
│   │   │   ├── setlocale_local.h
│   │   │   ├── towctrans.3
│   │   │   ├── towlower.3
│   │   │   ├── wcrtomb.3
│   │   │   ├── wcscoll.3
│   │   │   ├── wcscoll.c
│   │   │   ├── wcsftime.3
│   │   │   ├── wcsftime.c
│   │   │   ├── wcsrtombs.3
│   │   │   ├── wcstod.3
│   │   │   ├── wcstod.c
│   │   │   ├── _wcstod.h
│   │   │   ├── wcstof.c
│   │   │   ├── wcstoimax.c
│   │   │   ├── wcstol.3
│   │   │   ├── wcstol.c
│   │   │   ├── wcstold.c
│   │   │   ├── _wcstol.h
│   │   │   ├── wcstoll.c
│   │   │   ├── wcstombs.3
│   │   │   ├── wcstoul.c
│   │   │   ├── _wcstoul.h
│   │   │   ├── wcstoull.c
│   │   │   ├── wcstoumax.c
│   │   │   ├── wcsxfrm.3
│   │   │   ├── wcsxfrm.c
│   │   │   ├── wctob.3
│   │   │   ├── __wctoint.h
│   │   │   ├── wctomb.3
│   │   │   ├── wctrans.3
│   │   │   ├── _wctrans.c
│   │   │   ├── _wctrans_local.h
│   │   │   ├── wctype.3
│   │   │   ├── _wctype.c
│   │   │   ├── _wctype_local.h
│   │   │   └── wcwidth.3
│   │   ├── Makefile
│   │   ├── Makefile.inc
│   │   ├── md
│   │   │   ├── Makefile.inc
│   │   │   ├── md2hl.c
│   │   │   ├── md4.copyright
│   │   │   ├── md4hl.c
│   │   │   ├── md5.copyright
│   │   │   ├── md5hl.c
│   │   │   ├── mdX.3
│   │   │   └── mdXhl.c
│   │   ├── minix
│   │   │   ├── calloc.c
│   │   │   ├── malloc.c
│   │   │   ├── malloc-debug.c
│   │   │   └── malloc-debug.h
│   │   ├── minix-config.inc
│   │   ├── misc
│   │   │   ├── initfini.c
│   │   │   ├── Makefile.inc
│   │   │   └── stack_protector.c
│   │   ├── nameser
│   │   │   ├── Makefile.inc
│   │   │   ├── ns_name.c
│   │   │   ├── ns_netint.c
│   │   │   ├── ns_parse.c
│   │   │   ├── ns_print.c
│   │   │   ├── ns_samedomain.c
│   │   │   └── ns_ttl.c
│   │   ├── net
│   │   │   ├── base64.c
│   │   │   ├── byteorder.3
│   │   │   ├── ethers.3
│   │   │   ├── ethers.c
│   │   │   ├── gai_strerror.3
│   │   │   ├── getaddrinfo.3
│   │   │   ├── getaddrinfo.c
│   │   │   ├── gethnamaddr.c
│   │   │   ├── gethostbyname.3
│   │   │   ├── getifaddrs.3
│   │   │   ├── getifaddrs.c
│   │   │   ├── getnameinfo.3
│   │   │   ├── getnameinfo.c
│   │   │   ├── getnetent.3
│   │   │   ├── getnetent.c
│   │   │   ├── getnetnamadr.c
│   │   │   ├── getpeereid.3
│   │   │   ├── getpeereid.c
│   │   │   ├── getprotobyname.c
│   │   │   ├── getprotobyname_r.c
│   │   │   ├── getprotobynumber.c
│   │   │   ├── getprotobynumber_r.c
│   │   │   ├── getprotoent.3
│   │   │   ├── getprotoent.c
│   │   │   ├── getprotoent_r.c
│   │   │   ├── getservbyname.c
│   │   │   ├── getservbyname_r.c
│   │   │   ├── getservbyport.c
│   │   │   ├── getservbyport_r.c
│   │   │   ├── getservent.3
│   │   │   ├── getservent.c
│   │   │   ├── getservent_r.c
│   │   │   ├── hesiod.3
│   │   │   ├── hesiod.c
│   │   │   ├── if_indextoname.3
│   │   │   ├── if_indextoname.c
│   │   │   ├── if_nameindex.c
│   │   │   ├── if_nametoindex.c
│   │   │   ├── inet6_opt_init.3
│   │   │   ├── inet6_option_space.3
│   │   │   ├── inet6_rthdr_space.3
│   │   │   ├── inet6_rth_space.3
│   │   │   ├── ip6opt.c
│   │   │   ├── iso_addr.3
│   │   │   ├── iso_addr.c
│   │   │   ├── linkaddr.3
│   │   │   ├── linkaddr.c
│   │   │   ├── Lint_htonl.c
│   │   │   ├── Lint_htons.c
│   │   │   ├── Lint_ntohl.c
│   │   │   ├── Lint_ntohs.c
│   │   │   ├── Makefile.inc
│   │   │   ├── minix
│   │   │   │   ├── getifaddrs.c
│   │   │   │   └── getpeereid.c
│   │   │   ├── nsdispatch.3
│   │   │   ├── nsdispatch.c
│   │   │   ├── nslexer.l
│   │   │   ├── nsparser.y
│   │   │   ├── protoent.h
│   │   │   ├── rcmd.3
│   │   │   ├── rcmd.c
│   │   │   ├── recv.c
│   │   │   ├── resolver.3
│   │   │   ├── rthdr.c
│   │   │   ├── send.c
│   │   │   ├── servent.h
│   │   │   ├── sethostent.c
│   │   │   ├── sockatmark.3
│   │   │   ├── sockatmark.c
│   │   │   └── vars6.c
│   │   ├── nls
│   │   │   ├── ca.msg
│   │   │   ├── catclose.3
│   │   │   ├── _catclose.c
│   │   │   ├── catclose.c
│   │   │   ├── catgets.3
│   │   │   ├── _catgets.c
│   │   │   ├── catgets.c
│   │   │   ├── catopen.3
│   │   │   ├── _catopen.c
│   │   │   ├── catopen.c
│   │   │   ├── C.msg
│   │   │   ├── cs.msg
│   │   │   ├── de.msg
│   │   │   ├── es.msg
│   │   │   ├── fi.msg
│   │   │   ├── fr.msg
│   │   │   ├── Makefile.inc
│   │   │   ├── nl.msg
│   │   │   ├── no.msg
│   │   │   ├── Pig.msg
│   │   │   ├── pl.msg
│   │   │   ├── sk.msg
│   │   │   └── sv.msg
│   │   ├── pkgconfig
│   │   │   ├── libc.pc
│   │   │   └── Makefile
│   │   ├── quad
│   │   │   ├── fixdfdi.c
│   │   │   ├── fixsfdi.c
│   │   │   ├── fixunsdfdi.c
│   │   │   ├── fixunssfdi.c
│   │   │   ├── floatdidf.c
│   │   │   ├── floatdisf.c
│   │   │   ├── floatunsdidf.c
│   │   │   ├── Makefile.inc
│   │   │   └── TESTS
│   │   │   ├── divrem.c
│   │   │   ├── Makefile
│   │   │   └── mul.c
│   │   ├── regex
│   │   │   ├── cclass.h
│   │   │   ├── cname.h
│   │   │   ├── COPYRIGHT
│   │   │   ├── engine.c
│   │   │   ├── Makefile.inc
│   │   │   ├── re_format.7
│   │   │   ├── regcomp.c
│   │   │   ├── regerror.c
│   │   │   ├── regex2.h
│   │   │   ├── regex.3
│   │   │   ├── regexec.c
│   │   │   ├── regfree.c
│   │   │   ├── utils.h
│   │   │   └── WHATSNEW
│   │   ├── resolv
│   │   │   ├── __dn_comp.c
│   │   │   ├── h_errno.c
│   │   │   ├── herror.c
│   │   │   ├── Makefile.inc
│   │   │   ├── mtctxres.c
│   │   │   ├── __res_close.c
│   │   │   ├── res_compat.c
│   │   │   ├── res_comp.c
│   │   │   ├── res_data.c
│   │   │   ├── res_debug.c
│   │   │   ├── res_debug.h
│   │   │   ├── res_init.c
│   │   │   ├── res_mkquery.c
│   │   │   ├── res_private.h
│   │   │   ├── res_query.c
│   │   │   ├── __res_send.c
│   │   │   ├── res_send.c
│   │   │   └── res_state.c
│   │   ├── rpc
│   │   │   ├── auth_none.c
│   │   │   ├── auth_unix.c
│   │   │   ├── authunix_prot.c
│   │   │   ├── bindresvport.3
│   │   │   ├── bindresvport.c
│   │   │   ├── clnt_bcast.c
│   │   │   ├── clnt_dg.c
│   │   │   ├── clnt_generic.c
│   │   │   ├── clnt_perror.c
│   │   │   ├── clnt_raw.c
│   │   │   ├── clnt_simple.c
│   │   │   ├── clnt_vc.c
│   │   │   ├── DISCLAIMER
│   │   │   ├── getnetconfig.3
│   │   │   ├── getnetconfig.c
│   │   │   ├── getnetpath.3
│   │   │   ├── getnetpath.c
│   │   │   ├── getrpcent.3
│   │   │   ├── getrpcent.c
│   │   │   ├── getrpcport.3
│   │   │   ├── getrpcport.c
│   │   │   ├── Makefile.inc
│   │   │   ├── mt_misc.c
│   │   │   ├── pmap_clnt.c
│   │   │   ├── pmap_getmaps.c
│   │   │   ├── pmap_getport.c
│   │   │   ├── pmap_prot2.c
│   │   │   ├── pmap_prot.c
│   │   │   ├── pmap_rmt.c
│   │   │   ├── README
│   │   │   ├── rpc.3
│   │   │   ├── rpcb_clnt.c
│   │   │   ├── rpcbind.3
│   │   │   ├── rpcb_prot.c
│   │   │   ├── rpcb_st_xdr.c
│   │   │   ├── rpc_callmsg.c
│   │   │   ├── rpc_clnt_auth.3
│   │   │   ├── rpc_clnt_calls.3
│   │   │   ├── rpc_clnt_create.3
│   │   │   ├── rpc_commondata.c
│   │   │   ├── rpc_dtablesize.c
│   │   │   ├── rpc_generic.c
│   │   │   ├── __rpc_getxid.c
│   │   │   ├── rpc_internal.h
│   │   │   ├── rpc_prot.c
│   │   │   ├── rpc_soc.3
│   │   │   ├── rpc_soc.c
│   │   │   ├── rpc_svc_calls.3
│   │   │   ├── rpc_svc_create.3
│   │   │   ├── rpc_svc_err.3
│   │   │   ├── rpc_svc_reg.3
│   │   │   ├── rpc_xdr.3
│   │   │   ├── svc_auth.c
│   │   │   ├── svc_auth_unix.c
│   │   │   ├── svc.c
│   │   │   ├── svc_dg.c
│   │   │   ├── svc_dg.h
│   │   │   ├── svc_generic.c
│   │   │   ├── svc_raw.c
│   │   │   ├── svc_run.c
│   │   │   ├── svc_simple.c
│   │   │   ├── svc_vc.c
│   │   │   ├── xdr.3
│   │   │   ├── xdr_array.c
│   │   │   ├── xdr.c
│   │   │   ├── xdr_float.c
│   │   │   ├── xdr_mem.c
│   │   │   ├── xdr_rec.c
│   │   │   ├── xdr_reference.c
│   │   │   └── xdr_stdio.c
│   │   ├── shlib_version
│   │   ├── softfloat
│   │   │   ├── bits32
│   │   │   │   ├── softfloat.c
│   │   │   │   └── softfloat-macros
│   │   │   ├── bits64
│   │   │   │   ├── softfloat.c
│   │   │   │   └── softfloat-macros
│   │   │   ├── eqdf2.c
│   │   │   ├── eqsf2.c
│   │   │   ├── eqtf2.c
│   │   │   ├── fpgetmask.c
│   │   │   ├── fpgetround.c
│   │   │   ├── fpgetsticky.c
│   │   │   ├── fpsetmask.c
│   │   │   ├── fpsetround.c
│   │   │   ├── fpsetsticky.c
│   │   │   ├── gedf2.c
│   │   │   ├── gesf2.c
│   │   │   ├── getf2.c
│   │   │   ├── gexf2.c
│   │   │   ├── gtdf2.c
│   │   │   ├── gtsf2.c
│   │   │   ├── gttf2.c
│   │   │   ├── gtxf2.c
│   │   │   ├── ledf2.c
│   │   │   ├── lesf2.c
│   │   │   ├── letf2.c
│   │   │   ├── ltdf2.c
│   │   │   ├── ltsf2.c
│   │   │   ├── lttf2.c
│   │   │   ├── Makefile.inc
│   │   │   ├── nedf2.c
│   │   │   ├── negdf2.c
│   │   │   ├── negsf2.c
│   │   │   ├── negtf2.c
│   │   │   ├── negxf2.c
│   │   │   ├── nesf2.c
│   │   │   ├── netf2.c
│   │   │   ├── nexf2.c
│   │   │   ├── README.NetBSD
│   │   │   ├── README.txt
│   │   │   ├── softfloat-for-gcc.h
│   │   │   ├── softfloat-history.txt
│   │   │   ├── softfloat-source.txt
│   │   │   ├── softfloat-specialize
│   │   │   ├── softfloat.txt
│   │   │   ├── templates
│   │   │   │   ├── milieu.h
│   │   │   │   ├── softfloat.h
│   │   │   │   └── softfloat-specialize
│   │   │   ├── timesoftfloat.c
│   │   │   ├── timesoftfloat.txt
│   │   │   ├── unorddf2.c
│   │   │   └── unordsf2.c
│   │   ├── ssp
│   │   │   ├── __builtin_object_size.3
│   │   │   ├── fgets_chk.c
│   │   │   ├── gets_chk.c
│   │   │   ├── Makefile.inc
│   │   │   ├── memcpy_chk.c
│   │   │   ├── memmove_chk.c
│   │   │   ├── memset_chk.c
│   │   │   ├── snprintf_chk.c
│   │   │   ├── sprintf_chk.c
│   │   │   ├── ssp.3
│   │   │   ├── strcat_chk.c
│   │   │   ├── strcpy_chk.c
│   │   │   ├── strncat_chk.c
│   │   │   ├── strncpy_chk.c
│   │   │   ├── vsnprintf_chk.c
│   │   │   └── vsprintf_chk.c
│   │   ├── stdio
│   │   │   ├── asprintf.c
│   │   │   ├── clrerr.c
│   │   │   ├── dprintf.c
│   │   │   ├── fclose.3
│   │   │   ├── fclose.c
│   │   │   ├── fdopen.c
│   │   │   ├── feof.c
│   │   │   ├── ferror.3
│   │   │   ├── ferror.c
│   │   │   ├── fflush.3
│   │   │   ├── fflush.c
│   │   │   ├── fgetc.c
│   │   │   ├── fgetln.3
│   │   │   ├── fgetln.c
│   │   │   ├── fgetpos.c
│   │   │   ├── fgets.3
│   │   │   ├── fgets.c
│   │   │   ├── fgetstr.c
│   │   │   ├── fgetwc.c
│   │   │   ├── fgetwln.3
│   │   │   ├── fgetwln.c
│   │   │   ├── fgetws.3
│   │   │   ├── fgetws.c
│   │   │   ├── fileext.h
│   │   │   ├── _fileno.c
│   │   │   ├── fileno.c
│   │   │   ├── findfp.c
│   │   │   ├── flags.c
│   │   │   ├── floatio.h
│   │   │   ├── flockfile.3
│   │   │   ├── flockfile.c
│   │   │   ├── fmemopen.3
│   │   │   ├── fmemopen.c
│   │   │   ├── fopen.3
│   │   │   ├── fopen.c
│   │   │   ├── fparseln.3
│   │   │   ├── fparseln.c
│   │   │   ├── fprintf.c
│   │   │   ├── fpurge.c
│   │   │   ├── fputc.c
│   │   │   ├── fputs.3
│   │   │   ├── fputs.c
│   │   │   ├── fputwc.c
│   │   │   ├── fputws.3
│   │   │   ├── fputws.c
│   │   │   ├── fread.3
│   │   │   ├── fread.c
│   │   │   ├── freopen.c
│   │   │   ├── fscanf.c
│   │   │   ├── fseek.3
│   │   │   ├── fseek.c
│   │   │   ├── _fseeko.c
│   │   │   ├── fseeko.c
│   │   │   ├── fsetpos.c
│   │   │   ├── ftell.c
│   │   │   ├── _ftello.c
│   │   │   ├── ftello.c
│   │   │   ├── funopen.3
│   │   │   ├── funopen.c
│   │   │   ├── fvwrite.c
│   │   │   ├── fvwrite.h
│   │   │   ├── fwalk.c
│   │   │   ├── fwide.3
│   │   │   ├── fwide.c
│   │   │   ├── fwprintf.c
│   │   │   ├── fwrite.c
│   │   │   ├── fwscanf.c
│   │   │   ├── getc.3
│   │   │   ├── getc.c
│   │   │   ├── getchar.c
│   │   │   ├── getdelim.3
│   │   │   ├── getdelim.c
│   │   │   ├── getline.c
│   │   │   ├── gets.c
│   │   │   ├── gettemp.c
│   │   │   ├── getw.c
│   │   │   ├── getwc.3
│   │   │   ├── getwc.c
│   │   │   ├── getwchar.c
│   │   │   ├── glue.h
│   │   │   ├── local.h
│   │   │   ├── makebuf.c
│   │   │   ├── Makefile.inc
│   │   │   ├── mkdtemp.c
│   │   │   ├── mkstemp.c
│   │   │   ├── mktemp.3
│   │   │   ├── mktemp.c
│   │   │   ├── perror.c
│   │   │   ├── printf.3
│   │   │   ├── printf.c
│   │   │   ├── putc.3
│   │   │   ├── putc.c
│   │   │   ├── putchar.c
│   │   │   ├── puts.c
│   │   │   ├── putw.c
│   │   │   ├── putwc.3
│   │   │   ├── putwc.c
│   │   │   ├── putwchar.c
│   │   │   ├── refill.c
│   │   │   ├── remove.3
│   │   │   ├── remove.c
│   │   │   ├── rewind.c
│   │   │   ├── rget.c
│   │   │   ├── scanf.3
│   │   │   ├── scanf.c
│   │   │   ├── setbuf.3
│   │   │   ├── setbuf.c
│   │   │   ├── setbuffer.c
│   │   │   ├── setvbuf.c
│   │   │   ├── snprintf.c
│   │   │   ├── snprintf_ss.c
│   │   │   ├── sprintf.c
│   │   │   ├── sscanf.c
│   │   │   ├── stdio.3
│   │   │   ├── stdio.c
│   │   │   ├── swprintf.c
│   │   │   ├── swscanf.c
│   │   │   ├── tempnam.c
│   │   │   ├── tmpfile.c
│   │   │   ├── tmpnam.3
│   │   │   ├── tmpnam.c
│   │   │   ├── ungetc.3
│   │   │   ├── ungetc.c
│   │   │   ├── ungetwc.3
│   │   │   ├── ungetwc.c
│   │   │   ├── vasprintf.c
│   │   │   ├── vdprintf.c
│   │   │   ├── vfprintf.c
│   │   │   ├── vfscanf.c
│   │   │   ├── vfwprintf.c
│   │   │   ├── vfwscanf.c
│   │   │   ├── vprintf.c
│   │   │   ├── vscanf.c
│   │   │   ├── vsnprintf.c
│   │   │   ├── vsnprintf_ss.c
│   │   │   ├── vsprintf.c
│   │   │   ├── vsscanf.c
│   │   │   ├── vswprintf.c
│   │   │   ├── vswscanf.c
│   │   │   ├── vwprintf.c
│   │   │   ├── vwscanf.c
│   │   │   ├── wbuf.c
│   │   │   ├── wcio.h
│   │   │   ├── wprintf.3
│   │   │   ├── wprintf.c
│   │   │   ├── wscanf.3
│   │   │   ├── wscanf.c
│   │   │   └── wsetup.c
│   │   ├── stdlib
│   │   │   ├── a64l.3
│   │   │   ├── a64l.c
│   │   │   ├── abort.3
│   │   │   ├── abort.c
│   │   │   ├── abs.3
│   │   │   ├── abs.c
│   │   │   ├── alloca.3
│   │   │   ├── atexit.3
│   │   │   ├── atexit.c
│   │   │   ├── atexit.h
│   │   │   ├── atof.3
│   │   │   ├── atof.c
│   │   │   ├── atoi.3
│   │   │   ├── atoi.c
│   │   │   ├── atol.3
│   │   │   ├── atol.c
│   │   │   ├── atoll.3
│   │   │   ├── atoll.c
│   │   │   ├── bsearch.3
│   │   │   ├── bsearch.c
│   │   │   ├── div.3
│   │   │   ├── div.c
│   │   │   ├── drand48.c
│   │   │   ├── _env.c
│   │   │   ├── erand48.c
│   │   │   ├── erand48_ieee754.c
│   │   │   ├── exit.3
│   │   │   ├── exit.c
│   │   │   ├── getenv.3
│   │   │   ├── getenv.c
│   │   │   ├── getopt.3
│   │   │   ├── getopt.c
│   │   │   ├── getopt_long.3
│   │   │   ├── getopt_long.c
│   │   │   ├── getsubopt.3
│   │   │   ├── getsubopt.c
│   │   │   ├── grantpt.3
│   │   │   ├── hcreate.3
│   │   │   ├── hcreate.c
│   │   │   ├── imaxabs.3
│   │   │   ├── imaxabs.c
│   │   │   ├── imaxdiv.3
│   │   │   ├── imaxdiv.c
│   │   │   ├── insque.3
│   │   │   ├── insque.c
│   │   │   ├── jemalloc.3
│   │   │   ├── jemalloc.c
│   │   │   ├── jrand48.c
│   │   │   ├── l64a.c
│   │   │   ├── labs.3
│   │   │   ├── labs.c
│   │   │   ├── lcong48.c
│   │   │   ├── ldiv.3
│   │   │   ├── ldiv.c
│   │   │   ├── Lint_abs.c
│   │   │   ├── Lint_div.c
│   │   │   ├── Lint_imaxabs.c
│   │   │   ├── Lint_labs.c
│   │   │   ├── Lint_ldiv.c
│   │   │   ├── Lint_llabs.c
│   │   │   ├── llabs.3
│   │   │   ├── llabs.c
│   │   │   ├── lldiv.3
│   │   │   ├── lldiv.c
│   │   │   ├── local.h
│   │   │   ├── lrand48.c
│   │   │   ├── lsearch.3
│   │   │   ├── lsearch.c
│   │   │   ├── Makefile.inc
│   │   │   ├── malloc.3
│   │   │   ├── malloc.c
│   │   │   ├── memory.3
│   │   │   ├── merge.c
│   │   │   ├── mi_vector_hash.3
│   │   │   ├── mi_vector_hash.c
│   │   │   ├── mrand48.c
│   │   │   ├── nrand48.c
│   │   │   ├── posix_memalign.3
│   │   │   ├── posix_openpt.3
│   │   │   ├── posix_openpt.c
│   │   │   ├── ptsname.3
│   │   │   ├── pty.c
│   │   │   ├── putenv.c
│   │   │   ├── qabs.3
│   │   │   ├── qabs.c
│   │   │   ├── qdiv.3
│   │   │   ├── qdiv.c
│   │   │   ├── qsort.3
│   │   │   ├── qsort.c
│   │   │   ├── radixsort.3
│   │   │   ├── radixsort.c
│   │   │   ├── rand.3
│   │   │   ├── rand48.3
│   │   │   ├── _rand48.c
│   │   │   ├── rand48.h
│   │   │   ├── rand.c
│   │   │   ├── random.3
│   │   │   ├── rand_r.c
│   │   │   ├── remque.c
│   │   │   ├── seed48.c
│   │   │   ├── setenv.c
│   │   │   ├── srand48.c
│   │   │   ├── strfmon.3
│   │   │   ├── strfmon.c
│   │   │   ├── strsuftoll.3
│   │   │   ├── strsuftoll.c
│   │   │   ├── strtod.3
│   │   │   ├── strtoimax.c
│   │   │   ├── strtol.3
│   │   │   ├── strtol.c
│   │   │   ├── strtoq.c
│   │   │   ├── strtoul.3
│   │   │   ├── strtouq.c
│   │   │   ├── system.3
│   │   │   ├── system.c
│   │   │   ├── tdelete.c
│   │   │   ├── tfind.c
│   │   │   ├── tsearch.3
│   │   │   ├── tsearch.c
│   │   │   ├── twalk.c
│   │   │   ├── unlockpt.3
│   │   │   └── unsetenv.c
│   │   ├── string
│   │   │   ├── bcmp.3
│   │   │   ├── bcopy.3
│   │   │   ├── bm.3
│   │   │   ├── bm.c
│   │   │   ├── bstring.3
│   │   │   ├── bzero.3
│   │   │   ├── ffs.3
│   │   │   ├── index.3
│   │   │   ├── index.c
│   │   │   ├── Lint_bcmp.c
│   │   │   ├── Lint_bcopy.c
│   │   │   ├── Lint_bzero.c
│   │   │   ├── Lint_ffs.c
│   │   │   ├── Lint_index.c
│   │   │   ├── Lint_memccpy.c
│   │   │   ├── Lint_memchr.c
│   │   │   ├── Lint_memcmp.c
│   │   │   ├── Lint_memcpy.c
│   │   │   ├── Lint_memmove.c
│   │   │   ├── Lint_memset.c
│   │   │   ├── Lint_rindex.c
│   │   │   ├── Lint_strcat.c
│   │   │   ├── Lint_strchr.c
│   │   │   ├── Lint_strcmp.c
│   │   │   ├── Lint_strcpy.c
│   │   │   ├── Lint_strlen.c
│   │   │   ├── Lint_strncat.c
│   │   │   ├── Lint_strncmp.c
│   │   │   ├── Lint_strncpy.c
│   │   │   ├── Lint_strrchr.c
│   │   │   ├── Lint_swab.c
│   │   │   ├── Makefile.inc
│   │   │   ├── memccpy.3
│   │   │   ├── memccpy.c
│   │   │   ├── memchr.3
│   │   │   ├── memcmp.3
│   │   │   ├── memcpy.3
│   │   │   ├── memmem.3
│   │   │   ├── memmem.c
│   │   │   ├── memmove.3
│   │   │   ├── memrchr.c
│   │   │   ├── memset.3
│   │   │   ├── popcount.3
│   │   │   ├── rindex.3
│   │   │   ├── rindex.c
│   │   │   ├── stpcpy.c
│   │   │   ├── stpncpy.c
│   │   │   ├── strcasecmp.3
│   │   │   ├── strcasestr.c
│   │   │   ├── strcat.3
│   │   │   ├── strchr.3
│   │   │   ├── strcmp.3
│   │   │   ├── strcoll.3
│   │   │   ├── strcoll.c
│   │   │   ├── strcpy.3
│   │   │   ├── strcspn.3
│   │   │   ├── strcspn.c
│   │   │   ├── strdup.3
│   │   │   ├── strdup.c
│   │   │   ├── strerror.3
│   │   │   ├── strerror.c
│   │   │   ├── _strerror_r.c
│   │   │   ├── strerror_r.c
│   │   │   ├── stresep.c
│   │   │   ├── string.3
│   │   │   ├── strings.3
│   │   │   ├── _strlcat.c
│   │   │   ├── strlcpy.3
│   │   │   ├── _strlcpy.c
│   │   │   ├── strlen.3
│   │   │   ├── strmode.3
│   │   │   ├── strmode.c
│   │   │   ├── strncat.c
│   │   │   ├── strndup.c
│   │   │   ├── strnlen.c
│   │   │   ├── strpbrk.3
│   │   │   ├── strpbrk.c
│   │   │   ├── strrchr.3
│   │   │   ├── strsep.3
│   │   │   ├── strsignal.3
│   │   │   ├── __strsignal.c
│   │   │   ├── strsignal.c
│   │   │   ├── strspn.3
│   │   │   ├── strspn.c
│   │   │   ├── strstr.3
│   │   │   ├── strtok.3
│   │   │   ├── strtok.c
│   │   │   ├── strtok_r.c
│   │   │   ├── strxfrm.3
│   │   │   ├── strxfrm.c
│   │   │   ├── swab.3
│   │   │   ├── swab.c
│   │   │   ├── wcscasecmp.3
│   │   │   ├── wcscasecmp.c
│   │   │   ├── wcscat.c
│   │   │   ├── wcschr.c
│   │   │   ├── wcscmp.c
│   │   │   ├── wcscpy.c
│   │   │   ├── wcscspn.c
│   │   │   ├── wcsdup.3
│   │   │   ├── wcsdup.c
│   │   │   ├── wcslcat.c
│   │   │   ├── wcslcpy.c
│   │   │   ├── wcslen.c
│   │   │   ├── wcsncasecmp.c
│   │   │   ├── wcsncat.c
│   │   │   ├── wcsncmp.c
│   │   │   ├── wcsncpy.c
│   │   │   ├── wcspbrk.c
│   │   │   ├── wcsrchr.c
│   │   │   ├── wcsspn.c
│   │   │   ├── wcsstr.c
│   │   │   ├── wcstok.3
│   │   │   ├── wcstok.c
│   │   │   ├── wcswcs.c
│   │   │   ├── wcswidth.3
│   │   │   ├── wmemchr.3
│   │   │   ├── wmemchr.c
│   │   │   ├── wmemcmp.c
│   │   │   ├── wmemcpy.c
│   │   │   ├── wmemmove.c
│   │   │   └── wmemset.c
│   │   ├── sys
│   │   │   ├── accept.2
│   │   │   ├── access.2
│   │   │   ├── acct.2
│   │   │   ├── adjtime.2
│   │   │   ├── adjtime.c
│   │   │   ├── bind.2
│   │   │   ├── brk.2
│   │   │   ├── _brk.c
│   │   │   ├── chdir.2
│   │   │   ├── chflags.2
│   │   │   ├── chmod.2
│   │   │   ├── chown.2
│   │   │   ├── chroot.2
│   │   │   ├── clock_settime.2
│   │   │   ├── clock_settime.c
│   │   │   ├── clone.2
│   │   │   ├── close.2
│   │   │   ├── connect.2
│   │   │   ├── dup.2
│   │   │   ├── execve.2
│   │   │   ├── _exit.2
│   │   │   ├── extattr_get_file.2
│   │   │   ├── fcntl.2
│   │   │   ├── fdatasync.2
│   │   │   ├── fhopen.2
│   │   │   ├── flock.2
│   │   │   ├── fork.2
│   │   │   ├── _fork.c
│   │   │   ├── fsync.2
│   │   │   ├── ftruncate.c
│   │   │   ├── getcontext.2
│   │   │   ├── _getcontext.c
│   │   │   ├── getdents.2
│   │   │   ├── getfh.2
│   │   │   ├── getgid.2
│   │   │   ├── getgroups.2
│   │   │   ├── getitimer.2
│   │   │   ├── getlogin.2
│   │   │   ├── getpeername.2
│   │   │   ├── getpgrp.2
│   │   │   ├── getpid.2
│   │   │   ├── getpriority.2
│   │   │   ├── getrlimit.2
│   │   │   ├── getrusage.2
│   │   │   ├── getsid.2
│   │   │   ├── getsockname.2
│   │   │   ├── getsockopt.2
│   │   │   ├── gettimeofday.2
│   │   │   ├── getuid.2
│   │   │   ├── getvfsstat.2
│   │   │   ├── intro.2
│   │   │   ├── ioctl.2
│   │   │   ├── issetugid.2
│   │   │   ├── kill.2
│   │   │   ├── kqueue.2
│   │   │   ├── ktrace.2
│   │   │   ├── lfs_bmapv.2
│   │   │   ├── lfs_markv.2
│   │   │   ├── lfs_segclean.2
│   │   │   ├── lfs_segwait.2
│   │   │   ├── link.2
│   │   │   ├── Lint_brk.c
│   │   │   ├── Lint___clone.c
│   │   │   ├── Lint_clone.c
│   │   │   ├── Lint_exect.c
│   │   │   ├── Lint_getcontext.c
│   │   │   ├── Lint_pipe.c
│   │   │   ├── Lint_ptrace.c
│   │   │   ├── Lint_sbrk.c
│   │   │   ├── Lint___sigaction14.c
│   │   │   ├── Lint___syscall.c
│   │   │   ├── Lint_syscall.c
│   │   │   ├── Lint___vfork14.c
│   │   │   ├── listen.2
│   │   │   ├── lseek.2
│   │   │   ├── lseek.c
│   │   │   ├── _lwp_create.2
│   │   │   ├── _lwp_ctl.2
│   │   │   ├── _lwp_detach.2
│   │   │   ├── _lwp_exit.2
│   │   │   ├── _lwp_getname.2
│   │   │   ├── _lwp_getprivate.2
│   │   │   ├── _lwp_kill.2
│   │   │   ├── _lwp_park.2
│   │   │   ├── _lwp_self.2
│   │   │   ├── _lwp_setname.2
│   │   │   ├── _lwp_suspend.2
│   │   │   ├── _lwp_unpark.2
│   │   │   ├── _lwp_unpark_all.2
│   │   │   ├── _lwp_wait.2
│   │   │   ├── _lwp_wakeup.2
│   │   │   ├── madvise.2
│   │   │   ├── Makefile.inc
│   │   │   ├── makelintstub
│   │   │   ├── mincore.2
│   │   │   ├── minherit.2
│   │   │   ├── mkdir.2
│   │   │   ├── mkfifo.2
│   │   │   ├── mknod.2
│   │   │   ├── mlock.2
│   │   │   ├── mlockall.2
│   │   │   ├── mmap.2
│   │   │   ├── mmap.c
│   │   │   ├── modctl.2
│   │   │   ├── mount.2
│   │   │   ├── mprotect.2
│   │   │   ├── mremap.2
│   │   │   ├── msgctl.2
│   │   │   ├── msgget.2
│   │   │   ├── msgrcv.2
│   │   │   ├── msgsnd.2
│   │   │   ├── msync.2
│   │   │   ├── munmap.2
│   │   │   ├── nanosleep.2
│   │   │   ├── nfssvc.2
│   │   │   ├── ntp_adjtime.2
│   │   │   ├── ntp_adjtime.c
│   │   │   ├── open.2
│   │   │   ├── pathconf.2
│   │   │   ├── pipe.2
│   │   │   ├── _pipe.c
│   │   │   ├── pmc_control.2
│   │   │   ├── poll.2
│   │   │   ├── posix_fadvise.2
│   │   │   ├── posix_fadvise.c
│   │   │   ├── posix_madvise.c
│   │   │   ├── pread.c
│   │   │   ├── preadv.c
│   │   │   ├── profil.2
│   │   │   ├── ptrace.2
│   │   │   ├── pwrite.c
│   │   │   ├── pwritev.c
│   │   │   ├── quotactl.2
│   │   │   ├── rasctl.2
│   │   │   ├── read.2
│   │   │   ├── readlink.2
│   │   │   ├── reboot.2
│   │   │   ├── recv.2
│   │   │   ├── rename.2
│   │   │   ├── revoke.2
│   │   │   ├── rmdir.2
│   │   │   ├── sa_enable.2
│   │   │   ├── sa_register.2
│   │   │   ├── sa_setconcurrency.2
│   │   │   ├── sa_stacks.2
│   │   │   ├── sa_yield.2
│   │   │   ├── _sbrk.c
│   │   │   ├── sched.c
│   │   │   ├── select.2
│   │   │   ├── semctl.2
│   │   │   ├── semctl.c
│   │   │   ├── semget.2
│   │   │   ├── semop.2
│   │   │   ├── send.2
│   │   │   ├── setgroups.2
│   │   │   ├── setpgid.2
│   │   │   ├── setregid.2
│   │   │   ├── setreuid.2
│   │   │   ├── setsid.2
│   │   │   ├── settimeofday.c
│   │   │   ├── setuid.2
│   │   │   ├── shmat.2
│   │   │   ├── shmctl.2
│   │   │   ├── shmget.2
│   │   │   ├── shutdown.2
│   │   │   ├── sigaction.2
│   │   │   ├── sigaltstack.2
│   │   │   ├── sigpending.2
│   │   │   ├── sigprocmask.2
│   │   │   ├── sigqueue.2
│   │   │   ├── sigqueue.c
│   │   │   ├── sigstack.2
│   │   │   ├── sigsuspend.2
│   │   │   ├── sigtimedwait.2
│   │   │   ├── sigtimedwait.c
│   │   │   ├── sigwait.c
│   │   │   ├── sigwaitinfo.c
│   │   │   ├── socket.2
│   │   │   ├── socketpair.2
│   │   │   ├── stat.2
│   │   │   ├── statvfs.2
│   │   │   ├── statvfs.c
│   │   │   ├── swapctl.2
│   │   │   ├── swapon.3
│   │   │   ├── swapon.c
│   │   │   ├── symlink.2
│   │   │   ├── sync.2
│   │   │   ├── sysarch.2
│   │   │   ├── syscall.2
│   │   │   ├── timer_create.2
│   │   │   ├── timer_delete.2
│   │   │   ├── timer_settime.2
│   │   │   ├── truncate.2
│   │   │   ├── truncate.c
│   │   │   ├── umask.2
│   │   │   ├── undelete.2
│   │   │   ├── unlink.2
│   │   │   ├── utimes.2
│   │   │   ├── utrace.2
│   │   │   ├── uuidgen.2
│   │   │   ├── vfork.2
│   │   │   ├── wait.2
│   │   │   └── write.2
│   │   ├── sys-minix
│   │   │   ├── accept.c
│   │   │   ├── access.c
│   │   │   ├── bind.c
│   │   │   ├── brk.c
│   │   │   ├── chdir.c
│   │   │   ├── chmod.c
│   │   │   ├── chown.c
│   │   │   ├── chroot.c
│   │   │   ├── close.c
│   │   │   ├── connect.c
│   │   │   ├── cprofile.c
│   │   │   ├── dup2.c
│   │   │   ├── dup.c
│   │   │   ├── environ.c
│   │   │   ├── execve.c
│   │   │   ├── _exit.c
│   │   │   ├── fchmod.c
│   │   │   ├── fchown.c
│   │   │   ├── fcntl.c
│   │   │   ├── flock.c
│   │   │   ├── fork.c
│   │   │   ├── fpathconf.c
│   │   │   ├── fstatfs.c
│   │   │   ├── fstatvfs.c
│   │   │   ├── fsync.c
│   │   │   ├── ftruncate.c
│   │   │   ├── __getcwd.c
│   │   │   ├── getdents.c
│   │   │   ├── getegid.c
│   │   │   ├── geteuid.c
│   │   │   ├── getgid.c
│   │   │   ├── getgroups.c
│   │   │   ├── getitimer.c
│   │   │   ├── __getlogin.c
│   │   │   ├── getpeername.c
│   │   │   ├── getpgrp.c
│   │   │   ├── getpid.c
│   │   │   ├── getppid.c
│   │   │   ├── getrlimit.c
│   │   │   ├── getsid.c
│   │   │   ├── getsockname.c
│   │   │   ├── getsockopt.c
│   │   │   ├── gettimeofday.c
│   │   │   ├── getuid.c
│   │   │   ├── ioctl.c
│   │   │   ├── issetugid.c
│   │   │   ├── kill.c
│   │   │   ├── link.c
│   │   │   ├── listen.c
│   │   │   ├── loadname.c
│   │   │   ├── lseek64.c
│   │   │   ├── lseek.c
│   │   │   ├── Makefile.inc
│   │   │   ├── m_closefrom.c
│   │   │   ├── _mcontext.c
│   │   │   ├── minix_rs.c
│   │   │   ├── MISSING_SYSCALLS
│   │   │   ├── mkdir.c
│   │   │   ├── mkfifo.c
│   │   │   ├── mknod.c
│   │   │   ├── mmap.c
│   │   │   ├── mount.c
│   │   │   ├── nanosleep.c
│   │   │   ├── open.c
│   │   │   ├── pathconf.c
│   │   │   ├── pipe.c
│   │   │   ├── poll.c
│   │   │   ├── pread.c
│   │   │   ├── priority.c
│   │   │   ├── ptrace.c
│   │   │   ├── pwrite.c
│   │   │   ├── read.c
│   │   │   ├── readlink.c
│   │   │   ├── reboot.c
│   │   │   ├── recvfrom.c
│   │   │   ├── recvmsg.c
│   │   │   ├── rename.c
│   │   │   ├── rmdir.c
│   │   │   ├── sbrk.c
│   │   │   ├── select.c
│   │   │   ├── sem.c
│   │   │   ├── sendmsg.c
│   │   │   ├── sendto.c
│   │   │   ├── setgid.c
│   │   │   ├── setgroups.c
│   │   │   ├── setitimer.c
│   │   │   ├── setsid.c
│   │   │   ├── setsockopt.c
│   │   │   ├── settimeofday.c
│   │   │   ├── setuid.c
│   │   │   ├── shmat.c
│   │   │   ├── shmctl.c
│   │   │   ├── shmget.c
│   │   │   ├── shutdown.c
│   │   │   ├── sigaction.c
│   │   │   ├── sigpending.c
│   │   │   ├── sigprocmask.c
│   │   │   ├── sigreturn.c
│   │   │   ├── sigsuspend.c
│   │   │   ├── sizeup.c
│   │   │   ├── socket.c
│   │   │   ├── socketpair.c
│   │   │   ├── sprofile.c
│   │   │   ├── stat.c
│   │   │   ├── statvfs.c
│   │   │   ├── stime.c
│   │   │   ├── symlink.c
│   │   │   ├── sync.c
│   │   │   ├── syscall.c
│   │   │   ├── sysuname.c
│   │   │   ├── truncate.c
│   │   │   ├── _ucontext.c
│   │   │   ├── umask.c
│   │   │   ├── unlink.c
│   │   │   ├── vectorio.c
│   │   │   ├── vfork.c
│   │   │   └── write.c
│   │   ├── termios
│   │   │   ├── cfgetispeed.c
│   │   │   ├── cfgetospeed.c
│   │   │   ├── cfmakeraw.c
│   │   │   ├── cfsetispeed.c
│   │   │   ├── cfsetospeed.c
│   │   │   ├── cfsetspeed.c
│   │   │   ├── Makefile.inc
│   │   │   ├── tcdrain.c
│   │   │   ├── tcflow.c
│   │   │   ├── tcflush.c
│   │   │   ├── tcgetattr.c
│   │   │   ├── tcgetpgrp.3
│   │   │   ├── tcgetpgrp.c
│   │   │   ├── tcgetsid.3
│   │   │   ├── tcgetsid.c
│   │   │   ├── tcsendbreak.3
│   │   │   ├── tcsendbreak.c
│   │   │   ├── tcsetattr.3
│   │   │   ├── tcsetattr.c
│   │   │   ├── tcsetpgrp.3
│   │   │   └── tcsetpgrp.c
│   │   ├── thread-stub
│   │   │   ├── __isthreaded.c
│   │   │   ├── Makefile.inc
│   │   │   └── thread-stub.c
│   │   ├── time
│   │   │   ├── asctime.c
│   │   │   ├── checktab.awk
│   │   │   ├── ctime.3
│   │   │   ├── _daylight.c
│   │   │   ├── difftime.c
│   │   │   ├── getdate.3
│   │   │   ├── getdate.c
│   │   │   ├── ialloc.c
│   │   │   ├── localtime.c
│   │   │   ├── Makefile
│   │   │   ├── Makefile.inc
│   │   │   ├── offtime.3
│   │   │   ├── private.h
│   │   │   ├── README
│   │   │   ├── scheck.c
│   │   │   ├── strftime.3
│   │   │   ├── strftime.c
│   │   │   ├── strptime.3
│   │   │   ├── strptime.c
│   │   │   ├── Theory
│   │   │   ├── time2posix.3
│   │   │   ├── tz-art.htm
│   │   │   ├── tzcode2netbsd
│   │   │   ├── tzfile.5
│   │   │   ├── tzfile.h
│   │   │   ├── tz-link.htm
│   │   │   ├── tzselect.8
│   │   │   ├── tzselect.ksh
│   │   │   ├── tzset.3
│   │   │   ├── zdump.8
│   │   │   ├── zdump.c
│   │   │   ├── zic.8
│   │   │   └── zic.c
│   │   ├── uuid
│   │   │   ├── Makefile.inc
│   │   │   ├── uuid.3
│   │   │   ├── uuid_compare.c
│   │   │   ├── uuid_create.c
│   │   │   ├── uuid_create_nil.c
│   │   │   ├── uuid_equal.c
│   │   │   ├── uuid_from_string.c
│   │   │   ├── uuid_hash.c
│   │   │   ├── uuid_is_nil.c
│   │   │   ├── uuid_stream.c
│   │   │   └── uuid_to_string.c
│   │   └── yp
│   │   ├── local.h
│   │   ├── Makefile.inc
│   │   ├── xdryp.c
│   │   ├── yp_all.c
│   │   ├── ypclnt.3
│   │   ├── yperr_string.c
│   │   ├── yp_first.c
│   │   ├── yplib.c
│   │   ├── yp_maplist.c
│   │   ├── yp_master.c
│   │   ├── yp_match.c
│   │   ├── yp_order.c
│   │   └── ypprot_err.c
│   ├── libchardriver
│   │   ├── chardriver.c
│   │   └── Makefile
│   ├── libcompat_minix
│   │   ├── configfile.c
│   │   ├── cuserid.c
│   │   ├── fttyslot.c
│   │   ├── include
│   │   │   ├── compat
│   │   │   │   ├── a.out.h
│   │   │   │   ├── pwd.h
│   │   │   │   ├── regexp.h
│   │   │   │   └── syslog.h
│   │   │   ├── configfile.h
│   │   │   ├── i386
│   │   │   │   └── compat_jmp_buf.h
│   │   │   ├── Makefile.inc
│   │   │   ├── net
│   │   │   │   └── gen
│   │   │   │   ├── nameser.h
│   │   │   │   ├── netdb.h
│   │   │   │   └── resolv.h
│   │   │   └── sys
│   │   │   ├── jmp_buf.h
│   │   │   └── sigcontext.h
│   │   ├── Makefile
│   │   ├── mtab.c
│   │   ├── nlist.c
│   │   ├── pkgconfig
│   │   │   ├── compat_minix.pc
│   │   │   └── Makefile
│   │   ├── stderr.c
│   │   ├── v8regerror.c
│   │   ├── v8regexp.c
│   │   └── v8regsub.c
│   ├── libcrypt
│   │   ├── bcrypt.c
│   │   ├── blowfish.c
│   │   ├── crypt.3
│   │   ├── crypt.c
│   │   ├── crypt.h
│   │   ├── crypt-sha1.c
│   │   ├── hmac.c
│   │   ├── hmac_sha1.c
│   │   ├── Makefile
│   │   ├── md5crypt.c
│   │   ├── pw_gensalt.c
│   │   ├── shlib_version
│   │   └── util.c
│   ├── libcurses
│   │   ├── acs.c
│   │   ├── addbytes.c
│   │   ├── addch.c
│   │   ├── addchnstr.c
│   │   ├── addnstr.c
│   │   ├── add_wch.c
│   │   ├── add_wchstr.c
│   │   ├── addwstr.c
│   │   ├── attributes.c
│   │   ├── background.c
│   │   ├── bell.c
│   │   ├── border.c
│   │   ├── box.c
│   │   ├── cchar.c
│   │   ├── chgat.c
│   │   ├── clear.c
│   │   ├── clearok.c
│   │   ├── clrtobot.c
│   │   ├── clrtoeol.c
│   │   ├── color.c
│   │   ├── copywin.c
│   │   ├── cr_put.c
│   │   ├── ctrace.c
│   │   ├── cur_hash.c
│   │   ├── curses.3
│   │   ├── curses_addch.3
│   │   ├── curses_addchstr.3
│   │   ├── curses_addstr.3
│   │   ├── curses_attributes.3
│   │   ├── curses_background.3
│   │   ├── curses_border.3
│   │   ├── curses.c
│   │   ├── curses_chgat.3
│   │   ├── curses_clear.3
│   │   ├── curses_color.3
│   │   ├── curses_cursor.3
│   │   ├── curses_default_colors.3
│   │   ├── curses_delch.3
│   │   ├── curses_deleteln.3
│   │   ├── curses_echochar.3
│   │   ├── curses_fileio.3
│   │   ├── curses.h
│   │   ├── curses_inch.3
│   │   ├── curses_input.3
│   │   ├── curses_insdelln.3
│   │   ├── curses_insertch.3
│   │   ├── curses_insertln.3
│   │   ├── curses_keyname.3
│   │   ├── curses_line.3
│   │   ├── curses_pad.3
│   │   ├── curses_print.3
│   │   ├── curses_private.h
│   │   ├── curses_refresh.3
│   │   ├── curses_scanw.3
│   │   ├── curses_screen.3
│   │   ├── curses_scroll.3
│   │   ├── curses_standout.3
│   │   ├── curses_termcap.3
│   │   ├── curses_touch.3
│   │   ├── curses_tty.3
│   │   ├── curses_underscore.3
│   │   ├── curses_window.3
│   │   ├── curs_set.c
│   │   ├── delch.c
│   │   ├── deleteln.c
│   │   ├── delwin.c
│   │   ├── echochar.c
│   │   ├── echo_wchar.c
│   │   ├── erase.c
│   │   ├── EXAMPLES
│   │   │   ├── ex1.c
│   │   │   ├── Makefile
│   │   │   └── view.c
│   │   ├── fileio.c
│   │   ├── fileio.h
│   │   ├── flushok.c
│   │   ├── fullname.c
│   │   ├── genfileioh.awk
│   │   ├── getch.c
│   │   ├── getstr.c
│   │   ├── get_wch.c
│   │   ├── get_wstr.c
│   │   ├── getyx.c
│   │   ├── idcok.c
│   │   ├── idlok.c
│   │   ├── id_subwins.c
│   │   ├── inch.c
│   │   ├── inchstr.c
│   │   ├── initscr.c
│   │   ├── insch.c
│   │   ├── insdelln.c
│   │   ├── insertln.c
│   │   ├── insstr.c
│   │   ├── instr.c
│   │   ├── ins_wch.c
│   │   ├── ins_wstr.c
│   │   ├── in_wch.c
│   │   ├── in_wchstr.c
│   │   ├── inwstr.c
│   │   ├── keymap.h
│   │   ├── keyname.c
│   │   ├── keypad.c
│   │   ├── leaveok.c
│   │   ├── line.c
│   │   ├── longname.c
│   │   ├── Makefile
│   │   ├── meta.c
│   │   ├── move.c
│   │   ├── mvwin.c
│   │   ├── newwin.c
│   │   ├── nodelay.c
│   │   ├── notimeout.c
│   │   ├── overlay.c
│   │   ├── overwrite.c
│   │   ├── pause.c
│   │   ├── printw.c
│   │   ├── PSD.doc
│   │   │   ├── appen.A
│   │   │   ├── appen.B
│   │   │   ├── appen.C
│   │   │   ├── c_macros
│   │   │   ├── doc.I
│   │   │   ├── doc.II
│   │   │   ├── doc.III
│   │   │   ├── doc.IV
│   │   │   ├── ex1.c
│   │   │   ├── ex2.c
│   │   │   ├── fns.doc
│   │   │   ├── intro.0
│   │   │   ├── intro.1
│   │   │   ├── intro.2
│   │   │   ├── intro.3
│   │   │   ├── intro.4
│   │   │   ├── intro.5
│   │   │   ├── intro.6
│   │   │   ├── life.c
│   │   │   ├── macros
│   │   │   ├── Makefile
│   │   │   ├── Master
│   │   │   ├── twinkle1.c
│   │   │   ├── twinkle2.c
│   │   │   └── win_st.c
│   │   ├── putchar.c
│   │   ├── refresh.c
│   │   ├── resize.c
│   │   ├── scanw.c
│   │   ├── screen.c
│   │   ├── scroll.c
│   │   ├── scrollok.c
│   │   ├── setterm.c
│   │   ├── shlib_version
│   │   ├── standout.c
│   │   ├── timeout.c
│   │   ├── toucholap.c
│   │   ├── touchwin.c
│   │   ├── tscroll.c
│   │   ├── tstp.c
│   │   ├── tty.c
│   │   ├── unctrl.c
│   │   ├── unctrl.h
│   │   └── underscore.c
│   ├── libddekit
│   │   ├── build
│   │   │   ├── ddekit
│   │   │   │   └── Makefile
│   │   │   ├── ddekit_usb_client
│   │   │   │   └── Makefile
│   │   │   ├── ddekit_usb_server
│   │   │   │   └── Makefile
│   │   │   └── Makefile
│   │   ├── Makefile
│   │   └── src
│   │   ├── common.h
│   │   ├── condvar.c
│   │   ├── dde.c
│   │   ├── dde.h
│   │   ├── debug.h
│   │   ├── initcall.c
│   │   ├── irq.c
│   │   ├── irq.h
│   │   ├── lock.c
│   │   ├── mem.c
│   │   ├── msg_queue.c
│   │   ├── panic.c
│   │   ├── pci.c
│   │   ├── pgtab.c
│   │   ├── printf.c
│   │   ├── resource.c
│   │   ├── semaphore.c
│   │   ├── thread.c
│   │   ├── thread.h
│   │   ├── timer.c
│   │   ├── timer.h
│   │   ├── usb_client.c
│   │   ├── usb_server.c
│   │   └── util.h
│   ├── libdevman
│   │   ├── generic.c
│   │   ├── local.h
│   │   ├── Makefile
│   │   └── usb.c
│   ├── libedit
│   │   ├── complete.c
│   │   ├── editline.c
│   │   ├── editline.h
│   │   ├── Makefile
│   │   ├── README
│   │   ├── sysunix.c
│   │   ├── testit.c
│   │   └── unix.h
│   ├── libelf
│   │   ├── compat
│   │   │   └── mmap.c
│   │   ├── elf.3
│   │   ├── elf_begin.3
│   │   ├── elf_begin.c
│   │   ├── elf.c
│   │   ├── elf_cntl.3
│   │   ├── elf_cntl.c
│   │   ├── elf_data.c
│   │   ├── elfdefinitions.h
│   │   ├── elf_end.3
│   │   ├── elf_end.c
│   │   ├── elf_errmsg.3
│   │   ├── elf_errmsg.c
│   │   ├── elf_errno.c
│   │   ├── elf_fill.3
│   │   ├── elf_fill.c
│   │   ├── elf_flag.c
│   │   ├── elf_flagdata.3
│   │   ├── elf_getarhdr.3
│   │   ├── elf_getarhdr.c
│   │   ├── elf_getarsym.3
│   │   ├── elf_getarsym.c
│   │   ├── elf_getbase.3
│   │   ├── elf_getbase.c
│   │   ├── elf_getdata.3
│   │   ├── elf_getident.3
│   │   ├── elf_getident.c
│   │   ├── elf_getphdrnum.3
│   │   ├── elf_getphnum.3
│   │   ├── elf_getscn.3
│   │   ├── elf_getshdrnum.3
│   │   ├── elf_getshdrstrndx.3
│   │   ├── elf_getshnum.3
│   │   ├── elf_getshstrndx.3
│   │   ├── elf_hash.3
│   │   ├── elf_hash.c
│   │   ├── elf_kind.3
│   │   ├── elf_kind.c
│   │   ├── elf_memory.3
│   │   ├── elf_memory.c
│   │   ├── elf_next.3
│   │   ├── elf_next.c
│   │   ├── elf_phnum.c
│   │   ├── elf_rand.3
│   │   ├── elf_rand.c
│   │   ├── elf_rawfile.3
│   │   ├── elf_rawfile.c
│   │   ├── elf_scn.c
│   │   ├── elf_shnum.c
│   │   ├── elf_shstrndx.c
│   │   ├── elf_strptr.3
│   │   ├── elf_strptr.c
│   │   ├── _elftc.h
│   │   ├── elf_types.m4
│   │   ├── elf_update.3
│   │   ├── elf_update.c
│   │   ├── elf_version.3
│   │   ├── elf_version.c
│   │   ├── gelf.3
│   │   ├── gelf_cap.c
│   │   ├── gelf_checksum.3
│   │   ├── gelf_checksum.c
│   │   ├── gelf_dyn.c
│   │   ├── gelf_ehdr.c
│   │   ├── gelf_fsize.3
│   │   ├── gelf_fsize.c
│   │   ├── gelf_getcap.3
│   │   ├── gelf_getclass.3
│   │   ├── gelf_getclass.c
│   │   ├── gelf_getdyn.3
│   │   ├── gelf_getehdr.3
│   │   ├── gelf_getmove.3
│   │   ├── gelf_getphdr.3
│   │   ├── gelf_getrel.3
│   │   ├── gelf_getrela.3
│   │   ├── gelf_getshdr.3
│   │   ├── gelf_getsym.3
│   │   ├── gelf_getsyminfo.3
│   │   ├── gelf_getsymshndx.3
│   │   ├── gelf.h
│   │   ├── gelf_move.c
│   │   ├── gelf_newehdr.3
│   │   ├── gelf_newphdr.3
│   │   ├── gelf_phdr.c
│   │   ├── gelf_rela.c
│   │   ├── gelf_rel.c
│   │   ├── gelf_shdr.c
│   │   ├── gelf_sym.c
│   │   ├── gelf_syminfo.c
│   │   ├── gelf_symshndx.c
│   │   ├── gelf_update_ehdr.3
│   │   ├── gelf_xlate.c
│   │   ├── gelf_xlatetof.3
│   │   ├── libelf_align.c
│   │   ├── libelf_allocate.c
│   │   ├── libelf_ar.c
│   │   ├── _libelf_ar.h
│   │   ├── libelf_ar_util.c
│   │   ├── libelf_checksum.c
│   │   ├── libelf_compat.h
│   │   ├── _libelf_config.h
│   │   ├── libelf_convert.m4
│   │   ├── libelf_data.c
│   │   ├── libelf_ehdr.c
│   │   ├── libelf_extended.c
│   │   ├── libelf_fsize.m4
│   │   ├── _libelf.h
│   │   ├── libelf.h
│   │   ├── libelf_msize.m4
│   │   ├── libelf_phdr.c
│   │   ├── libelf_shdr.c
│   │   ├── libelf_xlate.c
│   │   ├── Makefile
│   │   ├── README
│   │   ├── README.build
│   │   └── Version.map
│   ├── libexec
│   │   ├── exec_aout.c
│   │   ├── exec_elf.c
│   │   ├── libexec.h
│   │   └── Makefile
│   ├── libfetch
│   │   ├── common.c
│   │   ├── common.h
│   │   ├── errlist.sh
│   │   ├── fetch.c
│   │   ├── fetch.cat3
│   │   ├── file.c
│   │   ├── ftp.c
│   │   ├── ftperr.h
│   │   ├── ftp.errors
│   │   ├── http.c
│   │   ├── httperr.h
│   │   ├── http.errors
│   │   └── Makefile
│   ├── libhgfs
│   │   ├── attr.c
│   │   ├── backdoor.S
│   │   ├── channel.c
│   │   ├── const.h
│   │   ├── dir.c
│   │   ├── error.c
│   │   ├── file.c
│   │   ├── glo.h
│   │   ├── inc.h
│   │   ├── link.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── path.c
│   │   ├── proto.h
│   │   ├── rpc.c
│   │   ├── time.c
│   │   └── type.h
│   ├── libl
│   │   └── Makefile
│   ├── liblwip
│   │   ├── api
│   │   │   ├── api_lib.c
│   │   │   ├── api_msg.c
│   │   │   ├── err.c
│   │   │   ├── Makefile.inc
│   │   │   ├── netbuf.c
│   │   │   ├── netdb.c
│   │   │   ├── netifapi.c
│   │   │   ├── sockets.c
│   │   │   └── tcpip.c
│   │   ├── COPYING
│   │   ├── core
│   │   │   ├── def.c
│   │   │   ├── dhcp.c
│   │   │   ├── dns.c
│   │   │   ├── init.c
│   │   │   ├── ipv4
│   │   │   │   ├── autoip.c
│   │   │   │   ├── icmp.c
│   │   │   │   ├── igmp.c
│   │   │   │   ├── inet.c
│   │   │   │   ├── inet_chksum.c
│   │   │   │   ├── ip_addr.c
│   │   │   │   ├── ip.c
│   │   │   │   └── ip_frag.c
│   │   │   ├── Makefile.inc
│   │   │   ├── mem.c
│   │   │   ├── memp.c
│   │   │   ├── netif.c
│   │   │   ├── pbuf.c
│   │   │   ├── raw.c
│   │   │   ├── snmp
│   │   │   │   ├── asn1_dec.c
│   │   │   │   ├── asn1_enc.c
│   │   │   │   ├── mib2.c
│   │   │   │   ├── mib_structs.c
│   │   │   │   ├── msg_in.c
│   │   │   │   └── msg_out.c
│   │   │   ├── stats.c
│   │   │   ├── sys.c
│   │   │   ├── tcp.c
│   │   │   ├── tcp_in.c
│   │   │   ├── tcp_out.c
│   │   │   ├── timers.c
│   │   │   └── udp.c
│   │   ├── include
│   │   │   ├── arch
│   │   │   │   ├── cc.h
│   │   │   │   ├── perf.h
│   │   │   │   └── sys_arch.h
│   │   │   ├── ipv4
│   │   │   │   └── lwip
│   │   │   │   ├── autoip.h
│   │   │   │   ├── icmp.h
│   │   │   │   ├── igmp.h
│   │   │   │   ├── inet_chksum.h
│   │   │   │   ├── inet.h
│   │   │   │   ├── ip_addr.h
│   │   │   │   ├── ip_frag.h
│   │   │   │   └── ip.h
│   │   │   ├── lwip
│   │   │   │   ├── api.h
│   │   │   │   ├── api_msg.h
│   │   │   │   ├── arch.h
│   │   │   │   ├── autoip.h
│   │   │   │   ├── debug.h
│   │   │   │   ├── def.h
│   │   │   │   ├── dhcp.h
│   │   │   │   ├── dns.h
│   │   │   │   ├── err.h
│   │   │   │   ├── icmp.h
│   │   │   │   ├── igmp.h
│   │   │   │   ├── inet_chksum.h
│   │   │   │   ├── inet.h
│   │   │   │   ├── init.h
│   │   │   │   ├── ip_addr.h
│   │   │   │   ├── ip_frag.h
│   │   │   │   ├── ip.h
│   │   │   │   ├── mem.h
│   │   │   │   ├── memp.h
│   │   │   │   ├── memp_std.h
│   │   │   │   ├── netbuf.h
│   │   │   │   ├── netdb.h
│   │   │   │   ├── netifapi.h
│   │   │   │   ├── netif.h
│   │   │   │   ├── opt.h
│   │   │   │   ├── pbuf.h
│   │   │   │   ├── raw.h
│   │   │   │   ├── sio.h
│   │   │   │   ├── snmp_asn1.h
│   │   │   │   ├── snmp.h
│   │   │   │   ├── snmp_msg.h
│   │   │   │   ├── snmp_structs.h
│   │   │   │   ├── sockets.h
│   │   │   │   ├── stats.h
│   │   │   │   ├── sys.h
│   │   │   │   ├── tcp.h
│   │   │   │   ├── tcp_impl.h
│   │   │   │   ├── tcpip.h
│   │   │   │   ├── timers.h
│   │   │   │   └── udp.h
│   │   │   ├── lwipopts.h
│   │   │   └── netif
│   │   │   ├── etharp.h
│   │   │   ├── ppp_oe.h
│   │   │   └── slipif.h
│   │   ├── Makefile
│   │   ├── netif
│   │   │   ├── etharp.c
│   │   │   ├── ethernetif.c
│   │   │   ├── FILES
│   │   │   ├── Makefile.inc
│   │   │   ├── ppp
│   │   │   │   ├── auth.c
│   │   │   │   ├── auth.h
│   │   │   │   ├── chap.c
│   │   │   │   ├── chap.h
│   │   │   │   ├── chpms.c
│   │   │   │   ├── chpms.h
│   │   │   │   ├── fsm.c
│   │   │   │   ├── fsm.h
│   │   │   │   ├── ipcp.c
│   │   │   │   ├── ipcp.h
│   │   │   │   ├── lcp.c
│   │   │   │   ├── lcp.h
│   │   │   │   ├── magic.c
│   │   │   │   ├── magic.h
│   │   │   │   ├── md5.c
│   │   │   │   ├── md5.h
│   │   │   │   ├── pap.c
│   │   │   │   ├── pap.h
│   │   │   │   ├── ppp.c
│   │   │   │   ├── pppdebug.h
│   │   │   │   ├── ppp.h
│   │   │   │   ├── ppp_oe.c
│   │   │   │   ├── randm.c
│   │   │   │   ├── randm.h
│   │   │   │   ├── vj.c
│   │   │   │   └── vj.h
│   │   │   └── slipif.c
│   │   └── sys_arch.c
│   ├── libm
│   │   ├── arch
│   │   │   ├── i387
│   │   │   │   ├── abi.h
│   │   │   │   ├── e_acos.S
│   │   │   │   ├── e_asin.S
│   │   │   │   ├── e_atan2f.S
│   │   │   │   ├── e_atan2.S
│   │   │   │   ├── e_expf.S
│   │   │   │   ├── e_exp.S
│   │   │   │   ├── e_fmod.S
│   │   │   │   ├── e_log10f.S
│   │   │   │   ├── e_log10.S
│   │   │   │   ├── e_log2f.S
│   │   │   │   ├── e_log2.S
│   │   │   │   ├── e_logf.S
│   │   │   │   ├── e_log.S
│   │   │   │   ├── empty.S
│   │   │   │   ├── e_remainderf.S
│   │   │   │   ├── e_remainder.S
│   │   │   │   ├── e_scalbf.S
│   │   │   │   ├── e_scalb.S
│   │   │   │   ├── e_sqrtf.S
│   │   │   │   ├── e_sqrt.S
│   │   │   │   ├── fenv.c
│   │   │   │   ├── lrint.S
│   │   │   │   ├── Makefile
│   │   │   │   ├── s_atanf.S
│   │   │   │   ├── s_atan.S
│   │   │   │   ├── s_ceilf.S
│   │   │   │   ├── s_ceil.S
│   │   │   │   ├── s_copysignf.S
│   │   │   │   ├── s_copysign.S
│   │   │   │   ├── s_cosf.S
│   │   │   │   ├── s_cos.S
│   │   │   │   ├── s_finitef.S
│   │   │   │   ├── s_finite.S
│   │   │   │   ├── s_floorf.S
│   │   │   │   ├── s_floor.S
│   │   │   │   ├── shlib_version
│   │   │   │   ├── s_ilogbf.S
│   │   │   │   ├── s_ilogb.S
│   │   │   │   ├── s_log1pf.S
│   │   │   │   ├── s_log1p.S
│   │   │   │   ├── s_logbf.S
│   │   │   │   ├── s_logb.S
│   │   │   │   ├── s_modf.S
│   │   │   │   ├── s_rintf.S
│   │   │   │   ├── s_rint.S
│   │   │   │   ├── s_scalbnf.S
│   │   │   │   ├── s_scalbn.S
│   │   │   │   ├── s_significandf.S
│   │   │   │   ├── s_significand.S
│   │   │   │   ├── s_sinf.S
│   │   │   │   ├── s_sin.S
│   │   │   │   ├── s_tanf.S
│   │   │   │   └── s_tan.S
│   │   │   └── x86_64
│   │   │   └── fenv.c
│   │   ├── compat
│   │   │   ├── compat_cabs.c
│   │   │   └── compat_cabsf.c
│   │   ├── complex
│   │   │   ├── cabs.3
│   │   │   ├── cabs.c
│   │   │   ├── cabsf.c
│   │   │   ├── cacos.3
│   │   │   ├── cacos.c
│   │   │   ├── cacosf.c
│   │   │   ├── cacosh.3
│   │   │   ├── cacosh.c
│   │   │   ├── cacoshf.c
│   │   │   ├── carg.3
│   │   │   ├── carg.c
│   │   │   ├── cargf.c
│   │   │   ├── casin.3
│   │   │   ├── casin.c
│   │   │   ├── casinf.c
│   │   │   ├── casinh.3
│   │   │   ├── casinh.c
│   │   │   ├── casinhf.c
│   │   │   ├── catan.3
│   │   │   ├── catan.c
│   │   │   ├── catanf.c
│   │   │   ├── catanh.3
│   │   │   ├── catanh.c
│   │   │   ├── catanhf.c
│   │   │   ├── ccos.3
│   │   │   ├── ccos.c
│   │   │   ├── ccosf.c
│   │   │   ├── ccosh.3
│   │   │   ├── ccosh.c
│   │   │   ├── ccoshf.c
│   │   │   ├── cephes_subr.c
│   │   │   ├── cephes_subrf.c
│   │   │   ├── cephes_subrf.h
│   │   │   ├── cephes_subr.h
│   │   │   ├── cexp.3
│   │   │   ├── cexp.c
│   │   │   ├── cexpf.c
│   │   │   ├── cimag.3
│   │   │   ├── cimag.c
│   │   │   ├── cimagf.c
│   │   │   ├── cimagl.c
│   │   │   ├── clog.3
│   │   │   ├── clog.c
│   │   │   ├── clogf.c
│   │   │   ├── conj.3
│   │   │   ├── conj.c
│   │   │   ├── conjf.c
│   │   │   ├── conjl.c
│   │   │   ├── cpow.3
│   │   │   ├── cpow.c
│   │   │   ├── cpowf.c
│   │   │   ├── cproj.3
│   │   │   ├── cproj.c
│   │   │   ├── cprojf.c
│   │   │   ├── cprojl.c
│   │   │   ├── creal.3
│   │   │   ├── creal.c
│   │   │   ├── crealf.c
│   │   │   ├── creall.c
│   │   │   ├── csin.3
│   │   │   ├── csin.c
│   │   │   ├── csinf.c
│   │   │   ├── csinh.3
│   │   │   ├── csinh.c
│   │   │   ├── csinhf.c
│   │   │   ├── csqrt.3
│   │   │   ├── csqrt.c
│   │   │   ├── csqrtf.c
│   │   │   ├── ctan.3
│   │   │   ├── ctan.c
│   │   │   ├── ctanf.c
│   │   │   ├── ctanh.3
│   │   │   ├── ctanh.c
│   │   │   ├── ctanhf.c
│   │   │   └── Makefile.inc
│   │   ├── gen
│   │   │   ├── Makefile.inc
│   │   │   ├── nan.3
│   │   │   ├── nan.c
│   │   │   ├── nanf.c
│   │   │   └── nanl.c
│   │   ├── Makefile
│   │   ├── man
│   │   │   ├── acos.3
│   │   │   ├── acosh.3
│   │   │   ├── asin.3
│   │   │   ├── asinh.3
│   │   │   ├── atan2.3
│   │   │   ├── atan.3
│   │   │   ├── atanh.3
│   │   │   ├── ceil.3
│   │   │   ├── cos.3
│   │   │   ├── cosh.3
│   │   │   ├── erf.3
│   │   │   ├── exp.3
│   │   │   ├── fabs.3
│   │   │   ├── fdim.3
│   │   │   ├── feclearexcept.3
│   │   │   ├── feenableexcept.3
│   │   │   ├── fegetenv.3
│   │   │   ├── fegetround.3
│   │   │   ├── fenv.3
│   │   │   ├── floor.3
│   │   │   ├── fmax.3
│   │   │   ├── fmod.3
│   │   │   ├── frexp.3
│   │   │   ├── hypot.3
│   │   │   ├── ieee.3
│   │   │   ├── ieee_test.3
│   │   │   ├── isinff.3
│   │   │   ├── j0.3
│   │   │   ├── ldexp.3
│   │   │   ├── lgamma.3
│   │   │   ├── lrint.3
│   │   │   ├── math.3
│   │   │   ├── modf.3
│   │   │   ├── rint.3
│   │   │   ├── round.3
│   │   │   ├── sin.3
│   │   │   ├── sinh.3
│   │   │   ├── sqrt.3
│   │   │   ├── tan.3
│   │   │   ├── tanh.3
│   │   │   └── trunc.3
│   │   ├── noieee_src
│   │   │   ├── mathimpl.h
│   │   │   ├── n_acosh.c
│   │   │   ├── n_asincos.c
│   │   │   ├── n_asinh.c
│   │   │   ├── n_atan2.c
│   │   │   ├── n_atan.c
│   │   │   ├── n_atanh.c
│   │   │   ├── n_cabs.c
│   │   │   ├── n_cbrt.c
│   │   │   ├── n_cosh.c
│   │   │   ├── n_erf.c
│   │   │   ├── n_exp.c
│   │   │   ├── n_exp__E.c
│   │   │   ├── n_expm1.c
│   │   │   ├── n_floor.c
│   │   │   ├── n_fmax.c
│   │   │   ├── n_fmaxf.c
│   │   │   ├── n_fmin.c
│   │   │   ├── n_fminf.c
│   │   │   ├── n_fmod.c
│   │   │   ├── n_gamma.c
│   │   │   ├── n_j0.c
│   │   │   ├── n_j1.c
│   │   │   ├── n_jn.c
│   │   │   ├── n_lgamma.c
│   │   │   ├── n_log10.c
│   │   │   ├── n_log1p.c
│   │   │   ├── n_log.c
│   │   │   ├── n_log__L.c
│   │   │   ├── n_lround.c
│   │   │   ├── n_lroundf.c
│   │   │   ├── n_pow.c
│   │   │   ├── n_round.c
│   │   │   ├── n_roundf.c
│   │   │   ├── n_sincos.c
│   │   │   ├── n_sinh.c
│   │   │   ├── n_support.c
│   │   │   ├── n_tan.c
│   │   │   ├── n_tanh.c
│   │   │   └── trig.h
│   │   ├── shlib_version
│   │   └── src
│   │   ├── e_acos.c
│   │   ├── e_acosf.c
│   │   ├── e_acosh.c
│   │   ├── e_acoshf.c
│   │   ├── e_asin.c
│   │   ├── e_asinf.c
│   │   ├── e_atan2.c
│   │   ├── e_atan2f.c
│   │   ├── e_atanh.c
│   │   ├── e_atanhf.c
│   │   ├── e_cosh.c
│   │   ├── e_coshf.c
│   │   ├── e_exp.c
│   │   ├── e_expf.c
│   │   ├── e_fmod.c
│   │   ├── e_fmodf.c
│   │   ├── e_hypot.c
│   │   ├── e_hypotf.c
│   │   ├── e_j0.c
│   │   ├── e_j0f.c
│   │   ├── e_j1.c
│   │   ├── e_j1f.c
│   │   ├── e_jn.c
│   │   ├── e_jnf.c
│   │   ├── e_lgammaf_r.c
│   │   ├── e_lgamma_r.c
│   │   ├── e_log10.c
│   │   ├── e_log10f.c
│   │   ├── e_log2.c
│   │   ├── e_log2f.c
│   │   ├── e_log.c
│   │   ├── e_logf.c
│   │   ├── e_pow.c
│   │   ├── e_powf.c
│   │   ├── e_remainder.c
│   │   ├── e_remainderf.c
│   │   ├── e_rem_pio2.c
│   │   ├── e_rem_pio2f.c
│   │   ├── e_scalb.c
│   │   ├── e_scalbf.c
│   │   ├── e_sinh.c
│   │   ├── e_sinhf.c
│   │   ├── e_sqrt.c
│   │   ├── e_sqrtf.c
│   │   ├── k_cos.c
│   │   ├── k_cosf.c
│   │   ├── k_rem_pio2.c
│   │   ├── k_rem_pio2f.c
│   │   ├── k_sin.c
│   │   ├── k_sinf.c
│   │   ├── k_standard.c
│   │   ├── k_tan.c
│   │   ├── k_tanf.c
│   │   ├── llrint.c
│   │   ├── llrintf.c
│   │   ├── llround.c
│   │   ├── llroundf.c
│   │   ├── lrint.c
│   │   ├── lrintf.c
│   │   ├── lround.c
│   │   ├── lroundf.c
│   │   ├── math_private.h
│   │   ├── namespace.h
│   │   ├── s_asinh.c
│   │   ├── s_asinhf.c
│   │   ├── s_atan.c
│   │   ├── s_atanf.c
│   │   ├── s_cbrt.c
│   │   ├── s_cbrtf.c
│   │   ├── s_ceil.c
│   │   ├── s_ceilf.c
│   │   ├── s_copysign.c
│   │   ├── s_copysignf.c
│   │   ├── s_copysignl.c
│   │   ├── s_cos.c
│   │   ├── s_cosf.c
│   │   ├── s_erf.c
│   │   ├── s_erff.c
│   │   ├── s_exp2.c
│   │   ├── s_exp2f.c
│   │   ├── s_expm1.c
│   │   ├── s_expm1f.c
│   │   ├── s_fabs.c
│   │   ├── s_fabsf.c
│   │   ├── s_fabsl.c
│   │   ├── s_fdim.c
│   │   ├── s_finite.c
│   │   ├── s_finitef.c
│   │   ├── s_floor.c
│   │   ├── s_floorf.c
│   │   ├── s_fmax.c
│   │   ├── s_fmaxf.c
│   │   ├── s_fmaxl.c
│   │   ├── s_fmin.c
│   │   ├── s_fminf.c
│   │   ├── s_fminl.c
│   │   ├── s_frexp.c
│   │   ├── s_frexpf.c
│   │   ├── s_ilogb.c
│   │   ├── s_ilogbf.c
│   │   ├── s_infinity.c
│   │   ├── s_isinf.c
│   │   ├── s_isinff.c
│   │   ├── s_isnan.c
│   │   ├── s_isnanf.c
│   │   ├── s_ldexp.c
│   │   ├── s_ldexpf.c
│   │   ├── s_lib_version.c
│   │   ├── s_log1p.c
│   │   ├── s_log1pf.c
│   │   ├── s_logb.c
│   │   ├── s_logbf.c
│   │   ├── s_matherr.c
│   │   ├── s_modf.c
│   │   ├── s_modff.c
│   │   ├── s_nextafter.c
│   │   ├── s_nextafterf.c
│   │   ├── s_nextafterl.c
│   │   ├── s_nexttoward.c
│   │   ├── s_rint.c
│   │   ├── s_rintf.c
│   │   ├── s_round.c
│   │   ├── s_roundf.c
│   │   ├── s_scalbn.c
│   │   ├── s_scalbnf.c
│   │   ├── s_signgam.c
│   │   ├── s_significand.c
│   │   ├── s_significandf.c
│   │   ├── s_sin.c
│   │   ├── s_sinf.c
│   │   ├── s_tan.c
│   │   ├── s_tanf.c
│   │   ├── s_tanh.c
│   │   ├── s_tanhf.c
│   │   ├── s_trunc.c
│   │   ├── s_truncf.c
│   │   ├── w_acos.c
│   │   ├── w_acosf.c
│   │   ├── w_acosh.c
│   │   ├── w_acoshf.c
│   │   ├── w_asin.c
│   │   ├── w_asinf.c
│   │   ├── w_atan2.c
│   │   ├── w_atan2f.c
│   │   ├── w_atanh.c
│   │   ├── w_atanhf.c
│   │   ├── w_cosh.c
│   │   ├── w_coshf.c
│   │   ├── w_drem.c
│   │   ├── w_dremf.c
│   │   ├── w_exp.c
│   │   ├── w_expf.c
│   │   ├── w_fmod.c
│   │   ├── w_fmodf.c
│   │   ├── w_gamma.c
│   │   ├── w_gammaf.c
│   │   ├── w_gammaf_r.c
│   │   ├── w_gamma_r.c
│   │   ├── w_hypot.c
│   │   ├── w_hypotf.c
│   │   ├── w_j0.c
│   │   ├── w_j0f.c
│   │   ├── w_j1.c
│   │   ├── w_j1f.c
│   │   ├── w_jn.c
│   │   ├── w_jnf.c
│   │   ├── w_lgamma.c
│   │   ├── w_lgammaf.c
│   │   ├── w_lgammaf_r.c
│   │   ├── w_lgamma_r.c
│   │   ├── w_log10.c
│   │   ├── w_log10f.c
│   │   ├── w_log2.c
│   │   ├── w_log2f.c
│   │   ├── w_log.c
│   │   ├── w_logf.c
│   │   ├── w_pow.c
│   │   ├── w_powf.c
│   │   ├── w_remainder.c
│   │   ├── w_remainderf.c
│   │   ├── w_scalb.c
│   │   ├── w_scalbf.c
│   │   ├── w_sinh.c
│   │   ├── w_sinhf.c
│   │   ├── w_sqrt.c
│   │   └── w_sqrtf.c
│   ├── libminc
│   │   ├── abort.c
│   │   ├── arch
│   │   │   └── i386
│   │   │   └── Makefile.libc.inc
│   │   ├── calloc.c
│   │   ├── fputs.c
│   │   ├── Makefile
│   │   ├── malloc.c
│   │   └── _stdfile.c
│   ├── libminixfs
│   │   ├── cache.c
│   │   ├── fetch_credentials.c
│   │   ├── Makefile
│   │   └── minixfs.h
│   ├── libminlib
│   │   ├── dhcp_gettag.c
│   │   ├── dhcp_settag.c
│   │   ├── fslib.c
│   │   ├── fsversion.c
│   │   ├── gcov.c
│   │   ├── gcov_flush.c
│   │   ├── getngid.c
│   │   ├── getnpid.c
│   │   ├── getnprocnr.c
│   │   ├── getnucred.c
│   │   ├── getnuid.c
│   │   ├── getprocnr.c
│   │   ├── i386
│   │   │   ├── _cpufeature.c
│   │   │   ├── _cpuid.S
│   │   │   ├── get_bp.S
│   │   │   ├── getprocessor.S
│   │   │   ├── Makefile.inc
│   │   │   ├── oneC_sum.S
│   │   │   ├── read_tsc_64.c
│   │   │   └── read_tsc.S
│   │   ├── itoa.c
│   │   ├── Makefile
│   │   ├── mapdriver.c
│   │   ├── paramvalue.c
│   │   ├── pkgconfig
│   │   │   ├── Makefile
│   │   │   └── minlib.pc
│   │   ├── servxcheck.c
│   │   ├── svrctl.c
│   │   ├── tools.h
│   │   ├── u64util.c
│   │   ├── vm_memctl.c
│   │   ├── vm_query_exit.c
│   │   ├── vm_set_priv.c
│   │   └── vm_update.c
│   ├── libmthread
│   │   ├── allocate.c
│   │   ├── attribute.c
│   │   ├── condition.c
│   │   ├── event.c
│   │   ├── global.h
│   │   ├── key.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── mutex.c
│   │   ├── proto.h
│   │   ├── queue.c
│   │   ├── rwlock.c
│   │   └── scheduler.c
│   ├── libnetdriver
│   │   ├── Makefile
│   │   └── netdriver.c
│   ├── libprop
│   │   ├── Makefile
│   │   └── shlib_version
│   ├── libpuffs
│   │   ├── callcontext.c
│   │   ├── creds.c
│   │   ├── fs.h
│   │   ├── glo.h
│   │   ├── inode.c
│   │   ├── link.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── mntopts.h
│   │   ├── mount.c
│   │   ├── null.c
│   │   ├── open.c
│   │   ├── path.c
│   │   ├── path_puffs.c
│   │   ├── pnode.c
│   │   ├── protect.c
│   │   ├── proto.h
│   │   ├── puffs.3
│   │   ├── puffs.c
│   │   ├── puffs_cc.3
│   │   ├── puffs_cred.3
│   │   ├── puffs.h
│   │   ├── puffs_msgif.h
│   │   ├── puffs_node.3
│   │   ├── puffs_ops.3
│   │   ├── puffs_path.3
│   │   ├── puffs_priv.h
│   │   ├── read.c
│   │   ├── stadir.c
│   │   ├── subr.c
│   │   ├── table.c
│   │   ├── time.c
│   │   └── utility.c
│   ├── librefuse
│   │   ├── fuse.h
│   │   ├── fuse_opt.h
│   │   ├── Makefile
│   │   ├── refuse.3
│   │   ├── refuse.c
│   │   ├── refuse_opt.c
│   │   ├── shlib_version
│   │   └── TODO
│   ├── libsys
│   │   ├── alloc_util.c
│   │   ├── assert.c
│   │   ├── asynsend.c
│   │   ├── ds.c
│   │   ├── env_get_prm.c
│   │   ├── env_panic.c
│   │   ├── env_parse.c
│   │   ├── env_prefix.c
│   │   ├── fkey_ctl.c
│   │   ├── gcov.c
│   │   ├── getidle.c
│   │   ├── get_randomness.c
│   │   ├── getsysinfo.c
│   │   ├── getuptime2.c
│   │   ├── getuptime.c
│   │   ├── input.c
│   │   ├── kernel_call.c
│   │   ├── kprintf.c
│   │   ├── kputc.c
│   │   ├── kputs.c
│   │   ├── Makefile
│   │   ├── optset.c
│   │   ├── panic.c
│   │   ├── pci_attr_r16.c
│   │   ├── pci_attr_r32.c
│   │   ├── pci_attr_r8.c
│   │   ├── pci_attr_w16.c
│   │   ├── pci_attr_w32.c
│   │   ├── pci_attr_w8.c
│   │   ├── pci_del_acl.c
│   │   ├── pci_dev_name.c
│   │   ├── pci_find_dev.c
│   │   ├── pci_first_dev.c
│   │   ├── pci_get_bar.c
│   │   ├── pci.h
│   │   ├── pci_ids.c
│   │   ├── pci_init1.c
│   │   ├── pci_init.c
│   │   ├── pci_next_dev.c
│   │   ├── pci_rescan_bus.c
│   │   ├── pci_reserve.c
│   │   ├── pci_set_acl.c
│   │   ├── pci_slot_name.c
│   │   ├── profile.c
│   │   ├── profile_extern.c
│   │   ├── safecopies.c
│   │   ├── sched_start.c
│   │   ├── sched_stop.c
│   │   ├── sef.c
│   │   ├── sef_gcov.c
│   │   ├── sef_init.c
│   │   ├── sef_liveupdate.c
│   │   ├── sef_ping.c
│   │   ├── sef_signal.c
│   │   ├── ser_putc.c
│   │   ├── spin.c
│   │   ├── sqrt_approx.c
│   │   ├── stacktrace.c
│   │   ├── sys_abort.c
│   │   ├── sys_clear.c
│   │   ├── sys_cprof.c
│   │   ├── sys_endsig.c
│   │   ├── sys_eniop.c
│   │   ├── sys_exec.c
│   │   ├── sys_exit.c
│   │   ├── sys_fork.c
│   │   ├── sys_getinfo.c
│   │   ├── sys_getsig.c
│   │   ├── sys_hz.c
│   │   ├── sys_in.c
│   │   ├── sys_int86.c
│   │   ├── sys_irqctl.c
│   │   ├── sys_kill.c
│   │   ├── syslib.h
│   │   ├── sys_mcontext.c
│   │   ├── sys_memset.c
│   │   ├── sys_newmap.c
│   │   ├── sys_out.c
│   │   ├── sys_physcopy.c
│   │   ├── sys_privctl.c
│   │   ├── sys_profbuf.c
│   │   ├── sys_readbios.c
│   │   ├── sys_runctl.c
│   │   ├── sys_safecopy.c
│   │   ├── sys_safemap.c
│   │   ├── sys_schedctl.c
│   │   ├── sys_schedule.c
│   │   ├── sys_sdevio.c
│   │   ├── sys_setalarm.c
│   │   ├── sys_setgrant.c
│   │   ├── sys_sigreturn.c
│   │   ├── sys_sigsend.c
│   │   ├── sys_sprof.c
│   │   ├── sys_statectl.c
│   │   ├── sys_stime.c
│   │   ├── sys_sysctl.c
│   │   ├── sys_times.c
│   │   ├── sys_trace.c
│   │   ├── sys_umap.c
│   │   ├── sys_umap_remote.c
│   │   ├── sys_update.c
│   │   ├── sysutil.h
│   │   ├── sys_vinb.c
│   │   ├── sys_vinl.c
│   │   ├── sys_vinw.c
│   │   ├── sys_vircopy.c
│   │   ├── sys_vmctl.c
│   │   ├── sys_voutb.c
│   │   ├── sys_voutl.c
│   │   ├── sys_voutw.c
│   │   ├── sys_vsafecopy.c
│   │   ├── sys_vtimer.c
│   │   ├── taskcall.c
│   │   ├── tickdelay.c
│   │   ├── timers.c
│   │   ├── timing.c
│   │   ├── tsc_util.c
│   │   ├── vm_brk.c
│   │   ├── vm_dmacalls.c
│   │   ├── vm_exec_newmem.c
│   │   ├── vm_exit.c
│   │   ├── vm_fork.c
│   │   ├── vm_info.c
│   │   ├── vm_map_phys.c
│   │   ├── vm_notify_sig.c
│   │   ├── vm_push_sig.c
│   │   ├── vm_umap.c
│   │   ├── vm_yield_get_block.c
│   │   └── vprintf.c
│   ├── libterminfo
│   │   ├── compile.c
│   │   ├── compiled_terms.c
│   │   ├── curterm.c
│   │   ├── genhash
│   │   ├── genman
│   │   ├── genterms
│   │   ├── genthash
│   │   ├── hash.c
│   │   ├── Makefile
│   │   ├── minix-config.inc
│   │   ├── setupterm.c
│   │   ├── shlib_version
│   │   ├── term.c
│   │   ├── termcap.3
│   │   ├── termcap.c
│   │   ├── termcap.h
│   │   ├── termcap_hash.c
│   │   ├── termcap_map.c
│   │   ├── term.h
│   │   ├── terminfo.3
│   │   ├── terminfo.5.in
│   │   ├── term_private.h
│   │   ├── ti.c
│   │   ├── tparm.c
│   │   └── tputs.c
│   ├── libtimers
│   │   ├── Makefile
│   │   ├── timers.h
│   │   ├── tmrs_clr.c
│   │   ├── tmrs_exp.c
│   │   └── tmrs_set.c
│   ├── libusb
│   │   ├── Makefile
│   │   └── usb.c
│   ├── libutil
│   │   ├── compat
│   │   │   ├── compat_gepwconf.c
│   │   │   ├── compat_login.c
│   │   │   ├── compat_login_cap.c
│   │   │   ├── compat_loginx.c
│   │   │   ├── compat_logoutx.c
│   │   │   ├── compat_parsedate.c
│   │   │   ├── compat_passwd.c
│   │   │   ├── login_cap.h
│   │   │   ├── Makefile.inc
│   │   │   └── util.h
│   │   ├── compat-minix
│   │   │   └── Makefile.inc
│   │   ├── disklabel_dkcksum.3
│   │   ├── disklabel_dkcksum.c
│   │   ├── disklabel_scan.3
│   │   ├── disklabel_scan.c
│   │   ├── efun.3
│   │   ├── efun.c
│   │   ├── getbootfile.3
│   │   ├── getbootfile.c
│   │   ├── getlabelsector.3
│   │   ├── getlabelsector.c
│   │   ├── getmaxpartitions.3
│   │   ├── getmaxpartitions.c
│   │   ├── getmntopts.3
│   │   ├── getmntopts.c
│   │   ├── getrawpartition.3
│   │   ├── getrawpartition.c
│   │   ├── if_media.c
│   │   ├── login.3
│   │   ├── login.c
│   │   ├── login_cap.3
│   │   ├── login_cap.c
│   │   ├── login_tty.c
│   │   ├── loginx.3
│   │   ├── loginx.c
│   │   ├── logout.c
│   │   ├── logoutx.c
│   │   ├── logwtmp.c
│   │   ├── logwtmpx.c
│   │   ├── Makefile
│   │   ├── opendisk.3
│   │   ├── opendisk.c
│   │   ├── openpty.3
│   │   ├── parsedate.3
│   │   ├── parsedate.y
│   │   ├── passwd.c
│   │   ├── pidfile.3
│   │   ├── pidfile.c
│   │   ├── pidlock.3
│   │   ├── pidlock.c
│   │   ├── pty.c
│   │   ├── pw_getconf.3
│   │   ├── pw_init.3
│   │   ├── pw_lock.3
│   │   ├── raise_default_signal.3
│   │   ├── raise_default_signal.c
│   │   ├── secure_path.3
│   │   ├── secure_path.c
│   │   ├── shlib_version
│   │   ├── snprintb.3
│   │   ├── sockaddr_snprintf.3
│   │   ├── sockaddr_snprintf.c
│   │   ├── stat_flags.3
│   │   ├── stat_flags.c
│   │   ├── ttyaction.3
│   │   ├── ttyaction.c
│   │   ├── ttymsg.3
│   │   ├── ttymsg.c
│   │   └── util.3
│   ├── libvassert
│   │   ├── backdoor.S
│   │   ├── Makefile
│   │   ├── vassert.c
│   │   └── vassert.h
│   ├── libvtreefs
│   │   ├── glo.h
│   │   ├── inc.h
│   │   ├── inode.c
│   │   ├── inode.h
│   │   ├── link.c
│   │   ├── Makefile
│   │   ├── mount.c
│   │   ├── path.c
│   │   ├── proto.h
│   │   ├── read.c
│   │   ├── sdbm.c
│   │   ├── stadir.c
│   │   ├── table.c
│   │   ├── utility.c
│   │   └── vtreefs.c
│   ├── libz
│   │   ├── adler32.c
│   │   ├── compress.c
│   │   ├── crc32.c
│   │   ├── crc32.h
│   │   ├── deflate.c
│   │   ├── deflate.h
│   │   ├── gzclose.c
│   │   ├── gzguts.h
│   │   ├── gzlib.c
│   │   ├── gzread.c
│   │   ├── gzwrite.c
│   │   ├── infback.c
│   │   ├── inffast.c
│   │   ├── inffast.h
│   │   ├── inffixed.h
│   │   ├── inflate.c
│   │   ├── inflate.h
│   │   ├── inftrees.c
│   │   ├── inftrees.h
│   │   ├── Makefile
│   │   ├── README
│   │   ├── trees.c
│   │   ├── trees.h
│   │   ├── uncompr.c
│   │   ├── zconf.h
│   │   ├── zlib.h
│   │   ├── zutil.c
│   │   └── zutil.h
│   ├── Makefile
│   └── Makefile.inc
├── libexec
│   ├── Makefile
│   ├── Makefile.inc
│   └── makewhatis
│   ├── Makefile
│   ├── makewhatis.8
│   └── makewhatis.c
├── LICENSE
├── Makefile
├── man
│   ├── Makefile
│   ├── man1
│   │   ├── acksize.1
│   │   ├── ash.1
│   │   ├── at.1
│   │   ├── banner.1
│   │   ├── basename.1
│   │   ├── bsfilt.1
│   │   ├── cal.1
│   │   ├── calendar.1
│   │   ├── cat.1
│   │   ├── cawf.1
│   │   ├── cdiff.1
│   │   ├── chgrp.1
│   │   ├── chmod.1
│   │   ├── cksum.1
│   │   ├── clear.1
│   │   ├── cmp.1
│   │   ├── comm.1
│   │   ├── compress.1
│   │   ├── cp.1
│   │   ├── crc.1
│   │   ├── crontab.1
│   │   ├── ctags.1
│   │   ├── dd.1
│   │   ├── dev2name.1
│   │   ├── df.1
│   │   ├── dhrystone.1
│   │   ├── dosdir.1
│   │   ├── dosread.1
│   │   ├── doswrite.1
│   │   ├── du.1
│   │   ├── dumpcore.1
│   │   ├── echo.1
│   │   ├── ed.1
│   │   ├── eject.1
│   │   ├── elvis.1
│   │   ├── elvrec.1
│   │   ├── env.1
│   │   ├── expand.1
│   │   ├── expr.1
│   │   ├── factor.1
│   │   ├── file.1
│   │   ├── finger.1
│   │   ├── flexdoc.1
│   │   ├── fmt.1
│   │   ├── fold.1
│   │   ├── format.1
│   │   ├── fortune.1
│   │   ├── fsck.mfs.1
│   │   ├── head.1
│   │   ├── host.1
│   │   ├── hostaddr.1
│   │   ├── ifdef.1
│   │   ├── install.1
│   │   ├── isodir.1
│   │   ├── isoinfo.1
│   │   ├── isoread.1
│   │   ├── join.1
│   │   ├── kill.1
│   │   ├── last.1
│   │   ├── leave.1
│   │   ├── linkfarm.1
│   │   ├── loadfont.1
│   │   ├── loadkeys.1
│   │   ├── logger.1
│   │   ├── login.1
│   │   ├── look.1
│   │   ├── lp.1
│   │   ├── ls.1
│   │   ├── lspci.1
│   │   ├── mail.1
│   │   ├── Makefile
│   │   ├── mesg.1
│   │   ├── mixer.1
│   │   ├── mkfs.1
│   │   ├── mkproto.1
│   │   ├── modem.1
│   │   ├── mount.1
│   │   ├── mt.1
│   │   ├── nice.1
│   │   ├── nm.1
│   │   ├── nohup.1
│   │   ├── od.1
│   │   ├── paste.1
│   │   ├── ping.1
│   │   ├── pkg_view.1
│   │   ├── playwave.1
│   │   ├── pr.1
│   │   ├── prep.1
│   │   ├── profile.1
│   │   ├── ps.1
│   │   ├── pwd.1
│   │   ├── rcp.1
│   │   ├── readall.1
│   │   ├── recwave.1
│   │   ├── ref.1
│   │   ├── remsync.1
│   │   ├── rget.1
│   │   ├── rlogin.1
│   │   ├── rsh.1
│   │   ├── rz.1
│   │   ├── shar.1
│   │   ├── sleep.1
│   │   ├── sort.1
│   │   ├── spell.1
│   │   ├── split.1
│   │   ├── stty.1
│   │   ├── su.1
│   │   ├── sum.1
│   │   ├── svc.1
│   │   ├── synctree.1
│   │   ├── sysenv.1
│   │   ├── sz.1
│   │   ├── tail.1
│   │   ├── tee.1
│   │   ├── telnet.1
│   │   ├── template.1
│   │   ├── term.1
│   │   ├── termcap.1
│   │   ├── tget.1
│   │   ├── time.1
│   │   ├── tr.1
│   │   ├── true.1
│   │   ├── truncate.1
│   │   ├── tsort.1
│   │   ├── tty.1
│   │   ├── umount.1
│   │   ├── uname.1
│   │   ├── unexpand.1
│   │   ├── uud.1
│   │   ├── uue.1
│   │   ├── vol.1
│   │   ├── wc.1
│   │   ├── whereis.1
│   │   ├── which.1
│   │   ├── who.1
│   │   ├── write.1
│   │   ├── xargs.1
│   │   ├── yap.1
│   │   └── yes.1
│   ├── man1x
│   │   ├── awk.1x
│   │   ├── elvis.1x
│   │   ├── kermit.1x
│   │   ├── macros.1x
│   │   ├── Makefile
│   │   └── mined.1x
│   ├── man2
│   │   ├── accept.2
│   │   ├── access.2
│   │   ├── alarm.2
│   │   ├── bind.2
│   │   ├── brk.2
│   │   ├── chdir.2
│   │   ├── chmod.2
│   │   ├── chown.2
│   │   ├── chroot.2
│   │   ├── close.2
│   │   ├── connect.2
│   │   ├── creat.2
│   │   ├── dup.2
│   │   ├── execve.2
│   │   ├── exit.2
│   │   ├── fcntl.2
│   │   ├── fork.2
│   │   ├── getgid.2
│   │   ├── getitimer.2
│   │   ├── getnucred.2
│   │   ├── getpeereid.2
│   │   ├── getpeername.2
│   │   ├── getpid.2
│   │   ├── getpriority.2
│   │   ├── getsockname.2
│   │   ├── getsockopt.2
│   │   ├── gettimeofday.2
│   │   ├── getuid.2
│   │   ├── intro.2
│   │   ├── ioctl.2
│   │   ├── kill.2
│   │   ├── link.2
│   │   ├── listen.2
│   │   ├── lseek.2
│   │   ├── Makefile
│   │   ├── mkdir.2
│   │   ├── mknod.2
│   │   ├── mount.2
│   │   ├── open.2
│   │   ├── pause.2
│   │   ├── pipe.2
│   │   ├── ptrace.2
│   │   ├── read.2
│   │   ├── readlink.2
│   │   ├── reboot.2
│   │   ├── recv.2
│   │   ├── recvfrom.2
│   │   ├── recvmsg.2
│   │   ├── rename.2
│   │   ├── rmdir.2
│   │   ├── select.2
│   │   ├── send.2
│   │   ├── sendmsg.2
│   │   ├── sendto.2
│   │   ├── setsid.2
│   │   ├── setsockopt.2
│   │   ├── setuid.2
│   │   ├── shutdown.2
│   │   ├── sigaction.2
│   │   ├── sigpending.2
│   │   ├── sigprocmask.2
│   │   ├── sigsuspend.2
│   │   ├── socket.2
│   │   ├── socketpair.2
│   │   ├── statvfs.2
│   │   ├── svrctl.2
│   │   ├── symlink.2
│   │   ├── sync.2
│   │   ├── time.2
│   │   ├── times.2
│   │   ├── truncate.2
│   │   ├── umask.2
│   │   ├── uname.2
│   │   ├── unlink.2
│   │   ├── utime.2
│   │   ├── wait.2
│   │   └── write.2
│   ├── man4
│   │   ├── console.4
│   │   ├── controller.4
│   │   ├── dev.4
│   │   ├── fd.4
│   │   ├── ip.4
│   │   ├── lp.4
│   │   ├── Makefile
│   │   ├── mtio.4
│   │   ├── tty.4
│   │   └── uds.4
│   ├── man5
│   │   ├── boot.cfg.5
│   │   ├── configfile.5
│   │   ├── crontab.5
│   │   ├── dhcp.conf.5
│   │   ├── dir.5
│   │   ├── ethers.5
│   │   ├── fstab.5
│   │   ├── hosts.5
│   │   ├── httpd.conf.5
│   │   ├── http_status.5
│   │   ├── keymap.5
│   │   ├── Makefile
│   │   ├── passwd.5
│   │   ├── pkg_install.conf.5
│   │   ├── pkg_summary.5
│   │   ├── resolv.conf.5
│   │   ├── resolver.5
│   │   ├── rhosts.5
│   │   ├── serv.access.5
│   │   ├── statvfs.5
│   │   ├── syslog.conf.5
│   │   ├── system.conf.5
│   │   ├── termcap.5
│   │   ├── ttytab.5
│   │   ├── TZ.5
│   │   ├── utmp.5
│   │   └── whatis.5
│   ├── man6
│   │   └── Makefile
│   ├── man7
│   │   ├── ascii.7
│   │   ├── environ.7
│   │   ├── hier.7
│   │   ├── Makefile
│   │   ├── man.7
│   │   └── pkgsrc.7
│   ├── man8
│   │   ├── add_route.8
│   │   ├── backup.8
│   │   ├── badblocks.8
│   │   ├── boot.8
│   │   ├── btrace.8
│   │   ├── cdprobe.8
│   │   ├── checkhier.8
│   │   ├── chown.8
│   │   ├── cleantmp.8
│   │   ├── config.8
│   │   ├── cron.8
│   │   ├── dhcpd.8
│   │   ├── diskctl.8
│   │   ├── elvprsv.8
│   │   ├── fbdctl.8
│   │   ├── fdisk.8
│   │   ├── fingerd.8
│   │   ├── getty.8
│   │   ├── halt.8
│   │   ├── hgfs.8
│   │   ├── httpd.8
│   │   ├── ifconfig.8
│   │   ├── inet.8
│   │   ├── init.8
│   │   ├── intr.8
│   │   ├── irdpd.8
│   │   ├── loadramdisk.8
│   │   ├── MAKEDEV.8
│   │   ├── Makefile
│   │   ├── mknod.8
│   │   ├── netconf.8
│   │   ├── newroot.8
│   │   ├── nonamed.8
│   │   ├── ossdevlinks.8
│   │   ├── part.8
│   │   ├── partition.8
│   │   ├── poweroff.8
│   │   ├── printroot.8
│   │   ├── pr_routes.8
│   │   ├── pwdauth.8
│   │   ├── rarpd.8
│   │   ├── rdate.8
│   │   ├── readclock.8
│   │   ├── reboot.8
│   │   ├── repartition.8
│   │   ├── rlogind.8
│   │   ├── rshd.8
│   │   ├── screendump.8
│   │   ├── serial-ip.8
│   │   ├── service.8
│   │   ├── setup.8
│   │   ├── shutdown.8
│   │   ├── slip.8
│   │   ├── srccrc.8
│   │   ├── sync.8
│   │   ├── syslogd.8
│   │   ├── tcpd.8
│   │   ├── unix.8
│   │   ├── update.8
│   │   └── usage.8
│   └── man9
│   ├── macros.9
│   └── Makefile
├── sbin
│   ├── fsck
│   │   ├── exitvalues.h
│   │   ├── fsck.8
│   │   ├── fsck.c
│   │   ├── fsutil.c
│   │   ├── fsutil.h
│   │   ├── Makefile
│   │   ├── partutil.c
│   │   ├── partutil.h
│   │   ├── pathnames.h
│   │   ├── preen.c
│   │   ├── progress.c
│   │   └── progress.h
│   ├── fsck_ext2fs
│   │   ├── dir.c
│   │   ├── ext2fs_bswap.c
│   │   ├── extern.h
│   │   ├── fsck_ext2fs.8
│   │   ├── fsck.h
│   │   ├── inode.c
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── pass1b.c
│   │   ├── pass1.c
│   │   ├── pass2.c
│   │   ├── pass3.c
│   │   ├── pass4.c
│   │   ├── pass5.c
│   │   ├── setup.c
│   │   └── utilities.c
│   ├── Makefile
│   ├── Makefile.inc
│   └── newfs_ext2fs
│   ├── extern.h
│   ├── Makefile
│   ├── mke2fs.c
│   ├── newfs_ext2fs.8
│   └── newfs_ext2fs.c
├── servers
│   ├── devman
│   │   ├── bind.c
│   │   ├── buf.c
│   │   ├── device.c
│   │   ├── devinfo.h
│   │   ├── devman.h
│   │   ├── main.c
│   │   ├── Makefile
│   │   └── proto.h
│   ├── ds
│   │   ├── inc.h
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── proto.h
│   │   ├── store.c
│   │   └── store.h
│   ├── ext2
│   │   ├── balloc.c
│   │   ├── buf.h
│   │   ├── cache.c
│   │   ├── const.h
│   │   ├── fs.h
│   │   ├── glo.h
│   │   ├── ialloc.c
│   │   ├── inode.c
│   │   ├── inode.h
│   │   ├── link.c
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── mount.c
│   │   ├── open.c
│   │   ├── path.c
│   │   ├── protect.c
│   │   ├── proto.h
│   │   ├── read.c
│   │   ├── stadir.c
│   │   ├── super.c
│   │   ├── super.h
│   │   ├── table.c
│   │   ├── time.c
│   │   ├── type.h
│   │   ├── utility.c
│   │   └── write.c
│   ├── hgfs
│   │   ├── const.h
│   │   ├── dentry.c
│   │   ├── glo.h
│   │   ├── handle.c
│   │   ├── inc.h
│   │   ├── inode.c
│   │   ├── inode.h
│   │   ├── link.c
│   │   ├── lookup.c
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── mount.c
│   │   ├── name.c
│   │   ├── path.c
│   │   ├── proto.h
│   │   ├── read.c
│   │   ├── stat.c
│   │   ├── table.c
│   │   ├── type.h
│   │   ├── util.c
│   │   ├── verify.c
│   │   └── write.c
│   ├── inet
│   │   ├── buf.c
│   │   ├── clock.c
│   │   ├── const.h
│   │   ├── generic
│   │   │   ├── arp.c
│   │   │   ├── arp.h
│   │   │   ├── assert.h
│   │   │   ├── buf.h
│   │   │   ├── clock.h
│   │   │   ├── eth.c
│   │   │   ├── eth.h
│   │   │   ├── eth_int.h
│   │   │   ├── event.c
│   │   │   ├── event.h
│   │   │   ├── icmp.c
│   │   │   ├── icmp.h
│   │   │   ├── icmp_lib.h
│   │   │   ├── io.c
│   │   │   ├── io.h
│   │   │   ├── ip.c
│   │   │   ├── ip_eth.c
│   │   │   ├── ip.h
│   │   │   ├── ip_int.h
│   │   │   ├── ip_ioctl.c
│   │   │   ├── ip_lib.c
│   │   │   ├── ip_ps.c
│   │   │   ├── ipr.c
│   │   │   ├── ip_read.c
│   │   │   ├── ipr.h
│   │   │   ├── ip_write.c
│   │   │   ├── psip.c
│   │   │   ├── psip.h
│   │   │   ├── rand256.c
│   │   │   ├── rand256.h
│   │   │   ├── sr.h
│   │   │   ├── tcp.c
│   │   │   ├── tcp.h
│   │   │   ├── tcp_int.h
│   │   │   ├── tcp_lib.c
│   │   │   ├── tcp_recv.c
│   │   │   ├── tcp_send.c
│   │   │   ├── type.h
│   │   │   ├── udp.c
│   │   │   ├── udp.h
│   │   │   └── udp_int.h
│   │   ├── inet.c
│   │   ├── inet_config.c
│   │   ├── inet_config.h
│   │   ├── inet.h
│   │   ├── Makefile
│   │   ├── mnx_eth.c
│   │   ├── mq.c
│   │   ├── mq.h
│   │   ├── osdep_eth.h
│   │   ├── proto.h
│   │   ├── qp.c
│   │   ├── qp.h
│   │   ├── queryparam.c
│   │   ├── queryparam.h
│   │   ├── sr.c
│   │   ├── sr_int.h
│   │   └── version.c
│   ├── init
│   │   ├── init.c
│   │   └── Makefile
│   ├── ipc
│   │   ├── inc.h
│   │   ├── ipc.conf
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── sem.c
│   │   ├── shm.c
│   │   └── utility.c
│   ├── is
│   │   ├── dmp.c
│   │   ├── dmp_ds.c
│   │   ├── dmp_fs.c
│   │   ├── dmp_kernel.c
│   │   ├── dmp_pm.c
│   │   ├── dmp_rs.c
│   │   ├── dmp_vm.c
│   │   ├── glo.h
│   │   ├── inc.h
│   │   ├── main.c
│   │   ├── Makefile
│   │   └── proto.h
│   ├── iso9660fs
│   │   ├── buf.h
│   │   ├── cache.c
│   │   ├── const.h
│   │   ├── glo.h
│   │   ├── inc.h
│   │   ├── inode.c
│   │   ├── inode.h
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── mount.c
│   │   ├── path.c
│   │   ├── protect.c
│   │   ├── proto.h
│   │   ├── read.c
│   │   ├── stadir.c
│   │   ├── super.c
│   │   ├── super.h
│   │   ├── table.c
│   │   └── utility.c
│   ├── lwip
│   │   ├── driver.c
│   │   ├── driver.h
│   │   ├── eth.c
│   │   ├── inet_config.c
│   │   ├── inet_config.h
│   │   ├── lwip.c
│   │   ├── Makefile
│   │   ├── proto.h
│   │   ├── raw_ip.c
│   │   ├── socket.c
│   │   ├── socket.h
│   │   ├── tcp.c
│   │   └── udp.c
│   ├── Makefile
│   ├── Makefile.inc
│   ├── mfs
│   │   ├── buf.h
│   │   ├── cache.c
│   │   ├── clean.h
│   │   ├── const.h
│   │   ├── fs.h
│   │   ├── glo.h
│   │   ├── inode.c
│   │   ├── inode.h
│   │   ├── link.c
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── mfsdir.h
│   │   ├── misc.c
│   │   ├── mount.c
│   │   ├── open.c
│   │   ├── path.c
│   │   ├── pipe.c
│   │   ├── protect.c
│   │   ├── proto.h
│   │   ├── read.c
│   │   ├── stadir.c
│   │   ├── stats.c
│   │   ├── super.c
│   │   ├── super.h
│   │   ├── table.c
│   │   ├── time.c
│   │   ├── type.h
│   │   ├── utility.c
│   │   └── write.c
│   ├── pfs
│   │   ├── buffer.c
│   │   ├── buf.h
│   │   ├── const.h
│   │   ├── dev_uds.c
│   │   ├── fs.h
│   │   ├── glo.h
│   │   ├── inc.h
│   │   ├── inode.c
│   │   ├── inode.h
│   │   ├── link.c
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── mount.c
│   │   ├── open.c
│   │   ├── proto.h
│   │   ├── read.c
│   │   ├── stadir.c
│   │   ├── super.c
│   │   ├── table.c
│   │   ├── uds.c
│   │   ├── uds.h
│   │   └── utility.c
│   ├── pm
│   │   ├── alarm.c
│   │   ├── break.c
│   │   ├── const.h
│   │   ├── exec.c
│   │   ├── forkexit.c
│   │   ├── getset.c
│   │   ├── glo.h
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── mcontext.c
│   │   ├── misc.c
│   │   ├── mproc.h
│   │   ├── param.h
│   │   ├── pm.h
│   │   ├── profile.c
│   │   ├── proto.h
│   │   ├── schedule.c
│   │   ├── signal.c
│   │   ├── table.c
│   │   ├── time.c
│   │   ├── trace.c
│   │   ├── type.h
│   │   └── utility.c
│   ├── procfs
│   │   ├── buf.c
│   │   ├── const.h
│   │   ├── cpuinfo.c
│   │   ├── cpuinfo.h
│   │   ├── glo.h
│   │   ├── inc.h
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── NOTES
│   │   ├── pid.c
│   │   ├── proto.h
│   │   ├── root.c
│   │   ├── tree.c
│   │   ├── type.h
│   │   └── util.c
│   ├── rs
│   │   ├── const.h
│   │   ├── error.c
│   │   ├── exec.c
│   │   ├── exec.h
│   │   ├── glo.h
│   │   ├── inc.h
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── manager.c
│   │   ├── memory.c
│   │   ├── proto.h
│   │   ├── request.c
│   │   ├── table.c
│   │   ├── type.h
│   │   └── utility.c
│   ├── sched
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── proto.h
│   │   ├── sched.h
│   │   ├── schedproc.h
│   │   ├── schedule.c
│   │   └── utility.c
│   ├── vfs
│   │   ├── comm.c
│   │   ├── comm.h
│   │   ├── const.h
│   │   ├── coredump.c
│   │   ├── device.c
│   │   ├── dmap.c
│   │   ├── dmap.h
│   │   ├── exec.c
│   │   ├── exec.h
│   │   ├── filedes.c
│   │   ├── file.h
│   │   ├── fproc.h
│   │   ├── fscall.c
│   │   ├── fs.h
│   │   ├── gcov.c
│   │   ├── glo.h
│   │   ├── job.h
│   │   ├── link.c
│   │   ├── lock.c
│   │   ├── lock.h
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── mount.c
│   │   ├── open.c
│   │   ├── param.h
│   │   ├── path.c
│   │   ├── path.h
│   │   ├── pipe.c
│   │   ├── protect.c
│   │   ├── proto.h
│   │   ├── read.c
│   │   ├── request.c
│   │   ├── request.h
│   │   ├── scratchpad.h
│   │   ├── select.c
│   │   ├── select.h
│   │   ├── stadir.c
│   │   ├── table.c
│   │   ├── threads.h
│   │   ├── time.c
│   │   ├── tll.c
│   │   ├── tll.h
│   │   ├── utility.c
│   │   ├── vmnt.c
│   │   ├── vmnt.h
│   │   ├── vnode.c
│   │   ├── vnode.h
│   │   ├── worker.c
│   │   └── write.c
│   └── vm
│   ├── addravl.c
│   ├── addravl_defs.h
│   ├── addravl.h
│   ├── alloc.c
│   ├── arch
│   │   └── i386
│   │   ├── arch_vmproc.h
│   │   ├── Makefile.inc
│   │   ├── memory.h
│   │   ├── pagefaults.h
│   │   ├── pagetable.c
│   │   ├── pagetable.h
│   │   ├── util.S
│   │   └── vm.c
│   ├── break.c
│   ├── cavl_if.h
│   ├── cavl_impl.h
│   ├── exec.c
│   ├── exit.c
│   ├── fork.c
│   ├── glo.h
│   ├── main.c
│   ├── Makefile
│   ├── memlist.h
│   ├── mmap.c
│   ├── pagefaults.c
│   ├── pagerange.h
│   ├── physravl.c
│   ├── physravl_defs.h
│   ├── physravl.h
│   ├── phys_region.h
│   ├── proto.h
│   ├── queryexit.c
│   ├── regionavl.c
│   ├── regionavl_defs.h
│   ├── regionavl.h
│   ├── region.c
│   ├── region.h
│   ├── rs.c
│   ├── sanitycheck.h
│   ├── signal.c
│   ├── slaballoc.c
│   ├── unavl.h
│   ├── util.h
│   ├── utility.c
│   ├── vm.h
│   ├── vmproc.h
│   ├── yieldedavl.c
│   ├── yieldedavl_defs.h
│   ├── yieldedavl.h
│   └── yielded.h
├── share
│   ├── Makefile
│   ├── mk
│   │   ├── bsd.dep.mk
│   │   ├── bsd.doc.mk
│   │   ├── bsd.files.mk
│   │   ├── bsd.inc.mk
│   │   ├── bsd.info.mk
│   │   ├── bsd.init.mk
│   │   ├── bsd.kinc.mk
│   │   ├── bsd.klinks.mk
│   │   ├── bsd.lib.mk
│   │   ├── bsd.links.mk
│   │   ├── bsd.man.mk
│   │   ├── bsd.obj.mk
│   │   ├── bsd.own.mk
│   │   ├── bsd.prog.mk
│   │   ├── bsd.subdir.mk
│   │   ├── bsd.sys.mk
│   │   ├── Makefile
│   │   ├── minix.bootprog.mk
│   │   ├── minix.gcc.mk
│   │   ├── minix.gcov.mk
│   │   ├── minix.service.mk
│   │   ├── pkgsrchooks.mk
│   │   └── sys.mk
│   ├── terminfo
│   │   ├── Makefile
│   │   └── terminfo
│   └── zoneinfo
│   ├── africa
│   ├── antarctica
│   ├── asia
│   ├── australasia
│   ├── backward
│   ├── etcetera
│   ├── europe
│   ├── factory
│   ├── iso3166.tab
│   ├── leapseconds
│   ├── Makefile
│   ├── northamerica
│   ├── pacificnew
│   ├── solar87
│   ├── solar88
│   ├── solar89
│   ├── southamerica
│   ├── systemv
│   ├── yearistype.sh
│   └── zone.tab
├── sys
│   ├── arch
│   │   ├── i386
│   │   │   ├── include
│   │   │   │   ├── bootinfo.h
│   │   │   │   ├── cdefs.h
│   │   │   │   ├── cpu.h
│   │   │   │   ├── loadfile_machdep.h
│   │   │   │   ├── multiboot.h
│   │   │   │   ├── pio.h
│   │   │   │   └── rwlock.h
│   │   │   └── stand
│   │   │   ├── boot
│   │   │   │   ├── biosboot
│   │   │   │   │   └── Makefile
│   │   │   │   ├── biosboot.S
│   │   │   │   ├── boot2.c
│   │   │   │   ├── conf.c
│   │   │   │   ├── devopen.c
│   │   │   │   ├── devopen.h
│   │   │   │   ├── Makefile
│   │   │   │   ├── Makefile.boot
│   │   │   │   └── version
│   │   │   ├── bootxx
│   │   │   │   ├── boot1.c
│   │   │   │   ├── bootxx_ext2fs
│   │   │   │   │   └── Makefile
│   │   │   │   ├── bootxx_ffsv1
│   │   │   │   │   └── Makefile
│   │   │   │   ├── bootxx_ffsv2
│   │   │   │   │   └── Makefile
│   │   │   │   ├── bootxx_lfsv1
│   │   │   │   │   └── Makefile
│   │   │   │   ├── bootxx_lfsv2
│   │   │   │   │   └── Makefile
│   │   │   │   ├── bootxx_minixfs3
│   │   │   │   │   └── Makefile
│   │   │   │   ├── bootxx_msdos
│   │   │   │   │   └── Makefile
│   │   │   │   ├── bootxx.S
│   │   │   │   ├── bootxx_ustarfs
│   │   │   │   │   └── Makefile
│   │   │   │   ├── label.S
│   │   │   │   ├── Makefile
│   │   │   │   ├── Makefile.bootxx
│   │   │   │   └── pbr.S
│   │   │   ├── cdboot
│   │   │   │   ├── cdboot.S
│   │   │   │   └── Makefile
│   │   │   ├── lib
│   │   │   │   ├── biosdelay.S
│   │   │   │   ├── biosdisk.c
│   │   │   │   ├── biosdisk.h
│   │   │   │   ├── biosdisk_ll.c
│   │   │   │   ├── biosdisk_ll.h
│   │   │   │   ├── bios_disk.S
│   │   │   │   ├── biosgetrtc.S
│   │   │   │   ├── biosgetsystime.S
│   │   │   │   ├── biosmca.h
│   │   │   │   ├── biosmca.S
│   │   │   │   ├── biosmemps2.S
│   │   │   │   ├── biosmem.S
│   │   │   │   ├── biosmemx.S
│   │   │   │   ├── biospci.c
│   │   │   │   ├── bios_pci.S
│   │   │   │   ├── biosreboot.S
│   │   │   │   ├── biosvbe.S
│   │   │   │   ├── biosvideomode.S
│   │   │   │   ├── bootinfo_biosgeom.c
│   │   │   │   ├── bootinfo.c
│   │   │   │   ├── bootinfo.h
│   │   │   │   ├── bootinfo_memmap.c
│   │   │   │   ├── bootmenu.c
│   │   │   │   ├── bootmenu.h
│   │   │   │   ├── bootmod.h
│   │   │   │   ├── boot_params.S
│   │   │   │   ├── comio_direct.c
│   │   │   │   ├── comio_direct.h
│   │   │   │   ├── comio.S
│   │   │   │   ├── conio.S
│   │   │   │   ├── cpufunc.h
│   │   │   │   ├── cpufunc.S
│   │   │   │   ├── crt
│   │   │   │   │   └── dos
│   │   │   │   │   ├── doscommain.c
│   │   │   │   │   └── start_dos.S
│   │   │   │   ├── diskbuf.c
│   │   │   │   ├── diskbuf.h
│   │   │   │   ├── dosfile.c
│   │   │   │   ├── dosfile.h
│   │   │   │   ├── dos_file.S
│   │   │   │   ├── dump_eax.S
│   │   │   │   ├── exec.c
│   │   │   │   ├── gatea20.c
│   │   │   │   ├── getextmemx.c
│   │   │   │   ├── getsecs.c
│   │   │   │   ├── isadma.c
│   │   │   │   ├── isadmavar.h
│   │   │   │   ├── isapnp.c
│   │   │   │   ├── isapnpvar.h
│   │   │   │   ├── libi386.h
│   │   │   │   ├── Makefile
│   │   │   │   ├── Makefile.inc
│   │   │   │   ├── menuutils.c
│   │   │   │   ├── message32.S
│   │   │   │   ├── message.S
│   │   │   │   ├── multiboot.S
│   │   │   │   ├── netif
│   │   │   │   │   ├── 3c509.c
│   │   │   │   │   ├── 3c509.h
│   │   │   │   │   ├── 3c590.c
│   │   │   │   │   ├── 3c90xb.c
│   │   │   │   │   ├── am7990.c
│   │   │   │   │   ├── dp8390.c
│   │   │   │   │   ├── dp8390.h
│   │   │   │   │   ├── elink3.c
│   │   │   │   │   ├── etherdrv.h
│   │   │   │   │   ├── i82557.c
│   │   │   │   │   ├── lance.h
│   │   │   │   │   ├── Makefile.inc
│   │   │   │   │   ├── ne.c
│   │   │   │   │   ├── ne.h
│   │   │   │   │   ├── netif_small.c
│   │   │   │   │   ├── netif_small.h
│   │   │   │   │   ├── pcnet_isapnp.c
│   │   │   │   │   ├── pcnet_pci.c
│   │   │   │   │   └── wd80x3.c
│   │   │   │   ├── parseutils.c
│   │   │   │   ├── pcio.c
│   │   │   │   ├── pcivar.h
│   │   │   │   ├── pread.c
│   │   │   │   ├── printmemlist.c
│   │   │   │   ├── putstr32.S
│   │   │   │   ├── putstr.S
│   │   │   │   ├── pvcopy.S
│   │   │   │   ├── rasops.c
│   │   │   │   ├── realprot.S
│   │   │   │   ├── startprog.S
│   │   │   │   ├── test
│   │   │   │   │   ├── biosdisk_user.c
│   │   │   │   │   ├── biosdisk_user.h
│   │   │   │   │   ├── ether_bpf.c
│   │   │   │   │   ├── Makefile.satest
│   │   │   │   │   ├── pci_user.c
│   │   │   │   │   ├── sanamespace.h
│   │   │   │   │   └── stand_user.c
│   │   │   │   ├── vbe.c
│   │   │   │   └── vbe.h
│   │   │   └── mbr
│   │   │   ├── gptmbr
│   │   │   │   └── Makefile
│   │   │   ├── gptmbr.S
│   │   │   ├── gpt.S
│   │   │   ├── Makefile
│   │   │   ├── Makefile.mbr
│   │   │   ├── mbr
│   │   │   │   └── Makefile
│   │   │   ├── mbr_bootsel
│   │   │   │   └── Makefile
│   │   │   ├── mbr_com0
│   │   │   │   └── Makefile
│   │   │   ├── mbr_com0_9600
│   │   │   │   └── Makefile
│   │   │   ├── mbr_ext
│   │   │   │   └── Makefile
│   │   │   ├── mbr_gpt
│   │   │   │   └── Makefile
│   │   │   ├── mbr_gpt_com0
│   │   │   │   └── Makefile
│   │   │   └── mbr.S
│   │   └── x86
│   │   └── include
│   │   ├── bootinfo.h
│   │   ├── cpu.h
│   │   ├── loadfile_machdep.h
│   │   ├── pio.h
│   │   └── rwlock.h
│   ├── conf
│   │   ├── newvers_stand.sh
│   │   └── osrelease.sh
│   ├── dev
│   │   └── ic
│   │   ├── comreg.h
│   │   └── ns16550reg.h
│   ├── fs
│   │   ├── cd9660
│   │   │   └── iso.h
│   │   └── msdosfs
│   │   ├── bpb.h
│   │   └── direntry.h
│   ├── lib
│   │   ├── libkern
│   │   │   └── libkern.h
│   │   ├── libsa
│   │   │   ├── alloc.c
│   │   │   ├── arp.c
│   │   │   ├── bootparam.c
│   │   │   ├── bootparam.h
│   │   │   ├── bootp.c
│   │   │   ├── bootp.h
│   │   │   ├── byteorder.c
│   │   │   ├── byteorder.h
│   │   │   ├── cd9660.c
│   │   │   ├── cd9660.h
│   │   │   ├── checkpasswd.c
│   │   │   ├── closeall.c
│   │   │   ├── close.c
│   │   │   ├── cread.c
│   │   │   ├── dev.c
│   │   │   ├── dev_net.c
│   │   │   ├── dev_net.h
│   │   │   ├── disklabel.c
│   │   │   ├── dkcksum.c
│   │   │   ├── dosfs.c
│   │   │   ├── dosfs.h
│   │   │   ├── errno.c
│   │   │   ├── ether.c
│   │   │   ├── ether_sprintf.c
│   │   │   ├── exec.c
│   │   │   ├── exit.c
│   │   │   ├── ext2fs.c
│   │   │   ├── ext2fs.h
│   │   │   ├── ffsv1.c
│   │   │   ├── ffsv2.c
│   │   │   ├── files.c
│   │   │   ├── fstat.c
│   │   │   ├── getfile.c
│   │   │   ├── gets.c
│   │   │   ├── globals.c
│   │   │   ├── ioctl.c
│   │   │   ├── iodesc.h
│   │   │   ├── ip.c
│   │   │   ├── ip_cksum.c
│   │   │   ├── lfs.h
│   │   │   ├── lfsv1.c
│   │   │   ├── lfsv2.c
│   │   │   ├── loadfile_aout.c
│   │   │   ├── loadfile.c
│   │   │   ├── loadfile_ecoff.c
│   │   │   ├── loadfile_elf32.c
│   │   │   ├── loadfile_elf64.c
│   │   │   ├── loadfile.h
│   │   │   ├── lookup_elf32.c
│   │   │   ├── lookup_elf64.c
│   │   │   ├── ls.c
│   │   │   ├── lseek.c
│   │   │   ├── Makefile
│   │   │   ├── Makefile.inc
│   │   │   ├── minixfs3.c
│   │   │   ├── minixfs3.h
│   │   │   ├── net.c
│   │   │   ├── net.h
│   │   │   ├── netif.c
│   │   │   ├── netif.h
│   │   │   ├── nfs.c
│   │   │   ├── nfs.h
│   │   │   ├── nfsv2.h
│   │   │   ├── nullfs.c
│   │   │   ├── open.c
│   │   │   ├── panic.c
│   │   │   ├── printf.c
│   │   │   ├── qsort.c
│   │   │   ├── rarp.c
│   │   │   ├── read.c
│   │   │   ├── rpc.c
│   │   │   ├── rpc.h
│   │   │   ├── rpcv2.h
│   │   │   ├── saerrno.h
│   │   │   ├── saioctl.h
│   │   │   ├── snprintf.c
│   │   │   ├── sprintf.c
│   │   │   ├── stand.h
│   │   │   ├── stat.c
│   │   │   ├── strerror.c
│   │   │   ├── subr_prf.c
│   │   │   ├── tftp.c
│   │   │   ├── tftp.h
│   │   │   ├── twiddle.c
│   │   │   ├── udp.c
│   │   │   ├── ufs.c
│   │   │   ├── ufs.h
│   │   │   ├── ustarfs.c
│   │   │   ├── ustarfs.h
│   │   │   ├── vsprintf.c
│   │   │   ├── write.c
│   │   │   └── xlat_mbr_fstype.c
│   │   └── libz
│   │   ├── libz.h
│   │   ├── Makefile
│   │   ├── Makefile.inc
│   │   └── zalloc.c
│   ├── Makefile
│   ├── net
│   │   ├── radix.h
│   │   └── route.h
│   ├── netinet
│   │   ├── in.h
│   │   ├── in_systm.h
│   │   ├── ip.h
│   │   ├── ip_var.h
│   │   ├── udp.h
│   │   └── udp_var.h
│   ├── stdlib.h
│   └── sys
│   ├── boot_flag.h
│   ├── condvar.h
│   ├── disklabel.h
│   ├── exec.h
│   ├── mount.h
│   ├── mutex.h
│   ├── reboot.h
│   ├── rwlock.h
│   ├── stat.h
│   └── stdarg.h
├── test
│   ├── blocktest
│   │   ├── blocktest.c
│   │   ├── Makefile
│   │   ├── Makefile.inc
│   │   ├── README
│   │   ├── support.sh
│   │   ├── system.conf
│   │   └── test.sh
│   ├── common.c
│   ├── ds
│   │   ├── down
│   │   ├── dstest.c
│   │   ├── inc.h
│   │   ├── Makefile
│   │   ├── README
│   │   ├── run
│   │   ├── subs.c
│   │   └── system.conf
│   ├── fbdtest
│   │   ├── Makefile
│   │   ├── rwblocks.c
│   │   └── test.sh
│   ├── ipc
│   │   ├── lib
│   │   │   ├── ipcmsg.h
│   │   │   ├── ipcsem.h
│   │   │   ├── ipcshm.h
│   │   │   ├── libipc.c
│   │   │   ├── Makefile
│   │   │   ├── parse_opts.c
│   │   │   ├── rmobj.c
│   │   │   ├── rmobj.h
│   │   │   ├── test.h
│   │   │   ├── tst_res.c
│   │   │   ├── tst_sig.c
│   │   │   ├── tst_tmpdir.c
│   │   │   └── usctest.h
│   │   ├── Makefile
│   │   ├── semctl
│   │   │   ├── Makefile
│   │   │   ├── semctl01.c
│   │   │   ├── semctl02.c
│   │   │   ├── semctl03.c
│   │   │   ├── semctl04.c
│   │   │   ├── semctl05.c
│   │   │   ├── semctl06.c
│   │   │   ├── semctl07.c
│   │   │   └── test.sh
│   │   ├── semget
│   │   │   ├── Makefile
│   │   │   ├── semget01.c
│   │   │   ├── semget02.c
│   │   │   ├── semget03.c
│   │   │   ├── semget05.c
│   │   │   ├── semget06.c
│   │   │   └── test.sh
│   │   ├── semop
│   │   │   ├── Makefile
│   │   │   ├── semop01.c
│   │   │   ├── semop02.c
│   │   │   ├── semop03.c
│   │   │   ├── semop04.c
│   │   │   ├── semop05.c
│   │   │   └── test.sh
│   │   ├── shmat
│   │   │   ├── Makefile
│   │   │   ├── shmat01.c
│   │   │   ├── shmat02.c
│   │   │   ├── shmat03.c
│   │   │   └── test.sh
│   │   ├── shmctl
│   │   │   ├── Makefile
│   │   │   ├── shmctl01.c
│   │   │   ├── shmctl02.c
│   │   │   ├── shmctl03.c
│   │   │   ├── shmctl04.c
│   │   │   └── test.sh
│   │   ├── shmdt
│   │   │   ├── Makefile
│   │   │   ├── shmdt01.c
│   │   │   ├── shmdt02.c
│   │   │   └── test.sh
│   │   ├── shmget
│   │   │   ├── Makefile
│   │   │   ├── shmget01.c
│   │   │   ├── shmget02.c
│   │   │   ├── shmget04.c
│   │   │   ├── shmget05.c
│   │   │   └── test.sh
│   │   ├── shmt
│   │   │   ├── Makefile
│   │   │   ├── shmt01.c
│   │   │   ├── shmt02.c
│   │   │   ├── shmt03.c
│   │   │   ├── shmt04.c
│   │   │   ├── shmt05.c
│   │   │   ├── shmt06.c
│   │   │   ├── shmt07.c
│   │   │   ├── shmt08.c
│   │   │   ├── shmt10.c
│   │   │   └── test.sh
│   │   └── test.sh
│   ├── Makefile
│   ├── run
│   ├── safecopy
│   │   ├── down
│   │   ├── grantor.c
│   │   ├── inc.h
│   │   ├── Makefile
│   │   ├── README
│   │   ├── requestor.c
│   │   ├── run
│   │   └── system.conf
│   ├── safemap
│   │   ├── down
│   │   ├── grantor.c
│   │   ├── inc.h
│   │   ├── Makefile
│   │   ├── README
│   │   ├── requestor.c
│   │   ├── run
│   │   └── system.conf
│   ├── safeperf
│   │   ├── down
│   │   ├── grantor.c
│   │   ├── inc.h
│   │   ├── Makefile
│   │   ├── README
│   │   ├── requestor.c
│   │   ├── run
│   │   └── system.conf
│   ├── scancodes
│   │   ├── Makefile
│   │   └── test-scancodes.c
│   ├── select
│   │   ├── Makefile
│   │   ├── speed.c
│   │   ├── test00.c
│   │   ├── test01.c
│   │   ├── test02.c
│   │   ├── test03.c
│   │   ├── test04_cli.c
│   │   ├── test04_srv.c
│   │   ├── test05_cli.c
│   │   ├── test05_srv.c
│   │   ├── test06_cli.c
│   │   ├── test06_srv.c
│   │   ├── test07_cli.c
│   │   ├── test07_srv.c
│   │   ├── test08_cli.c
│   │   ├── test08_srv.c
│   │   ├── test09.c
│   │   ├── test10.c
│   │   ├── test11.c
│   │   ├── test12.c
│   │   ├── test13a.c
│   │   ├── test13b.c
│   │   └── test14.c
│   ├── t10a.c
│   ├── t11a.c
│   ├── t11b.c
│   ├── t40a.c
│   ├── t40b.c
│   ├── t40c.c
│   ├── t40d.c
│   ├── t40e.c
│   ├── t40f.c
│   ├── t60a.c
│   ├── t60b.c
│   ├── test10.c
│   ├── test11.c
│   ├── test12.c
│   ├── test13.c
│   ├── test14.c
│   ├── test15.c
│   ├── test16.c
│   ├── test17.c
│   ├── test18.c
│   ├── test19.c
│   ├── test1.c
│   ├── test20.c
│   ├── test21.c
│   ├── test22.c
│   ├── test23.c
│   ├── test24.c
│   ├── test25.c
│   ├── test26.c
│   ├── test27.c
│   ├── test28.c
│   ├── test29.c
│   ├── test2.c
│   ├── test30.c
│   ├── test31.c
│   ├── test32.c
│   ├── test33.c
│   ├── test34.c
│   ├── test35.c
│   ├── test36.c
│   ├── test37.c
│   ├── test38.c
│   ├── test39.c
│   ├── test3.c
│   ├── test40.c
│   ├── test41.c
│   ├── test42.c
│   ├── test43.c
│   ├── test44.c
│   ├── test45.c
│   ├── test45.h
│   ├── test46.c
│   ├── test47.c
│   ├── test48.c
│   ├── test49.c
│   ├── test4.c
│   ├── test50.c
│   ├── test51.c
│   ├── test52.c
│   ├── test53.c
│   ├── test54.c
│   ├── test55.c
│   ├── test56.c
│   ├── test57.c
│   ├── test57loop.S
│   ├── test58.c
│   ├── test59.c
│   ├── test5.c
│   ├── test60.c
│   ├── test61.c
│   ├── test6.c
│   ├── test7.c
│   ├── test8.c
│   ├── test9.c
│   ├── testinterp.sh
│   ├── testsh1.sh
│   └── testsh2.sh
├── tools
│   ├── chrootmake.sh
│   ├── issue.install
│   ├── Makefile
│   ├── mkboot
│   ├── nbsd.config
│   ├── nbsd_diff.sh
│   ├── nbsd_ports
│   ├── packages.install
│   ├── release
│   │   └── cd
│   │   └── README.TXT
│   ├── release.functions
│   ├── release.sh
│   ├── tell_config
│   └── update_bootcfg.sh
├── usr.bin
│   ├── apropos
│   │   ├── apropos.1
│   │   ├── apropos.c
│   │   └── Makefile
│   ├── bzip2
│   │   └── Makefile
│   ├── bzip2recover
│   │   └── Makefile
│   ├── chpass
│   │   ├── chpass.1
│   │   ├── chpass.c
│   │   ├── chpass.h
│   │   ├── edit.c
│   │   ├── field.c
│   │   ├── Makefile
│   │   ├── pathnames.h
│   │   ├── pw_yp.c
│   │   ├── table.c
│   │   └── util.c
│   ├── indent
│   │   ├── args.c
│   │   ├── indent.1
│   │   ├── indent.c
│   │   ├── indent_codes.h
│   │   ├── indent_globs.h
│   │   ├── io.c
│   │   ├── lexi.c
│   │   ├── Makefile
│   │   ├── parse.c
│   │   ├── pr_comment.c
│   │   └── README
│   ├── m4
│   │   ├── eval.c
│   │   ├── expr.c
│   │   ├── extern.h
│   │   ├── gnum4.c
│   │   ├── lib
│   │   │   ├── ohash_create_entry.c
│   │   │   ├── ohash_delete.c
│   │   │   ├── ohash_do.c
│   │   │   ├── ohash_entries.c
│   │   │   ├── ohash_enum.c
│   │   │   ├── ohash.h
│   │   │   ├── ohash_init.3
│   │   │   ├── ohash_init.c
│   │   │   ├── ohash_interval.3
│   │   │   ├── ohash_interval.c
│   │   │   ├── ohash_int.h
│   │   │   ├── ohash_lookup_interval.c
│   │   │   ├── ohash_lookup_memory.c
│   │   │   ├── ohash_qlookup.c
│   │   │   ├── ohash_qlookupi.c
│   │   │   └── strtonum.c
│   │   ├── look.c
│   │   ├── m4.1
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── mdef.h
│   │   ├── misc.c
│   │   ├── NOTES
│   │   ├── parser.y
│   │   ├── pathnames.h
│   │   ├── PSD.doc
│   │   │   └── Makefile
│   │   ├── stdd.h
│   │   ├── TEST
│   │   │   ├── ack.m4
│   │   │   ├── hanoi.m4
│   │   │   ├── hash.m4
│   │   │   ├── math.m4
│   │   │   ├── sqroot.m4
│   │   │   ├── string.m4
│   │   │   └── test.m4
│   │   ├── tokenizer.l
│   │   └── trace.c
│   ├── Makefile
│   ├── Makefile.inc
│   ├── man
│   │   ├── Makefile
│   │   ├── man.1
│   │   ├── man.c
│   │   ├── man.conf.5
│   │   ├── manconf.c
│   │   ├── manconf.h
│   │   └── pathnames.h
│   ├── mdocml
│   │   ├── bin
│   │   │   ├── Makefile
│   │   │   ├── Makefile.inc
│   │   │   └── mandoc
│   │   │   └── Makefile
│   │   ├── dist
│   │   │   ├── arch.c
│   │   │   ├── arch.in
│   │   │   ├── att.c
│   │   │   ├── att.in
│   │   │   ├── chars.c
│   │   │   ├── chars.h
│   │   │   ├── chars.in
│   │   │   ├── compat.c
│   │   │   ├── config.h.post
│   │   │   ├── config.h.pre
│   │   │   ├── example.style.css
│   │   │   ├── external.png.uu
│   │   │   ├── html.c
│   │   │   ├── html.h
│   │   │   ├── lib.c
│   │   │   ├── lib.in
│   │   │   ├── libmandoc.h
│   │   │   ├── libman.h
│   │   │   ├── libmdoc.h
│   │   │   ├── libroff.h
│   │   │   ├── main.c
│   │   │   ├── main.h
│   │   │   ├── Makefile
│   │   │   ├── man.3
│   │   │   ├── man.7
│   │   │   ├── man_argv.c
│   │   │   ├── man.c
│   │   │   ├── mandoc
│   │   │   ├── mandoc.1
│   │   │   ├── mandoc.c
│   │   │   ├── mandoc_char.7
│   │   │   ├── mandoc.h
│   │   │   ├── man.h
│   │   │   ├── man_hash.c
│   │   │   ├── man_html.c
│   │   │   ├── man_macro.c
│   │   │   ├── man_term.c
│   │   │   ├── man_validate.c
│   │   │   ├── mdoc.3
│   │   │   ├── mdoc.7
│   │   │   ├── mdoc_argv.c
│   │   │   ├── mdoc.c
│   │   │   ├── mdoc.h
│   │   │   ├── mdoc_hash.c
│   │   │   ├── mdoc_html.c
│   │   │   ├── mdoc_macro.c
│   │   │   ├── mdoc_strings.c
│   │   │   ├── mdoc_term.c
│   │   │   ├── mdoc_validate.c
│   │   │   ├── msec.c
│   │   │   ├── msec.in
│   │   │   ├── out.c
│   │   │   ├── out.h
│   │   │   ├── roff.3
│   │   │   ├── roff.7
│   │   │   ├── roff.c
│   │   │   ├── roff.h
│   │   │   ├── st.c
│   │   │   ├── st.in
│   │   │   ├── tbl.7
│   │   │   ├── tbl.c
│   │   │   ├── tbl_data.c
│   │   │   ├── tbl_html.c
│   │   │   ├── tbl_layout.c
│   │   │   ├── tbl_opts.c
│   │   │   ├── tbl_term.c
│   │   │   ├── term_ascii.c
│   │   │   ├── term.c
│   │   │   ├── term.h
│   │   │   ├── term_ps.c
│   │   │   ├── test-strlcat.c
│   │   │   ├── test-strlcpy.c
│   │   │   ├── tree.c
│   │   │   ├── vol.c
│   │   │   └── vol.in
│   │   ├── lib
│   │   │   ├── libman
│   │   │   │   └── Makefile
│   │   │   ├── libmdoc
│   │   │   │   └── Makefile
│   │   │   ├── libroff
│   │   │   │   └── Makefile
│   │   │   ├── Makefile
│   │   │   └── Makefile.inc
│   │   ├── Makefile
│   │   ├── Makefile.inc
│   │   ├── man
│   │   │   └── Makefile
│   │   └── prepare-import.sh
│   ├── ministat
│   │   ├── chameleon
│   │   ├── iguana
│   │   ├── Makefile
│   │   ├── ministat.1
│   │   ├── ministat.c
│   │   └── README
│   ├── mkdep
│   │   ├── findcc.c
│   │   ├── findcc.h
│   │   ├── Makefile
│   │   ├── mkdep.1
│   │   └── mkdep.c
│   ├── mkimage
│   │   ├── Makefile
│   │   └── mkimage.c
│   ├── newgrp
│   │   ├── grutil.c
│   │   ├── grutil.h
│   │   ├── Makefile
│   │   ├── newgrp.1
│   │   └── newgrp.c
│   ├── passwd
│   │   ├── extern.h
│   │   ├── kpasswd.1
│   │   ├── krb5_passwd.c
│   │   ├── local_passwd.c
│   │   ├── Makefile
│   │   ├── pam_passwd.c
│   │   ├── passwd.1
│   │   ├── passwd.c
│   │   ├── yppasswd.1
│   │   └── yp_passwd.c
│   ├── sed
│   │   ├── compile.c
│   │   ├── defs.h
│   │   ├── extern.h
│   │   ├── main.c
│   │   ├── Makefile
│   │   ├── misc.c
│   │   ├── POSIX
│   │   ├── process.c
│   │   ├── sed.1
│   │   └── TEST
│   │   ├── hanoi.sed
│   │   ├── math.sed
│   │   └── sed.test
│   ├── seq
│   │   ├── Makefile
│   │   ├── seq.1
│   │   └── seq.c
│   ├── stat
│   │   ├── Makefile
│   │   ├── stat.1
│   │   └── stat.c
│   ├── tic
│   │   ├── Makefile
│   │   ├── tic.1
│   │   └── tic.c
│   ├── top
│   │   ├── Makefile
│   │   └── top.c
│   └── uniq
│   ├── Makefile
│   ├── uniq.1
│   └── uniq.c
└── usr.sbin
├── installboot
│   ├── arch
│   │   ├── alpha.c
│   │   ├── amiga.c
│   │   ├── emips.c
│   │   ├── ews4800mips.c
│   │   ├── hp300.c
│   │   ├── hp700.c
│   │   ├── i386.c
│   │   ├── landisk.c
│   │   ├── macppc.c
│   │   ├── news.c
│   │   ├── next68k.c
│   │   ├── pmax.c
│   │   ├── sparc64.c
│   │   ├── sparc.c
│   │   ├── sun68k.c
│   │   ├── vax.c
│   │   └── x68k.c
│   ├── bbinfo.c
│   ├── ext2fs.c
│   ├── ffs.c
│   ├── fstypes.c
│   ├── installboot.c
│   ├── installboot.h
│   ├── installboot_nbsd.8
│   ├── install_master.c
│   ├── machines.c
│   ├── Makefile
│   ├── minixfs3.c
│   └── sum.c
├── Makefile
├── Makefile.inc
├── pwd_mkdb
│   ├── Makefile
│   ├── pwd_mkdb.8
│   └── pwd_mkdb.c
├── user
│   ├── defs.h
│   ├── group.8
│   ├── groupadd.8
│   ├── groupdel.8
│   ├── groupinfo.8
│   ├── groupmod.8
│   ├── main.c
│   ├── Makefile
│   ├── user.8
│   ├── useradd.8
│   ├── user.c
│   ├── userdel.8
│   ├── userinfo.8
│   ├── usermgmt.conf.5
│   ├── usermgmt.h
│   └── usermod.8
├── vipw
│   ├── Makefile
│   ├── vipw.8
│   └── vipw.c
└── zic
└── Makefile

866 directories, 8507 files

标签:

实例下载地址

Minix3最新源码 minix 3.2.0版本

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警