Skip to content

Commit 54c5869

Browse files
committed
1 parent 514d055 commit 54c5869

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

llvm/lib/Support/Unix/Path.inc

+6
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,12 @@ typedef uint_t uint;
118118
#define STATVFS_F_FLAG(vfs) (vfs).f_flags
119119
#endif
120120

121+
#if defined(__sun__)
122+
// The madvise() declaration on Illumos cannot be made visible if _XOPEN_SOURCE
123+
// is defined. This declaration is also compatible with Solaris 11.4.
124+
extern "C" int madvise(void *, size_t, int);
125+
#endif
126+
121127
using namespace llvm;
122128

123129
namespace llvm {

0 commit comments

Comments
 (0)