home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-18.59-src.tgz / emacs-18.59-src.tar / fsf / emacs18 / amiga / unix / src / ftruncate.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  145b  |  9 lines

  1. #include "amiga.h"
  2. #include <amiga/ioctl.h>
  3.  
  4. int ftruncate(int fd, off_t length)
  5. {
  6.   chkabort();
  7.   return ioctl(fd, _AMIGA_TRUNCATE, &length);
  8. }
  9.