aboutsummaryrefslogtreecommitdiff
path: root/src/lib/inc/math.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/inc/math.h')
-rw-r--r--src/lib/inc/math.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/inc/math.h b/src/lib/inc/math.h
new file mode 100644
index 0000000..268e3e7
--- /dev/null
+++ b/src/lib/inc/math.h
@@ -0,0 +1,10 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
+#ifndef MATH_H
+#define MATH_H
+
+#include <def.h>
+
+int pow(int base, int exp);
+
+#endif