There are three ways to declare a function in C:
A function with no parameters is declared like this:
int foo(void) { /* body */} // note that void is needed
A function with a fixed number of parameters is declared like this:
void bar(int p1, double p0) { /* body */}
And last but not least a function with variable parameter lists:
double func(int p1, int p2, ...) { /* body */}