
char *hello(void)
{
    return "hello"; /* warning on this line */
}

void two(void)
{
    2;
    22;
    222;
}

void one(void)
{
    1;
    11;
    111;
    two();
}