move fallocate syscall wrapper to linux-specific syscalls dir
authorRich Felker <dalias@aerifal.cx>
Sat, 8 Sep 2012 04:41:11 +0000 (00:41 -0400)
committerRich Felker <dalias@aerifal.cx>
Sat, 8 Sep 2012 04:41:11 +0000 (00:41 -0400)
src/fcntl/fallocate.c [deleted file]
src/linux/fallocate.c [new file with mode: 0644]

diff --git a/src/fcntl/fallocate.c b/src/fcntl/fallocate.c
deleted file mode 100644 (file)
index 9146350..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#define _GNU_SOURCE
-#include <fcntl.h>
-#include "syscall.h"
-
-int fallocate(int fd, int mode, off_t base, off_t len)
-{
-       return syscall(SYS_fallocate, fd, mode, __SYSCALL_LL_E(base),
-               __SYSCALL_LL_E(len));
-}
diff --git a/src/linux/fallocate.c b/src/linux/fallocate.c
new file mode 100644 (file)
index 0000000..9146350
--- /dev/null
@@ -0,0 +1,9 @@
+#define _GNU_SOURCE
+#include <fcntl.h>
+#include "syscall.h"
+
+int fallocate(int fd, int mode, off_t base, off_t len)
+{
+       return syscall(SYS_fallocate, fd, mode, __SYSCALL_LL_E(base),
+               __SYSCALL_LL_E(len));
+}