[comp.std.c] A simple compatability question.

rfg@paris.ics.uci.edu (Ronald Guilmette) (02/13/90)

/* gcc 1.36 question 891215_01

Should the following code generate either errors or warnings when compiled
with an ANSI conformant C compiler?

*/

void function_1 (int a[]);
void function_1 (int *a);

void function_2 (int f());
void function_2 (int (*f)());