summaryrefslogtreecommitdiffhomepage
path: root/src/arch/nt64/fs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/nt64/fs.c')
-rw-r--r--src/arch/nt64/fs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/nt64/fs.c b/src/arch/nt64/fs.c
index b198777..7051b04 100644
--- a/src/arch/nt64/fs.c
+++ b/src/arch/nt64/fs.c
@@ -4,23 +4,23 @@
int __fs_rpath(int fdat, const char * path, int options,
char * buffer, size_t buflen)
{
- return __syscall(SYS_fs_rpath,fdat,path,options,buffer,buflen);
+ return syscall(SYS_fs_rpath,fdat,path,options,buffer,buflen);
}
int __fs_apath(int fdat, const char * path, int options,
char * buffer, size_t buflen)
{
- return __syscall(SYS_fs_apath,fdat,path,options,buffer,buflen);
+ return syscall(SYS_fs_apath,fdat,path,options,buffer,buflen);
}
int __fs_npath(int fdat, const char * path, int options,
char * buffer, size_t buflen)
{
- return __syscall(SYS_fs_npath,fdat,path,options,buffer,buflen);
+ return syscall(SYS_fs_npath,fdat,path,options,buffer,buflen);
}
int __fs_dpath(int fdat, const char * path, int options,
char * buffer, size_t buflen)
{
- return __syscall(SYS_fs_dpath,fdat,path,options,buffer,buflen);
+ return syscall(SYS_fs_dpath,fdat,path,options,buffer,buflen);
}