1
Files
lecture-operating-system-de…/c_os/lib/MyMath.h
2022-05-09 14:03:12 +02:00

13 lines
205 B
C
Executable File

#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