Skip to content

Commit 1ea38f8

Browse files
committed
std: use LFS ftruncate64 on Linux
1 parent 2808df9 commit 1ea38f8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/libstd/sys/unix/fs.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ use sys::{cvt, cvt_r};
2626
use sys_common::{AsInner, FromInner};
2727

2828
#[cfg(target_os = "linux")]
29-
use libc::{stat64, fstat64, lstat64};
29+
use libc::{stat64, fstat64, lstat64, off64_t, ftruncate64};
3030
#[cfg(not(target_os = "linux"))]
31-
use libc::{stat as stat64, fstat as fstat64, lstat as lstat64};
31+
use libc::{stat as stat64, fstat as fstat64, lstat as lstat64, off_t as off64_t,
32+
ftruncate as ftruncate64};
3233

3334
pub struct File(FileDesc);
3435

@@ -443,7 +444,7 @@ impl File {
443444

444445
pub fn truncate(&self, size: u64) -> io::Result<()> {
445446
try!(cvt_r(|| unsafe {
446-
libc::ftruncate(self.0.raw(), size as libc::off_t)
447+
ftruncate64(self.0.raw(), size as off64_t)
447448
}));
448449
Ok(())
449450
}

0 commit comments

Comments
 (0)