diff options
Diffstat (limited to 'src/unistd/ftruncate.c')
-rw-r--r-- | src/unistd/ftruncate.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/unistd/ftruncate.c b/src/unistd/ftruncate.c index 467135f0..b41be0fa 100644 --- a/src/unistd/ftruncate.c +++ b/src/unistd/ftruncate.c @@ -1,10 +1,9 @@ #include <unistd.h> #include "syscall.h" -#include "libc.h" int ftruncate(int fd, off_t length) { return syscall(SYS_ftruncate, fd, __SYSCALL_LL_O(length)); } -LFS64(ftruncate); +weak_alias(ftruncate, ftruncate64); |