Files
netbsd/external/bsd/mdocml/dist/test-getsubopt.c
2013-04-06 16:48:33 +02: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;
}