M7350/system/core/libacc/tests/data/funcargs.c

9 lines
84 B
C
Raw Permalink Normal View History

2024-09-09 08:52:07 +00:00
int f(int a,int, int c) {
return a + c;
}
int main() {
return f(1,2,3);
}