aboutsummaryrefslogtreecommitdiff
path: root/src/libc/math.h
blob: 9f9bd5834e0378117161cb909c0eba78938f6341 (plain)
1
2
3
4
5
6
7
8
#ifndef MATH_H
#define MATH_H

int pow(int x,int n);
int max(int x,int y);
int min(int x,int y);
int abs(int x);
#endif