Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!brutus.cs.uiuc.edu!jarthur!uci-ics!gateway From: rfg@paris.ics.uci.edu (Ronald Guilmette) Newsgroups: comp.std.c Subject: A simple compatability question. Message-ID: <25D7D082.17499@paris.ics.uci.edu> Date: 13 Feb 90 09:16:50 GMT Organization: UC Irvine Department of ICS Lines: 13 /* 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)());