12 lines
169 B
C
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
|