proper call typing?

This commit is contained in:
pommicket 2022-02-07 14:52:50 -05:00
parent c2377fa40f
commit 9372a72d43
4 changed files with 93 additions and 8 deletions

View file

@ -1,9 +1,15 @@
/* static int g; */
int f(int a, float x[], double y, ...) {
}
float * g() {
}
int main() {
int a = exit;
int b[] = {1,2,3};
exit(1, 17, a+b);
int a = f(1, 17, b, 36, 55.0, 22.3f);
float *f = g(17.2, b);
}
/* int f(int x, int y[3]) { */