mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-06 04:07:30 +01:00
* fix lstat syscall for linux/powerpc64 (lstat64 is only for 32 bit platforms)
git-svn-id: trunk@12122 -
This commit is contained in:
parent
a0939ad9d6
commit
923e5eff19
@ -407,7 +407,7 @@ Function fpLstat(path:pchar;Info:pstat):cint;
|
|||||||
|
|
||||||
begin
|
begin
|
||||||
fpLStat:=do_syscall(
|
fpLStat:=do_syscall(
|
||||||
{$ifdef cpux86_64}
|
{$ifdef cpu64}
|
||||||
syscall_nr_lstat,
|
syscall_nr_lstat,
|
||||||
{$else}
|
{$else}
|
||||||
syscall_nr_lstat64,
|
syscall_nr_lstat64,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user