[comp.os.minix] c68 bug - for vincent archer

HBO043%DJUKFA11.BITNET@cunyvm.cuny.edu (Christoph van Wuellen) (07/27/90)

I got your bug message. Thank you very much.
The fix will be shipped out in a minute. The problem was that in C, a
function name alone really is a pointer to a function name. Thus:

int (*f)();
int test();

f = test;  <=== is really f = &test.

This gave the error message from g_cast which is unable to cast a function
to a pointer.

The fix is trivial, see subsequent posting.
C.v.W.