14 lines
163 B
C
Raw Normal View History

2018-02-25 01:59:39 +09:00
/*
* Public domain
*
* Kinichiro Inoguchi <inoguchi@openbsd.org>
*/
#include <unistd.h>
int
ftruncate(int fd, off_t length)
{
return _chsize(fd, length);
}