summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libc/sysdeps/linux/common/mmap64.c2
-rw-r--r--libc/sysdeps/linux/common/posix_fadvise.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/mmap64.c b/libc/sysdeps/linux/common/mmap64.c
index 2b10e5710..d0e87afb5 100644
--- a/libc/sysdeps/linux/common/mmap64.c
+++ b/libc/sysdeps/linux/common/mmap64.c
@@ -17,7 +17,7 @@
/* libc_hidden_proto(mmap) */
-# if !defined __NR_mmap2 || !defined _syscall6
+# if !defined __NR_mmap2
/*
* This version is a stub that just chops off everything at the mmap 32 bit
diff --git a/libc/sysdeps/linux/common/posix_fadvise.c b/libc/sysdeps/linux/common/posix_fadvise.c
index 4fee8e49e..7c43be959 100644
--- a/libc/sysdeps/linux/common/posix_fadvise.c
+++ b/libc/sysdeps/linux/common/posix_fadvise.c
@@ -23,7 +23,7 @@ int posix_fadvise(int fd, off_t offset, off_t len, int advice)
return 0;
}
-#if defined __UCLIBC_HAS_LFS__ && (!defined __NR_fadvise64_64 || !defined _syscall6)
+#if defined __UCLIBC_HAS_LFS__ && !defined __NR_fadvise64_64
strong_alias(posix_fadvise,posix_fadvise64)
#endif