mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-27 00:50:33 +02:00
* fix compilation of arm-embedded, resolves #36626
git-svn-id: trunk@44034 -
(cherry picked from commit 5aaf68b088
)
This commit is contained in:
parent
d35d69b851
commit
716a9c641d
@ -52,13 +52,13 @@ begin
|
|||||||
result := -1;
|
result := -1;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function FileGetDate(Handle: THandle) : Int64;
|
function FileGetDate(Handle: THandle) : TOSTimestamp;
|
||||||
begin
|
begin
|
||||||
result := -1;
|
result := -1;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
function FileSetDate(Handle: THandle; Age: LongInt) : Longint;
|
function FileSetDate(Handle: THandle; Age: TOSTimestamp) : Longint;
|
||||||
begin
|
begin
|
||||||
result := -1;
|
result := -1;
|
||||||
end;
|
end;
|
||||||
@ -128,7 +128,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
Function FileAge (Const FileName : RawByteString): Int64;
|
Function FileAge (Const FileName : RawByteString): TOSTimestamp;
|
||||||
begin
|
begin
|
||||||
result := -1;
|
result := -1;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user