home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / emacs-19.28-src.lha / emacs-19.28 / unixlib / src / chmod.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-03  |  146 b   |  9 lines

  1. #include "amiga.h"
  2.  
  3. int chmod(const char *name, int mode)
  4. {
  5.   chkabort();
  6.   if (SetProtection(name, _make_protection(mode))) return 0;
  7.   ERROR;
  8. }
  9.