aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc/math.h
diff options
context:
space:
mode:
authorMarvin Borner2021-05-24 18:50:55 +0200
committerMarvin Borner2021-05-24 19:05:59 +0200
commit91ba8d02037cc27c7b44f1bfd492c42ccd0af042 (patch)
tree4006f8b37c2e70ddceb6fbb70dd2c690c5cf6035 /libs/libc/inc/math.h
parenta0a1b1318dc886c72eaf60792dbb40f1ea3eeb97 (diff)
Added more tests and fixed dumb bugs
typical
Diffstat (limited to 'libs/libc/inc/math.h')
-rw-r--r--libs/libc/inc/math.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/libc/inc/math.h b/libs/libc/inc/math.h
index 8affb72..4a38c5f 100644
--- a/libs/libc/inc/math.h
+++ b/libs/libc/inc/math.h
@@ -17,7 +17,9 @@
#define M_PI_2 1.57079632679489661923
#define M_PI_4 0.78539816339744830962
+f32 powf(f32 base, f32 exp);
f64 pow(f64 base, f64 exp);
+f32 sqrtf(f64 num);
f64 sqrt(f64 num);
f32 sinf(f32 angle);