Why don't you post the code?
Here's an "old style" function declaration:
Code:
int myFunc( param1, param2, param3)
char param1;
int param2;
short param3;
{
printf("Got %d %d %d\n", param1, param2, param3);
}
Here's a "new style" function declaration:
Code:
int myFunc( char param1, int param2, short param3 )
{
.....
}
(edited for correctness, as pointed out below)