aboutsummaryrefslogtreecommitdiff
path: root/src/mlibc/math/pow.c
blob: 24670a0c7f7496c2ad18ac4773a4db3be2ca1daf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
int pow(int base, int exp)
{
    if (exp < 0) return 0;

    if (!exp) return 1;

    int ret = base;
    for (int i = 1; i < exp; i++) ret *= base;
    return ret;
}