/* prototype */
foo();

/* implementation */
foo(x)
int x;
{
    return x;
}