#ifndef __MYMATH_HPP__ #define __MYMATH_HPP__ /* mymath.hpp This file would contain declarations of all math functions, with appropriate documentation. */ // Function to compute a greatest common divisor of two integers. int gcd(int a, int b); // ... other math functions here #endif