[WARNING]
The compiler has detected an old style declaration. Old style declarations are common in old non-ANSI sources, however they are accepted. With old style declarations, only the names are in the parameter list and the names and types are declared afterwards.
foo(a, b)
int a, long b;
{
...
}
Remove such old style declarations from your application:
void foo(int a, long b) {
...
}