aboutsummaryrefslogtreecommitdiff
path: root/src/libc/math.h
blob: 4cc37a9941c59f7936762f75c7410c22dd97e3e7 (plain)
1
2
3
4
5
6
7
8
9
#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