From 162d024a53e1e31e00ff0b6f47dd4590edebc551 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 9 Aug 2020 16:51:01 +0200 Subject: Heavy restructuring of libc, kernel and apps --- lib/inc/math.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lib/inc/math.h (limited to 'lib/inc/math.h') diff --git a/lib/inc/math.h b/lib/inc/math.h new file mode 100644 index 0000000..268e3e7 --- /dev/null +++ b/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