#ifndef __MYMATH_INCLUDE_H_ #define __MYMATH_INCLUDE_H_ // NOTE: I added this file namespace mmath { int min(int, int); int max(int, int); int abs(int); int pow(int, unsigned int); } // namespace mmath #endif