mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-09-15 10:29:11 +02:00
fixed ArcTan definition (bug ID 35655)
This commit is contained in:
parent
505a01b899
commit
3f18c4e5cc
@ -296,7 +296,8 @@ const
|
||||
function Abs(const A: integer): integer; overload; external name 'Math.abs';
|
||||
function Abs(const A: NativeInt): integer; overload; external name 'Math.abs';
|
||||
function Abs(const A: Double): Double; overload; external name 'Math.abs';
|
||||
function ArcTan(const A, B: Double): Double; external name 'Math.atan';
|
||||
function ArcTan(const A: Double): Double; external name 'Math.atan';
|
||||
function ArcTan2(const A,B: Double): Double; external name 'Math.atan2';
|
||||
function Cos(const A: Double): Double; external name 'Math.cos';
|
||||
function Exp(const A: Double): Double; external name 'Math.exp';
|
||||
function Frac(const A: Double): Double; assembler;
|
||||
|
Loading…
Reference in New Issue
Block a user