OpenGrok
Cross Reference: funcargs.c
xref
: /
frameworks
/
compile
/
libbcc
/
tests
/
data
/
src
/
funcargs.c
Home
|
History
|
Annotate
|
Download
|
only in
src
1
int
f(
int
a,
int
,
int
c) {
2
return
a + c;
3
}
4
5
int
main
() {
6
return
f(
1,2
,
3
);
7
}
8
9