how has C bitten you -- unsigned/disnged chars.

Eric N. Starkman eric at grkermi.UUCP
Sat Aug 17 06:25:18 AEST 1985


In various articles, people write:
>> ...if only DEC-C for VMS supported ...
>
>...the newest version of the VAX11-C compiler from DEC...
>...I frequently port software between UNIX and VMS...

int foo(procedure)
	int (*procedure)();
{
	...
	procedure();
	...
}

Though this isn't the proper way to do it, it compiles and runs without
problem under 4.2 and VMS/C 1.something  .

VMS 2.0 requires the procedure(); call to be (*procedure)();



More information about the Comp.lang.c mailing list