aboutsummaryrefslogtreecommitdiff
path: root/src/mlibc/math/pow.c
blob: 4f040bba7b4d0c71c99c16f5540b06c082bca961 (plain) (blame)
1
2
3
4
5
6
7
8
9
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;
}