home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / compat / io / chsize.c next >
Encoding:
C/C++ Source or Header  |  1996-01-30  |  182 b   |  10 lines

  1. /* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
  2. #include <io.h>
  3. #include <unistd.h>
  4.  
  5. int
  6. chsize(int handle, long size)
  7. {
  8.   return ftruncate(handle, size);
  9. }
  10.