diff options
-rw-r--r-- | tools/include/nolibc/sys.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/include/nolibc/sys.h b/tools/include/nolibc/sys.h index 3cd938f9abda..a8dca5ac6542 100644 --- a/tools/include/nolibc/sys.h +++ b/tools/include/nolibc/sys.h @@ -798,13 +798,7 @@ int openat(int dirfd, const char *path, int flags, ...) static __attribute__((unused)) int sys_open(const char *path, int flags, mode_t mode) { -#ifdef __NR_openat return my_syscall4(__NR_openat, AT_FDCWD, path, flags, mode); -#elif defined(__NR_open) - return my_syscall3(__NR_open, path, flags, mode); -#else - return __nolibc_enosys(__func__, path, flags, mode); -#endif } static __attribute__((unused)) |