1 /* Beginning of modification history */
2 /* Written 02-01-02 by Nick Ing-Simmons (nick@ing-simmons.net) */
3 /* End of modification history */
5 /* VOS doesn't supply a truncate function, so we build one up
6 from the available POSIX functions. */
13 truncate(const char *path, off_t len)
15 int fd = open(path,O_WRONLY);
18 code = ftruncate(fd,len);