/* * Public domain * * Kinichiro Inoguchi */ #ifdef _WIN32 #include int ftruncate(int fd, off_t length) { return _chsize(fd, length); } #endif