Commit 7ab7bf46b8675c8f5981daabe7e8a4591676d0d1

Edward Thomson 2019-02-22T11:32:01

p_fallocate: don't duplicate definitions for win32

diff --git a/src/posix.c b/src/posix.c
index ef48c60..242fda8 100644
--- a/src/posix.c
+++ b/src/posix.c
@@ -155,6 +155,23 @@ int p_rename(const char *from, const char *to)
 	return -1;
 }
 
+int p_fallocate(int fd, off_t offset, off_t len)
+{
+#ifdef __APPLE__
+	fstore_t prealloc;
+
+	memset(&prealloc, 0, sizeof(prealloc));
+	prealloc.fst_flags  = F_ALLOCATEALL;
+	prealloc.fst_posmode = F_PEOFPOSMODE;
+	prealloc.fst_offset = offset;
+	prealloc.fst_length = len;
+
+	return fcntl(fd, F_PREALLOCATE, &prealloc);
+#else
+	return posix_fallocate(fd, offset, len);
+#endif
+}
+
 #endif /* GIT_WIN32 */
 
 ssize_t p_read(git_file fd, void *buf, size_t cnt)
@@ -216,23 +233,6 @@ int p_write(git_file fd, const void *buf, size_t cnt)
 	return 0;
 }
 
-int p_fallocate(int fd, off_t offset, off_t len)
-{
-#ifdef __APPLE__
-	fstore_t prealloc;
-
-	memset(&prealloc, 0, sizeof(prealloc));
-	prealloc.fst_flags  = F_ALLOCATEALL;
-	prealloc.fst_posmode = F_PEOFPOSMODE;
-	prealloc.fst_offset = offset;
-	prealloc.fst_length = len;
-
-	return fcntl(fd, F_PREALLOCATE, &prealloc);
-#else
-	return posix_fallocate(fd, offset, len);
-#endif
-}
-
 #ifdef NO_MMAP
 
 #include "map.h"