92395e9c3f
Change-Id: I17b54e52e8322676d83ed4386f586f8ef3029f72
12 lines
189 B
C
12 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;
|
|
}
|