diff options
author | Marvin Borner | 2020-08-15 17:42:36 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-15 17:42:36 +0200 |
commit | 9f16b032d38613ca95e321e1d1e652c43129c68b (patch) | |
tree | 33f71a84f60b496ed31a128ec542c5341c754b0d /libc/inc/math.h | |
parent | 32b8722128dfb4ca9e814940a23c2b22a283bb12 (diff) |
Added libgui
Diffstat (limited to 'libc/inc/math.h')
-rw-r--r-- | libc/inc/math.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libc/inc/math.h b/libc/inc/math.h new file mode 100644 index 0000000..268e3e7 --- /dev/null +++ b/libc/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 |