From cfe373146d232d7c89a60920f77b9451bcfee96b Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 15 Feb 2011 04:12:19 -0500 Subject: finish moving 32-bit-specific junk out of source files. --- src/unistd/truncate.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/unistd/truncate.c') diff --git a/src/unistd/truncate.c b/src/unistd/truncate.c index f75e824e..322349d2 100644 --- a/src/unistd/truncate.c +++ b/src/unistd/truncate.c @@ -4,12 +4,7 @@ int truncate(const char *path, off_t length) { - if (sizeof(long) == 8) - return syscall2(__NR_truncate, (long)path, length); - else { - union { long long ll; long l[2]; } u = { length }; - return syscall3(__NR_truncate64, (long)path, u.l[0], u.l[1]); - } + return syscall3(__NR_truncate, (long)path, SYSCALL_LL(length)); } LFS64(truncate); -- cgit v1.2.1