1 /* ****************************************************** 2 * * 3 * * 4 * Copyright (c) 1972 by Massachusetts Institute of * 5 * Technology and Honeywell Information Systems, Inc. * 6 * * 7 * * 8 ****************************************************** */ 9 10 dcfmp_: proc (a, b) returns (complex float bin (63)); 11 12 dcl (a, b) complex float bin (63); 13 14 return (a * b); 15 16 end dcfmp_;