summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorFurkan Onder <furkanonder@protonmail.com>2024-09-09 17:22:28 (GMT)
committerGitHub <noreply@github.com>2024-09-09 17:22:28 (GMT)
commit4a6b1f179667e2a8c6131718eb78a15f726e047b (patch)
tree5082bcfc1266654147298becbd77b2e81e5281cd /Objects
parent1a9d8917a38e3eb190506025b9444730ed821449 (diff)
downloadcpython-4a6b1f179667e2a8c6131718eb78a15f726e047b.zip
cpython-4a6b1f179667e2a8c6131718eb78a15f726e047b.tar.gz
cpython-4a6b1f179667e2a8c6131718eb78a15f726e047b.tar.bz2
gh-123826: Fix unused function warnings in mimalloc on NetBSD (#123827)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/mimalloc/prim/unix/prim.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/mimalloc/prim/unix/prim.c b/Objects/mimalloc/prim/unix/prim.c
index e54d6e5..1598eba 100644
--- a/Objects/mimalloc/prim/unix/prim.c
+++ b/Objects/mimalloc/prim/unix/prim.c
@@ -51,7 +51,7 @@ terms of the MIT license. A copy of the license can be found in the file
#include <sys/sysctl.h>
#endif
-#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(_AIX) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__sun)
+#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(_AIX) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__sun) && !defined(__NetBSD__)
#define MI_HAS_SYSCALL_H
#include <sys/syscall.h>
#endif
@@ -77,7 +77,7 @@ static int mi_prim_access(const char *fpath, int mode) {
return syscall(SYS_access,fpath,mode);
}
-#elif !defined(__APPLE__) && !defined(_AIX) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__sun) // avoid unused warnings
+#elif !defined(__APPLE__) && !defined(_AIX) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__sun) && !defined(__NetBSD__) // avoid unused warnings
static int mi_prim_open(const char* fpath, int open_flags) {
return open(fpath,open_flags);