diff options
| author | Aleksa Vuckovic <aleksav013@gmail.com> | 2022-08-07 16:39:28 +0200 |
|---|---|---|
| committer | Aleksa Vuckovic <aleksav013@gmail.com> | 2022-08-07 16:43:26 +0200 |
| commit | 71396c5cd460890c52e348687e6e7c864e2dfeed (patch) | |
| tree | 72e7dd114cea46c5209dba2e0c2ed9ffeb7f55b5 /kernel/include/libk/math.h | |
| parent | 50aaae893611af890a6855158ad0a3e32c7b2c43 (diff) | |
types.h; libk and heap begining
Diffstat (limited to 'kernel/include/libk/math.h')
| -rw-r--r-- | kernel/include/libk/math.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/kernel/include/libk/math.h b/kernel/include/libk/math.h new file mode 100644 index 0000000..83ac7fe --- /dev/null +++ b/kernel/include/libk/math.h @@ -0,0 +1,8 @@ +#ifndef MATH_H +#define MATH_H + +#include <types.h> + +int64_t abs(int64_t val); + +#endif |
