From 2a80f1fe5d4f7b56b3baa745c38d7203d9b4607b Mon Sep 17 00:00:00 2001 From: midipix Date: Tue, 20 Aug 2019 11:32:48 +0000 Subject: nt32/nt64: realpath(): use the newly introduced fs_rpath system call. --- src/misc/nt32/realpath.c | 4 ++-- src/misc/nt64/realpath.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/misc/nt32/realpath.c b/src/misc/nt32/realpath.c index 0376011..ec8092d 100644 --- a/src/misc/nt32/realpath.c +++ b/src/misc/nt32/realpath.c @@ -3,7 +3,7 @@ #include #include #include -#include "psxglue.h" +#include "syscall.h" extern const struct __psx_vtbl * __psx_vtbl; @@ -13,7 +13,7 @@ char * realpath(const char * restrict filename, char * restrict resolved) char buf[PATH_MAX]; ecode = filename - ? __psx_vtbl->fs_rpath( + ? __syscall(SYS_fs_rpath, AT_FDCWD,filename, O_NONBLOCK|O_CLOEXEC, buf,sizeof(buf)) diff --git a/src/misc/nt64/realpath.c b/src/misc/nt64/realpath.c index 0376011..ec8092d 100644 --- a/src/misc/nt64/realpath.c +++ b/src/misc/nt64/realpath.c @@ -3,7 +3,7 @@ #include #include #include -#include "psxglue.h" +#include "syscall.h" extern const struct __psx_vtbl * __psx_vtbl; @@ -13,7 +13,7 @@ char * realpath(const char * restrict filename, char * restrict resolved) char buf[PATH_MAX]; ecode = filename - ? __psx_vtbl->fs_rpath( + ? __syscall(SYS_fs_rpath, AT_FDCWD,filename, O_NONBLOCK|O_CLOEXEC, buf,sizeof(buf)) -- cgit v1.2.3