diff options
author | Marvin Borner | 2020-08-09 16:51:01 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-09 16:51:01 +0200 |
commit | 162d024a53e1e31e00ff0b6f47dd4590edebc551 (patch) | |
tree | 711d3886c300dfaddffdafaa89b690b45eb2101d /lib/inc/math.h | |
parent | 79f2fa136f26a0b87917336e089485712ee49bd6 (diff) |
Heavy restructuring of libc, kernel and apps
Diffstat (limited to 'lib/inc/math.h')
-rw-r--r-- | lib/inc/math.h | 10 |
1 files changed, 10 insertions, 0 deletions
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 <def.h> + +int pow(int base, int exp); + +#endif |