1

some silly math functions

This commit is contained in:
churl
2022-05-09 01:26:06 +02:00
parent 9145466a15
commit 333d5930a5
3 changed files with 38 additions and 1 deletions

11
c_os/lib/Math.h Normal file
View File

@ -0,0 +1,11 @@
#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