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

Appearance settings

Commit 85fd9bd

Browse filesBrowse files
furkanondermiss-islington
authored andcommitted
pythongh-123826: Fix unused function warnings in mimalloc on NetBSD (pythonGH-123827)
(cherry picked from commit 4a6b1f1) Co-authored-by: Furkan Onder <furkanonder@protonmail.com>
1 parent 660baa1 commit 85fd9bd
Copy full SHA for 85fd9bd

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
  • Objects/mimalloc/prim/unix
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

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

Copy file name to clipboardExpand all lines: Objects/mimalloc/prim/unix/prim.c
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ terms of the MIT license. A copy of the license can be found in the file
5151
#include <sys/sysctl.h>
5252
#endif
5353

54-
#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(_AIX) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__sun)
54+
#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(_AIX) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__sun) && !defined(__NetBSD__)
5555
#define MI_HAS_SYSCALL_H
5656
#include <sys/syscall.h>
5757
#endif
@@ -77,7 +77,7 @@ static int mi_prim_access(const char *fpath, int mode) {
7777
return syscall(SYS_access,fpath,mode);
7878
}
7979

80-
#elif !defined(__APPLE__) && !defined(_AIX) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__sun) // avoid unused warnings
80+
#elif !defined(__APPLE__) && !defined(_AIX) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__sun) && !defined(__NetBSD__) // avoid unused warnings
8181

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

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.