1
Files
lecture-operating-system-de…/c_os/lib/Math.h
2022-05-09 01:26:06 +02:00

12 lines
169 B
C

#ifndef __MATH_INCLUDE_H_
#define __MATH_INCLUDE_H_
// NOTE: I added this file
int min(int, int);
int max(int, int);
int abs(int);
int pow(int, unsigned int);
#endif