Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/3/84; site grkermi.UUCP Path: utzoo!watmath!clyde!burl!ulysses!allegra!mit-eddie!genrad!grkermi!eric From: eric@grkermi.UUCP (Eric N. Starkman) Newsgroups: net.lang.c Subject: Re: Re: how has C bitten you -- unsigned/disnged chars. Message-ID: <559@grkermi.UUCP> Date: Fri, 16-Aug-85 16:25:18 EDT Article-I.D.: grkermi.559 Posted: Fri Aug 16 16:25:18 1985 Date-Received: Tue, 20-Aug-85 06:02:59 EDT References: <745@dataio.UUCP> <588@rtech.UUCP> <966@rayssd.UUCP> Reply-To: ens@panda.UUCP (Eric N. Starkman) Organization: GenRad, Inc., Concord, Mass. Lines: 18 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)();