view modules/truncate @ 40244:c39a0edd90d7

fts: minor simplification * lib/fts.c (fts_safe_changedir): Remove redundant assignment.
author Paul Eggert <eggert@cs.ucla.edu>
date Sun, 17 Mar 2019 12:39:50 -0700
parents 0fdf358c9224
children
line wrap: on
line source

Description:
truncate() function: truncate a file to a specified length.

Files:
lib/truncate.c
m4/truncate.m4

Depends-on:
unistd
sys_types
largefile
open            [test $HAVE_DECL_TRUNCATE = 0 || test $REPLACE_TRUNCATE = 1]
ftruncate       [test $HAVE_DECL_TRUNCATE = 0 || test $REPLACE_TRUNCATE = 1]

configure.ac:
gl_FUNC_TRUNCATE
if test $HAVE_DECL_TRUNCATE = 0 || test $REPLACE_TRUNCATE = 1; then
  AC_LIBOBJ([truncate])
  gl_PREREQ_TRUNCATE
fi
gl_UNISTD_MODULE_INDICATOR([truncate])

Makefile.am:

Include:
<unistd.h>

License:
GPL

Maintainer:
all