1
Files
lecture-operating-system-de…/c_os/lib/MyMath.h
2022-05-15 15:29:46 +02:00

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