211d2d512b
It is a suite of ISC licensed tools to compile and render mdoc/man pages and will replace groff for formatting manpages in the base system. http://mdocml.bsd.lv/
9 lines
100 B
C
9 lines
100 B
C
#include <string.h>
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
strlcpy(argv[0], argv[1], 10);
|
|
return 0;
|
|
}
|