#include <stdio.h>
int main(void)
{
    void foo(void);
    //...
}
void test(void)
{
    foo();
}