}
+/*
+ *----------------------------------------------------------------------
+ *
+ * File_OnVMFS --
+ *
+ * Return TRUE if file is on a VMFS file system.
+ *
+ * Results:
+ * Boolean
+ *
+ * Side effects:
+ * None
+ *
+ *----------------------------------------------------------------------
+ */
+
+Bool
+File_OnVMFS(ConstUnicode pathName) // IN:
+{
+ /*
+ * VMFS exists only on ESX and all file systems appear to be directly
+ * attached and VMFS.
+ */
+
+ return HostType_OSIsVMK();
+}
+
+
#if defined(VMX86_SERVER)
/*
*----------------------------------------------------------------------
return ret;
}
-
#endif
-/*
- *----------------------------------------------------------------------
- *
- * File_OnVMFS --
- *
- * Return TRUE if file is on a VMFS file system.
- *
- * Results:
- * Boolean
- *
- * Side effects:
- * None
- *
- *----------------------------------------------------------------------
- */
-
-Bool
-File_OnVMFS(ConstUnicode pathName) // IN:
-{
- /*
- * VMFS exists only on ESX and all file systems appear to be directly
- * attached and VMFS.
- */
-
- return HostType_OSIsVMK();
-}
-
-
/*
*----------------------------------------------------------------------
*