blob: 9dbb298d8228d5504e34487665d08a4d9712fb16 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- libntfs-3g/device_io.c.orig Wed Dec 6 04:03:06 2006
+++ libntfs-3g/device_io.c Tue Dec 5 23:04:04 2006
@@ -26,7 +26,11 @@
#ifndef __CYGWIN32__
/* Not on Cygwin; use standard Unix style low level device operations. */
+#if defined(__FreeBSD__)
+#include "unix_io_raw.c"
+#else
#include "unix_io.c"
+#endif
#else /* __CYGWIN32__ */
|