[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / support / sys-sendfile.c
index 0750efbbdfc3c65d7751ab8c9b1abfdf43005caf..7b6797acb04160a9b17fdc038389dfaece9dae5a 100644 (file)
@@ -7,6 +7,8 @@
  * Copyright (C) 2004 Jonathan Pryor
  */
 
+#include <config.h>
+
 #include <sys/types.h>
 #include <errno.h>
 
@@ -29,7 +31,12 @@ Mono_Posix_Syscall_sendfile (int out_fd, int in_fd, mph_off_t *offset, mph_size_
 
        _offset = *offset;
 
+#if defined(HOST_DARWIN) || defined(HOST_BSD)
+       /* The BSD version has 6 arguments */
+       g_assert_not_reached ();
+#else
        r = sendfile (out_fd, in_fd, &_offset, (size_t) count);
+#endif
 
        *offset = _offset;