X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fftruncate.c;h=079fcda0f23601ee353ba036ae4d47f98c26c78e;hb=241622b8c0d1959f00d63ec0c921f76e348a4091;hp=d4c129a18f991506b0957a8a19b5910404827678;hpb=67f394c1d2be473276ccd5e071f986511a13e212;p=gnulib.git diff --git a/lib/ftruncate.c b/lib/ftruncate.c index d4c129a18..079fcda0f 100644 --- a/lib/ftruncate.c +++ b/lib/ftruncate.c @@ -1,9 +1,7 @@ /* ftruncate emulations that work on some System V's. This file is in the public domain. */ -#if HAVE_CONFIG_H -# include -#endif +#include #include #include @@ -11,9 +9,7 @@ #ifdef F_CHSIZE int -ftruncate (fd, length) - int fd; - off_t length; +ftruncate (int fd, off_t length) { return fcntl (fd, F_CHSIZE, length); } @@ -25,14 +21,10 @@ ftruncate (fd, length) # include # include -# if HAVE_UNISTD_H -# include -# endif +# include int -ftruncate (fd, length) - int fd; - off_t length; +ftruncate (int fd, off_t length) { struct flock fl; struct stat filebuf; @@ -75,9 +67,7 @@ ftruncate (fd, length) # if HAVE_CHSIZE int -ftruncate (fd, length) - int fd; - off_t length; +ftruncate (int fd, off_t length) { return chsize (fd, length); } @@ -85,14 +75,9 @@ ftruncate (fd, length) # else /* not F_CHSIZE nor F_FREESP nor HAVE_CHSIZE */ # include -# ifndef errno -extern int errno; -# endif int -ftruncate (fd, length) - int fd; - off_t length; +ftruncate (int fd, off_t length) { errno = EIO; return -1;