diff options
author | Furkan Onder <furkanonder@protonmail.com> | 2023-11-14 16:07:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-14 16:07:46 (GMT) |
commit | 0ff6368519ed7542ad8b443de01108690102420a (patch) | |
tree | 3786b684e9cc9b947716365863fe85c166458621 /Objects | |
parent | ee06fffd38cb51ce1c045da9d8336d9ce13c318a (diff) | |
download | cpython-0ff6368519ed7542ad8b443de01108690102420a.zip cpython-0ff6368519ed7542ad8b443de01108690102420a.tar.gz cpython-0ff6368519ed7542ad8b443de01108690102420a.tar.bz2 |
gh-111906: Fix warnings during mimalloc build on FreeBSD (#111907)
Fix `unused function` warnings during mimalloc build on FreeBSD.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/mimalloc/prim/unix/prim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/mimalloc/prim/unix/prim.c b/Objects/mimalloc/prim/unix/prim.c index 790d741..cffbb2d 100644 --- a/Objects/mimalloc/prim/unix/prim.c +++ b/Objects/mimalloc/prim/unix/prim.c @@ -50,7 +50,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) +#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(_AIX) && !defined(__FreeBSD__) #define MI_HAS_SYSCALL_H #include <sys/syscall.h> #endif @@ -76,7 +76,7 @@ static int mi_prim_access(const char *fpath, int mode) { return syscall(SYS_access,fpath,mode); } -#elif !defined(__APPLE__) && !defined(_AIX) // avoid unused warnings +#elif !defined(__APPLE__) && !defined(_AIX) && !defined(__FreeBSD__) // avoid unused warnings static int mi_prim_open(const char* fpath, int open_flags) { return open(fpath,open_flags); |