aboutsummaryrefslogtreecommitdiff
path: root/src/mlibc/math/pow.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mlibc/math/pow.c')
-rw-r--r--src/mlibc/math/pow.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mlibc/math/pow.c b/src/mlibc/math/pow.c
index 4f040bb..24670a0 100644
--- a/src/mlibc/math/pow.c
+++ b/src/mlibc/math/pow.c
@@ -1,4 +1,5 @@
-int pow(int base, int exp) {
+int pow(int base, int exp)
+{
if (exp < 0) return 0;
if (!exp) return 1;