diff options
Diffstat (limited to 'sysdeps/generic/ftruncate64.c')
-rw-r--r-- | sysdeps/generic/ftruncate64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/ftruncate64.c b/sysdeps/generic/ftruncate64.c index 40c312c21b..a85293baf6 100644 --- a/sysdeps/generic/ftruncate64.c +++ b/sysdeps/generic/ftruncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -31,5 +31,5 @@ ftruncate64 (fd, length) __set_errno (EINVAL); return -1; } - return ftruncate (fd, (off_t) length); + return __ftruncate (fd, (off_t) length); } |