From 99e183a2f569729d722d83503cb851d6198fc1fe Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 23 Jul 2020 13:10:22 +0200 Subject: Some functions for stdlib --- src/lib/inc/math.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/lib/inc/math.h (limited to 'src/lib/inc/math.h') 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 + +int pow(int base, int exp); + +#endif -- cgit v1.2.3