summaryrefslogtreecommitdiff
path: root/libc/sysdeps
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-03-01 21:14:17 +0000
committerEric Andersen <andersen@codepoet.org>2002-03-01 21:14:17 +0000
commit3c32d925ccfb94c22e64ed821615e3e7d436c1e0 (patch)
treef8580db72a58ab49860d11f6df4812e7e6328953 /libc/sysdeps
parent3fc6ba17b7a9919dd01a1c47853a4944fc990079 (diff)
Fix for some comments, from Miles Bader
Diffstat (limited to 'libc/sysdeps')
-rw-r--r--libc/sysdeps/linux/common/syscalls.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c
index 3bf540b20..bd682c96e 100644
--- a/libc/sysdeps/linux/common/syscalls.c
+++ b/libc/sysdeps/linux/common/syscalls.c
@@ -1413,8 +1413,7 @@ _syscall4(ssize_t,sendfile, int, out_fd, int, in_fd, off_t *, offset, size_t, co
#ifdef L_truncate64
#ifdef __UCLIBC_HAVE_LFS__
#include <bits/wordsize.h>
-/* We only implement truncate64/ftruncate64 on 64-bit systems, because
- * Using _syscall2 to pass 64-bit arguments generally only works on 64-bit
+/* Using _syscall2 to pass 64-bit arguments generally only works on 64-bit
* systems, so we only implement truncate64/ftruncate64 in that case. Ports
* for processors with shorter word-lengths should define their own custom
* versions instead. */
@@ -1429,8 +1428,7 @@ _syscall2(int, truncate64, const char *, path, __off64_t, length);
#ifdef L_ftruncate64
#ifdef __UCLIBC_HAVE_LFS__
#include <bits/wordsize.h>
-/* We only implement truncate64/ftruncate64 on 64-bit systems, because
- * Using _syscall2 to pass 64-bit arguments generally only works on 64-bit
+/* Using _syscall2 to pass 64-bit arguments generally only works on 64-bit
* systems, so we only implement truncate64/ftruncate64 in that case. Ports
* for processors with shorter word-lengths should define their own custom
* versions instead. */