// file: $(ECE_1111)/labs/01/l01_03/myprog.h // // revision history: // 20180724 (JP): initial version // // make sure definitions are only made once // #ifndef MYPROG #define MYPROG // include system libraries // #include #include #include #include #include // define the number of degrees in a circle // #define DEGREES (long)360 // declare a function // float mysum(float arg1, float arg2); // end of include file // #endif