diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/nt32/fs.c | 10 | ||||
-rw-r--r-- | src/arch/nt64/fs.c | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/src/arch/nt32/fs.c b/src/arch/nt32/fs.c index 93ccd82..11c9b7d 100644 --- a/src/arch/nt32/fs.c +++ b/src/arch/nt32/fs.c @@ -34,3 +34,13 @@ int __fs_chmod(int fdat, const char * path, mode_t mode, int flags, uint32_t ace { return syscall(SYS_fs_chmod,fdat,path,mode,flags,ace_flags); } + +int __fs_tmpfile(int flags) +{ + return syscall(SYS_fs_tmpfile,flags); +} + +int __fs_tmpdir(int flags) +{ + return syscall(SYS_fs_tmpdir,flags); +} diff --git a/src/arch/nt64/fs.c b/src/arch/nt64/fs.c index 93ccd82..11c9b7d 100644 --- a/src/arch/nt64/fs.c +++ b/src/arch/nt64/fs.c @@ -34,3 +34,13 @@ int __fs_chmod(int fdat, const char * path, mode_t mode, int flags, uint32_t ace { return syscall(SYS_fs_chmod,fdat,path,mode,flags,ace_flags); } + +int __fs_tmpfile(int flags) +{ + return syscall(SYS_fs_tmpfile,flags); +} + +int __fs_tmpdir(int flags) +{ + return syscall(SYS_fs_tmpdir,flags); +} |