File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ terms of the MIT license. A copy of the license can be found in the file
51
51
#include <sys/sysctl.h>
52
52
#endif
53
53
54
- #if !defined(__HAIKU__ ) && !defined(__APPLE__ ) && !defined(__CYGWIN__ ) && !defined(__OpenBSD__ )
54
+ #if !defined(__HAIKU__ ) && !defined(__APPLE__ ) && !defined(__CYGWIN__ ) && !defined(__OpenBSD__ ) && !defined( __sun )
55
55
#define MI_HAS_SYSCALL_H
56
56
#include <sys/syscall.h>
57
57
#endif
@@ -79,7 +79,7 @@ static int mi_prim_access(const char *fpath, int mode) {
79
79
return syscall (SYS_access ,fpath ,mode );
80
80
}
81
81
82
- #elif (!defined(__APPLE__ ) || MAC_OS_X_VERSION_MIN_REQUIRED < 1070 ) // avoid unused warnings on macOS
82
+ #elif (!defined(__APPLE__ ) || MAC_OS_X_VERSION_MIN_REQUIRED < 1070 ) && !defined( __sun ) // avoid unused warnings on macOS and Solaris
83
83
84
84
static int mi_prim_open (const char * fpath , int open_flags ) {
85
85
return open (fpath ,open_flags );
You can’t perform that action at this time.
0 commit comments