14 lines
229 B
C++
Executable File
14 lines
229 B
C++
Executable File
#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
|