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 >
Wrap
C/C++ Source or Header
|
1996-09-28
|
182b
|
11 lines
#include "amiga.h"
#include <amiga/ioctl.h>
int fchmod(int fd, int mode)
{
long amode = _make_protection(mode);
chkabort();
return ioctl(fd, _AMIGA_SETPROTECTION, &amode);
}