drop use of pthread_once for aio thread stack size init
[musl] / src / fcntl / open.c
index 3928a6e..1d817a2 100644 (file)
@@ -1,7 +1,6 @@
 #include <fcntl.h>
 #include <stdarg.h>
 #include "syscall.h"
-#include "libc.h"
 
 int open(const char *filename, int flags, ...)
 {
@@ -21,4 +20,4 @@ int open(const char *filename, int flags, ...)
        return __syscall_ret(fd);
 }
 
-LFS64(open);
+weak_alias(open, open64);