ae75f9d4e5
- 755 -> 644
14 lines
221 B
C
14 lines
221 B
C
#include <lib.h>
|
|
#define chmod _chmod
|
|
#include <sys/stat.h>
|
|
|
|
PUBLIC int chmod(name, mode)
|
|
_CONST char *name;
|
|
_mnx_Mode_t mode;
|
|
{
|
|
message m;
|
|
|
|
m.m3_i2 = mode;
|
|
_loadname(name, &m);
|
|
return(_syscall(FS, CHMOD, &m));
|
|
}
|