Skip to content

Commit 0ff6368

Browse files
authored
gh-111906: Fix warnings during mimalloc build on FreeBSD (#111907)
Fix `unused function` warnings during mimalloc build on FreeBSD.
1 parent ee06fff commit 0ff6368

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

+2-2
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__) && !defined(_AIX)
53+
#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(_AIX) && !defined(__FreeBSD__)
5454
#define MI_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
return syscall(SYS_access,fpath,mode);
7777
}
7878

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

8181
static int mi_prim_open(const char* fpath, int open_flags) {
8282
return open(fpath,open_flags);

0 commit comments

Comments
 (0)