musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stdio/freopen.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011年03月20日 00:16:43 -0400
committerRich Felker <dalias@aerifal.cx>2011年03月20日 00:16:43 -0400
commitaa398f56fa398f2202b04e82c67f822f3233786f (patch)
tree7833c046c55b3d2b67c66433bacfa429a650d310 /src/stdio/freopen.c
parentbe82e122bf37fdcd1766d1ed220f0300b30ab6a3 (diff)
downloadmusl-aa398f56fa398f2202b04e82c67f822f3233786f.tar.gz
global cleanup to use the new syscall interface
Diffstat (limited to 'src/stdio/freopen.c')
-rw-r--r--src/stdio/freopen.c 6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stdio/freopen.c b/src/stdio/freopen.c
index 8d3af9fc..958dbd20 100644
--- a/src/stdio/freopen.c
+++ b/src/stdio/freopen.c
@@ -17,13 +17,13 @@ FILE *freopen(const char *filename, const char *mode, FILE *f)
if (!filename) {
f2 = fopen("/dev/null", mode);
if (!f2) goto fail;
- fl = __syscall_fcntl(f2->fd, F_GETFL, 0);
- if (fl < 0 || __syscall_fcntl(f->fd, F_SETFL, fl) < 0)
+ fl = syscall(SYS_fcntl, f2->fd, F_GETFL, 0);
+ if (fl < 0 || syscall(SYS_fcntl, f->fd, F_SETFL, fl) < 0)
goto fail2;
} else {
f2 = fopen(filename, mode);
if (!f2) goto fail;
- if (__syscall_dup2(f2->fd, f->fd) < 0)
+ if (syscall(SYS_dup2, f2->fd, f->fd) < 0)
goto fail2;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月19日 10:49:54 +0000

AltStyle によって変換されたページ (->オリジナル) /