소스 검색

* fixed arm-linux compilation

git-svn-id: trunk@4645 -
florian 19 년 전
부모
커밋
90e481ef13
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      rtl/arm/math.inc

+ 3 - 3
rtl/arm/math.inc

@@ -16,21 +16,21 @@
 
 {$ifndef WINCE}
     {$define FPC_SYSTEM_HAS_ABS}
-    function fpc_abs_real(d : extended) : extended;compilerproc;
+    function fpc_abs_real(d : ValReal) : ValReal;compilerproc;
     begin
       { Function is handled internal in the compiler }
       runerror(207);
       result:=0;
     end;
     {$define FPC_SYSTEM_HAS_SQR}
-    function fpc_sqr_real(d : extended) : extended;compilerproc;
+    function fpc_sqr_real(d : ValReal) : ValReal;compilerproc;
     begin
       { Function is handled internal in the compiler }
       runerror(207);
       result:=0;
     end;
     {$define FPC_SYSTEM_HAS_SQRT}
-    function fpc_sqrt_real(d : extended) : extended;compilerproc;
+    function fpc_sqrt_real(d : ValReal) : ValReal;compilerproc;
     begin
       { Function is handled internal in the compiler }
       runerror(207);