OSDN Git Service

More rationalization of CRT_INLINE function implementations.
[mingw/mingw-org-wsl.git] / mingwrt / mingwex / ftruncate.c
1 #include <unistd.h>
2 int ftruncate(int __fd, off_t __length)
3 {
4   return _chsize (__fd, __length);
5 }