aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/math.c
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libc/math.c')
-rw-r--r--libs/libc/math.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/libs/libc/math.c b/libs/libc/math.c
new file mode 100644
index 0000000..c8142b5
--- /dev/null
+++ b/libs/libc/math.c
@@ -0,0 +1,17 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
+#include <math.h>
+
+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;
+}