view modules/truncate @ 40194:33c4cac699fe

nstrftime: tweak arg order * lib/nstrftime.c (__strftime_internal): Interchange arg order. All callers changed. Suggested by TAMUKI Shoichi in: https://lists.gnu.org/r/bug-gnulib/2019-02/msg00052.html
author Paul Eggert <eggert@cs.ucla.edu>
date Sat, 23 Feb 2019 15:07:47 -0800
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