#ifndef __MYMATH_INCLUDE_H_ #define __MYMATH_INCLUDE_H_ // NOTE: I added this file // TODO: namespace this int mymin(int, int); int mymax(int, int); int myabs(int); int mypow(int, unsigned int); #endif