Browse Source

rtl: clean up

mattias 6 years ago
parent
commit
218736588c
1 changed files with 0 additions and 4 deletions
  1. 0 4
      packages/rtl/math.pas

+ 0 - 4
packages/rtl/math.pas

@@ -16,16 +16,12 @@ unit Math;
 
 
 interface
 interface
 
 
-uses
-  SysUtils;
-
 const
 const
   MinInteger = -$fffffffffffff-1;
   MinInteger = -$fffffffffffff-1;
   MaxInteger = $fffffffffffff;
   MaxInteger = $fffffffffffff;
   MinDouble  =  5.0e-324;
   MinDouble  =  5.0e-324;
   MaxDouble  =  1.7e+308;
   MaxDouble  =  1.7e+308;
 
 
-
 const
 const
   NaN: Double; external name 'NaN';
   NaN: Double; external name 'NaN';
   Infinity: Double; external name 'Infinity';
   Infinity: Double; external name 'Infinity';