// file: $(ECE_1111)/labs/01/l01_03/myfuncts_00.cc // // revision history: // 20180724 (JP): initial version // // local include files // #include "myprog.h" // function: mysum // // arguments: // float arg1: operand 1 // float arg2: operand 2 // // return: the value of the sum // // This function simply returns the value of the argument. // float mysum(float op1_a, float op2_a) { return op1_a + op2_a; }