mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
6 lines
99 B
C
6 lines
99 B
C
|
#include <unistd.h>
|
||
|
int ftruncate(int __fd, off_t __length)
|
||
|
{
|
||
|
return _chsize (__fd, __length);
|
||
|
}
|