repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tools/llvm: Do not build with symbols
[minix3.git]
/
external
/
bsd
/
mdocml
/
dist
/
test-getsubopt.c
blob
25e11246e67b1d1ea16448d1e9a04cd443d5e4bb
1
#if defined(__linux__) || defined(__MINT__)
2
# define _GNU_SOURCE
/* getsubopt() */
3
#endif
4
5
#include <stdlib.h>
6
7
int
8
main
(
int
argc
,
char
**
argv
)
9
{
10
getsubopt
(
argv
,
argv
,
argv
);
11
return
0
;
12
}