home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / unixlib / src / fchmod.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  182b  |  11 lines

  1. #include "amiga.h"
  2. #include <amiga/ioctl.h>
  3.  
  4. int fchmod(int fd, int mode)
  5. {
  6.   long amode = _make_protection(mode);
  7.  
  8.   chkabort();
  9.   return ioctl(fd, _AMIGA_SETPROTECTION, &amode);
  10. }
  11.