diff options
author | Jim Meyering <meyering@redhat.com> | 2009-08-04 20:05:45 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-08-04 20:06:03 +0200 |
commit | 365fb90eaae52c92d6af8e87769e72b872492f4a (patch) | |
tree | 32e89ced654c5214c7545be4b06c75d525394f8c /src | |
parent | eae535e1a322e244248bd31ed7e21ac95ecaa16d (diff) | |
download | coreutils-365fb90eaae52c92d6af8e87769e72b872492f4a.tar.xz |
dd: remove unnecessary #if HAVE_FTRUNCATE
* src/dd.c (main): Remove unnecessary cpp directives.
Gnulib guarantees that ftruncate is usable.
Diffstat (limited to 'src')
-rw-r--r-- | src/dd.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -1869,7 +1869,6 @@ main (int argc, char **argv) < 0)) error (EXIT_FAILURE, errno, _("opening %s"), quote (output_file)); -#if HAVE_FTRUNCATE if (seek_records != 0 && !(conversions_mask & C_NOTRUNC)) { uintmax_t size = seek_records * output_blocksize; @@ -1902,7 +1901,6 @@ main (int argc, char **argv) size, quote (output_file)); } } -#endif } install_signal_handlers (); |