|
|
|
|
|
by dgrunwald
1579 days ago
|
|
What's being removed in C23 is the ancient K&R syntax for function definitions: int max(a, b)
int a, b;
{
return a>b?a:b;
}
My understanding is that C23 does not change the meaning of function declarations. So "void foo();" remains a declaration of a function accepting an unknown number of parameters. |
|