diff options
author | Marvin Borner | 2020-07-23 13:10:22 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-23 13:10:22 +0200 |
commit | 99e183a2f569729d722d83503cb851d6198fc1fe (patch) | |
tree | 21e48da4f0220022d17b420de0bf771a97985293 /src/lib/inc/math.h | |
parent | fa00718c221b64070067bcd64acbc297e4ac699c (diff) |
Some functions for stdlib
Diffstat (limited to 'src/lib/inc/math.h')
-rw-r--r-- | src/lib/inc/math.h | 10 |
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 |