1b0314715b
* mingwex/ftruncate.c: New file. * mingwex/Makefile.in: Add ftruncate.o to libmingwex.a.
6 lines
99 B
C
Executable File
6 lines
99 B
C
Executable File
#include <unistd.h>
|
|
int ftruncate(int __fd, off_t __length)
|
|
{
|
|
return _chsize (__fd, __length);
|
|
}
|