OSX: Fixup warnings and clock_gettime() bug
[fio.git] / os / os-mac.h
index 0f351a78a2ab4a258c1a9b13389ff212960cdd3b..c8d7dcae6cc1caf3bc28d2a61e3d98bac8b0e779 100644 (file)
 
 #include "../file.h"
 
-#ifndef CLOCK_MONOTONIC
-#define CLOCK_MONOTONIC 1
-#endif
-
 #ifndef CLOCK_REALTIME
 #define CLOCK_REALTIME 1
 #endif
@@ -177,4 +173,11 @@ static inline int gettid(void)
 {
        return mach_thread_self();
 }
+
+/*
+ * For some reason, there's no header definition for fdatasync(), even
+ * if it exists.
+ */
+extern int fdatasync(int fd);
+
 #endif