OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / system / core / libacc / tests / data / funcargs.c
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