File tree 1 file changed +2
-2
lines changed
Objects/mimalloc/prim/unix
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ terms of the MIT license. A copy of the license can be found in the file
50
50
#include <sys/sysctl.h>
51
51
#endif
52
52
53
- #if !defined(__HAIKU__ ) && !defined(__APPLE__ ) && !defined(__CYGWIN__ ) && !defined(_AIX )
53
+ #if !defined(__HAIKU__ ) && !defined(__APPLE__ ) && !defined(__CYGWIN__ ) && !defined(_AIX ) && !defined( __FreeBSD__ )
54
54
#define MI_HAS_SYSCALL_H
55
55
#include <sys/syscall.h>
56
56
#endif
@@ -76,7 +76,7 @@ static int mi_prim_access(const char *fpath, int mode) {
76
76
return syscall (SYS_access ,fpath ,mode );
77
77
}
78
78
79
- #elif !defined(__APPLE__ ) && !defined(_AIX ) // avoid unused warnings
79
+ #elif !defined(__APPLE__ ) && !defined(_AIX ) && !defined( __FreeBSD__ ) // avoid unused warnings
80
80
81
81
static int mi_prim_open (const char * fpath , int open_flags ) {
82
82
return open (fpath ,open_flags );
You can’t perform that action at this time.
0 commit comments