summaryrefslogtreecommitdiff
path: root/src/unistd/ftruncate.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/ftruncate.c')
-rw-r--r--src/unistd/ftruncate.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/unistd/ftruncate.c b/src/unistd/ftruncate.c
index b41be0fa..54ff34bc 100644
--- a/src/unistd/ftruncate.c
+++ b/src/unistd/ftruncate.c
@@ -5,5 +5,3 @@ int ftruncate(int fd, off_t length)
{
return syscall(SYS_ftruncate, fd, __SYSCALL_LL_O(length));
}
-
-weak_alias(ftruncate, ftruncate64);