HardenedBSD/test-getsubopt.c
Ulrich Spörlein 211d2d512b Vendor import of mdocml 1.12.1
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/
2012-10-18 09:55:16 +00:00

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;
}