K&R style functions not properly supported.
Created by: cznic
int f(a, p)
int a;
char* p;
{
// ...
}
Parameters a, p are not getting declared so the type of f is not compatible with int(int,char*).
Created by: cznic
int f(a, p)
int a;
char* p;
{
// ...
}
Parameters a, p are not getting declared so the type of f is not compatible with int(int,char*).