diff options
author | Sam Gross <colesbury@gmail.com> | 2024-04-08 15:53:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-08 15:53:13 (GMT) |
commit | 2067da25796ea3254d0edf61a39bcc0326c4f71d (patch) | |
tree | e01d938adde801422b6164ddf55a7e20877adb36 | |
parent | df7317904849a41d51db39d92c5d431a18e22637 (diff) | |
download | cpython-2067da25796ea3254d0edf61a39bcc0326c4f71d.zip cpython-2067da25796ea3254d0edf61a39bcc0326c4f71d.tar.gz cpython-2067da25796ea3254d0edf61a39bcc0326c4f71d.tar.bz2 |
gh-117547: Fix mimalloc compile error on OpenBSD (#117548)
-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 ec8447a..c6ea05b 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) && !defined(__FreeBSD__) && !defined(__sun) +#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(_AIX) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__sun) #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) && !defined(__FreeBSD__) && !defined(__sun) // avoid unused warnings +#elif !defined(__APPLE__) && !defined(_AIX) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__sun) // avoid unused warnings static int mi_prim_open(const char* fpath, int open_flags) { return open(fpath,open_flags); |