Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ftruncate.c « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fdb62951a48f151dd2a35817a76d22f1c54953d9 (plain)
1
2
3
4
5
#include <unistd.h>
int ftruncate(int __fd, off_t __length)
{
  return _chsize (__fd, __length);
}