Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  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.