<<>> <> <> <> <> <> RealConvert: CEDAR DEFINITIONS = BEGIN <> CVError: ERROR; -- Signalled on impossible conversion in IeeeToBcpl BcplReal: TYPE = RECORD[CARD32]; <> <> BcplToIeee: PROC [a: BcplReal] RETURNS [b: REAL]; IeeeToBcpl: PROC [a: REAL] RETURNS [b: BcplReal]; END.