[net.unix-wizards] Reply to: c question

Douglas@sri-unix (07/01/82)

Date: 20 Jun 1982 at 1849-CDT
extern type foo();
type array[size];
:
procedure( foo, array );

passes the addresses of the function entry point and the first
storage location of the array.

Neither &foo nor &array is correct in this context.  Some compilers will
do the "right thing" if you try the extra level of referencing, some will not.
-------