Bring in OpenBSD's mandoc(1) tool for formatting manual pages.
authorSascha Wildner <saw@online.de>
Tue, 27 Oct 2009 08:42:29 +0000 (09:42 +0100)
committerSascha Wildner <saw@online.de>
Tue, 27 Oct 2009 08:42:29 +0000 (09:42 +0100)
commit589e7c1db2b008d569817318dd8d8a990d926686
treedf6b5e374d8e9fe09ffa06ee66848bcec1980115
parentddd6bafc28cf715c1b475295008a23c63ac53cc1
Bring in OpenBSD's mandoc(1) tool for formatting manual pages.

It's not (yet) used by anything but it is quite useful for
error checking.

Thanks to Kristaps Dzonsons and OpenBSD!
56 files changed:
usr.bin/Makefile
usr.bin/mandoc/Makefile [new file with mode: 0644]
usr.bin/mandoc/arch.c [new file with mode: 0644]
usr.bin/mandoc/arch.in [new file with mode: 0644]
usr.bin/mandoc/att.c [new file with mode: 0644]
usr.bin/mandoc/att.in [new file with mode: 0644]
usr.bin/mandoc/chars.c [new file with mode: 0644]
usr.bin/mandoc/chars.h [new file with mode: 0644]
usr.bin/mandoc/chars.in [new file with mode: 0644]
usr.bin/mandoc/html.c [new file with mode: 0644]
usr.bin/mandoc/html.h [new file with mode: 0644]
usr.bin/mandoc/lib.c [new file with mode: 0644]
usr.bin/mandoc/lib.in [new file with mode: 0644]
usr.bin/mandoc/libman.h [new file with mode: 0644]
usr.bin/mandoc/libmandoc.h [new file with mode: 0644]
usr.bin/mandoc/libmdoc.h [new file with mode: 0644]
usr.bin/mandoc/main.c [new file with mode: 0644]
usr.bin/mandoc/main.h [new file with mode: 0644]
usr.bin/mandoc/man.3 [new file with mode: 0644]
usr.bin/mandoc/man.7 [new file with mode: 0644]
usr.bin/mandoc/man.c [new file with mode: 0644]
usr.bin/mandoc/man.h [new file with mode: 0644]
usr.bin/mandoc/man_action.c [new file with mode: 0644]
usr.bin/mandoc/man_argv.c [new file with mode: 0644]
usr.bin/mandoc/man_hash.c [new file with mode: 0644]
usr.bin/mandoc/man_html.c [new file with mode: 0644]
usr.bin/mandoc/man_macro.c [new file with mode: 0644]
usr.bin/mandoc/man_term.c [new file with mode: 0644]
usr.bin/mandoc/man_validate.c [new file with mode: 0644]
usr.bin/mandoc/mandoc.1 [new file with mode: 0644]
usr.bin/mandoc/mandoc.c [new file with mode: 0644]
usr.bin/mandoc/mandoc_char.7 [new file with mode: 0644]
usr.bin/mandoc/manuals.7 [new file with mode: 0644]
usr.bin/mandoc/mdoc.3 [new file with mode: 0644]
usr.bin/mandoc/mdoc.7 [new file with mode: 0644]
usr.bin/mandoc/mdoc.c [new file with mode: 0644]
usr.bin/mandoc/mdoc.h [new file with mode: 0644]
usr.bin/mandoc/mdoc_action.c [new file with mode: 0644]
usr.bin/mandoc/mdoc_argv.c [new file with mode: 0644]
usr.bin/mandoc/mdoc_hash.c [new file with mode: 0644]
usr.bin/mandoc/mdoc_html.c [new file with mode: 0644]
usr.bin/mandoc/mdoc_macro.c [new file with mode: 0644]
usr.bin/mandoc/mdoc_strings.c [new file with mode: 0644]
usr.bin/mandoc/mdoc_term.c [new file with mode: 0644]
usr.bin/mandoc/mdoc_validate.c [new file with mode: 0644]
usr.bin/mandoc/msec.c [new file with mode: 0644]
usr.bin/mandoc/msec.in [new file with mode: 0644]
usr.bin/mandoc/out.c [new file with mode: 0644]
usr.bin/mandoc/out.h [new file with mode: 0644]
usr.bin/mandoc/st.c [new file with mode: 0644]
usr.bin/mandoc/st.in [new file with mode: 0644]
usr.bin/mandoc/term.c [new file with mode: 0644]
usr.bin/mandoc/term.h [new file with mode: 0644]
usr.bin/mandoc/tree.c [new file with mode: 0644]
usr.bin/mandoc/vol.c [new file with mode: 0644]
usr.bin/mandoc/vol.in [new file with mode: 0644]