diff options
author | Ayappan Perumal <ayappap2@in.ibm.com> | 2023-11-02 07:01:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-02 07:01:50 (GMT) |
commit | 794dff2fb1d9efe73a724640192c34b25f4fae85 (patch) | |
tree | 403b50e3ae1d105c403d3f269b793b954b08b4a3 /Objects | |
parent | 230e8e924dbafe093fd1cc7b6c510dc0b9ec0caf (diff) | |
download | cpython-794dff2fb1d9efe73a724640192c34b25f4fae85.zip cpython-794dff2fb1d9efe73a724640192c34b25f4fae85.tar.gz cpython-794dff2fb1d9efe73a724640192c34b25f4fae85.tar.bz2 |
gh-111544: Fix mimalloc build on AIX (#111593)
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 060523c..790d741 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__) +#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(_AIX) #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__) // avoid unused warnings +#elif !defined(__APPLE__) && !defined(_AIX) // avoid unused warnings static int mi_prim_open(const char* fpath, int open_flags) { return open(fpath,open_flags); |