in clock_getres, check for null pointer before storing result
[musl] / src / stdio / fopen.c
index 07bdb6e..e1b91e1 100644 (file)
@@ -18,7 +18,7 @@ FILE *fopen(const char *restrict filename, const char *restrict mode)
        /* Compute the flags to pass to open() */
        flags = __fmodeflags(mode);
 
-       fd = sys_open_cp(filename, flags, 0666);
+       fd = sys_open(filename, flags, 0666);
        if (fd < 0) return 0;
        if (flags & O_CLOEXEC)
                __syscall(SYS_fcntl, fd, F_SETFD, FD_CLOEXEC);
@@ -30,4 +30,4 @@ FILE *fopen(const char *restrict filename, const char *restrict mode)
        return 0;
 }
 
-LFS64(fopen);
+weak_alias(fopen, fopen64);