tools/llvm: Do not build with symbols
[minix3.git] / external / bsd / mdocml / dist / test-getsubopt.c
blob25e11246e67b1d1ea16448d1e9a04cd443d5e4bb
1 #if defined(__linux__) || defined(__MINT__)
2 # define _GNU_SOURCE /* getsubopt() */
3 #endif
5 #include <stdlib.h>
7 int
8 main(int argc, char **argv)
10 getsubopt(argv, argv, argv);
11 return 0;