blob: 25e11246e67b1d1ea16448d1e9a04cd443d5e4bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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;
}
|