summaryrefslogtreecommitdiff
path: root/kernel/syscalls/ftruncate.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/syscalls/ftruncate.c')
-rw-r--r--kernel/syscalls/ftruncate.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/kernel/syscalls/ftruncate.c b/kernel/syscalls/ftruncate.c
deleted file mode 100644
index 2ed5ccc..0000000
--- a/kernel/syscalls/ftruncate.c
+++ /dev/null
@@ -1,6 +0,0 @@
-#include <fs/vfs.h>
-#include <syscalls.h>
-
-int syscall_ftruncate(int fd, size_t length) {
- return vfs_ftruncate(fd, length);
-}