

                                Listing 2
                        A K&R and ANSI Header File

#ifdef ANSI

int func1(int i);

#else

int func1();

#endif

