summaryrefslogtreecommitdiffhomepage
path: root/src/misc/nt32/realpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/nt32/realpath.c')
-rw-r--r--src/misc/nt32/realpath.c4
1 files changed, 2 insertions, 2 deletions
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 <fcntl.h>
#include <string.h>
#include <errno.h>
-#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))