Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9ceb761

Browse files
ayappanecGlyphack
authored andcommitted
pythongh-111544: Fix mimalloc build on AIX (python#111593)
1 parent548bf79 commit9ceb761

File tree

1 file changed

+2
-2
lines changed
  • Objects/mimalloc/prim/unix

1 file changed

+2
-2
lines changed

‎Objects/mimalloc/prim/unix/prim.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ terms of the MIT license. A copy of the license can be found in the file
5050
#include<sys/sysctl.h>
5151
#endif
5252

53-
#if !defined(__HAIKU__)&& !defined(__APPLE__)&& !defined(__CYGWIN__)
53+
#if !defined(__HAIKU__)&& !defined(__APPLE__)&& !defined(__CYGWIN__)&& !defined(_AIX)
5454
#defineMI_HAS_SYSCALL_H
5555
#include<sys/syscall.h>
5656
#endif
@@ -76,7 +76,7 @@ static int mi_prim_access(const char *fpath, int mode) {
7676
returnsyscall(SYS_access,fpath,mode);
7777
}
7878

79-
#elif !defined(__APPLE__)// avoid unused warnings
79+
#elif !defined(__APPLE__)&& !defined(_AIX)// avoid unused warnings
8080

8181
staticintmi_prim_open(constchar*fpath,intopen_flags) {
8282
returnopen(fpath,open_flags);

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp