Browse Source

* fix compilation of arm-embedded, resolves #36626

git-svn-id: trunk@44034 -
(cherry picked from commit 5aaf68b088871755f67b94959d5a2c52adbf7d7a)
florian 5 years ago
parent
commit
716a9c641d
1 changed files with 3 additions and 3 deletions
  1. 3 3
      rtl/embedded/sysutils.pp

+ 3 - 3
rtl/embedded/sysutils.pp

@@ -52,13 +52,13 @@ begin
   result := -1;
 end;
 
-function FileGetDate(Handle: THandle) : Int64;
+function FileGetDate(Handle: THandle) : TOSTimestamp;
 begin
   result := -1;
 end;
 
 
-function FileSetDate(Handle: THandle; Age: LongInt) : Longint;
+function FileSetDate(Handle: THandle; Age: TOSTimestamp) : Longint;
 begin
   result := -1;
 end;
@@ -128,7 +128,7 @@ begin
 end;
 
 
-Function FileAge (Const FileName : RawByteString): Int64;
+Function FileAge (Const FileName : RawByteString): TOSTimestamp;
 begin
   result := -1;
 end;