mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-19 14:31:48 +01:00
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/
13 lines
189 B
C
13 lines
189 B
C
#if defined(__linux__) || defined(__MINT__)
|
|
# define _GNU_SOURCE /* getsubopt() */
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
getsubopt(argv, argv, argv);
|
|
return 0;
|
|
}
|