Date: Fri, 30 Apr 93 08:23:30 EDT From: DJ Delorie To: alane AT wozzle DOT linet DOT org Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: Truncating a file > void trunc(int fd, long where) > { > fseek(fd,where,SEEK_SET); > write(fd,(void*)0,0); > } This looks just like libsrc/c/sys/ftruncate.c!