aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/math/pow.c
blob: 5cdcfa5fa5bb8b744d2db1c81313ac60b383c519 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}