Index: fusl/src/unistd/ftruncate.c |
diff --git a/fusl/src/unistd/ftruncate.c b/fusl/src/unistd/ftruncate.c |
index 467135f009971316101b6e38e5384707baa508c4..b1e7cdbb27186887b6cc0ae6cd91d7cfa58a6581 100644 |
--- a/fusl/src/unistd/ftruncate.c |
+++ b/fusl/src/unistd/ftruncate.c |
@@ -2,9 +2,8 @@ |
#include "syscall.h" |
#include "libc.h" |
-int ftruncate(int fd, off_t length) |
-{ |
- return syscall(SYS_ftruncate, fd, __SYSCALL_LL_O(length)); |
+int ftruncate(int fd, off_t length) { |
+ return syscall(SYS_ftruncate, fd, __SYSCALL_LL_O(length)); |
} |
LFS64(ftruncate); |