<> <> <> <> RealConvert: CEDAR DEFINITIONS = BEGIN <> CVError: ERROR; -- Signalled on impossible conversion in IeeeToBcpl Mesa5Real: TYPE = RECORD[LONG CARDINAL]; <> BcplReal: TYPE = RECORD[LONG CARDINAL]; <> Mesa5ToIeee: PROC [a: Mesa5Real] RETURNS [b: REAL]; <> BcplToIeee: PROC [a: BcplReal] RETURNS [b: REAL]; IeeeToBcpl: PROC [a: REAL] RETURNS [b: BcplReal]; END. August 13, 1980 3:17 PM, LStewart; modified from RealOps.mesa August 25, 1980 1:25 PM, LStewart; Added CVError