Fix of atan2

This commit is contained in:
Christoffer Lerno
2022-12-19 13:00:27 +01:00
parent aa534e2b3f
commit 334c004f1e

View File

@@ -100,7 +100,7 @@ $if (env::COMPILER_LIBC_AVAILABLE):
extern fn double _atan(double x) @extname("atan"); extern fn double _atan(double x) @extname("atan");
extern fn float _atanf(float x) @extname("atanf"); extern fn float _atanf(float x) @extname("atanf");
extern fn double _atan2(double x) @extname("atan2"); extern fn double _atan2(double x) @extname("atan2");
extern fn float _atanf2(float x) @extname("atanf2"); extern fn float _atan2f(float x) @extname("atan2f");
macro atan(x) macro atan(x)
{ {