mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-05 23:19:31 +03:00
fix warnings on macOS
This commit is contained in:
parent
068d1d8842
commit
5bc724d18f
1 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ terms of the MIT license. A copy of the license can be found in the file
|
||||||
#include <sys/sysctl.h>
|
#include <sys/sysctl.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(__HAIKU__)
|
#if !defined(__HAIKU__) && !defined(__APPLE__)
|
||||||
#define MI_HAS_SYSCALL_H
|
#define MI_HAS_SYSCALL_H
|
||||||
#include <sys/syscall.h>
|
#include <sys/syscall.h>
|
||||||
#endif
|
#endif
|
||||||
|
@ -76,7 +76,7 @@ static int mi_prim_access(const char *fpath, int mode) {
|
||||||
return syscall(SYS_access,fpath,mode);
|
return syscall(SYS_access,fpath,mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#elif !defined(__APPLE__) // avoid unused warnings
|
||||||
|
|
||||||
static int mi_prim_open(const char* fpath, int open_flags) {
|
static int mi_prim_open(const char* fpath, int open_flags) {
|
||||||
return open(fpath,open_flags,mode);
|
return open(fpath,open_flags,mode);
|
||||||
|
|
Loading…
Add table
Reference in a new issue