2005-04-21 16:53:53 +02:00
|
|
|
#include <lib.h>
|
|
|
|
#define chmod _chmod
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
PUBLIC int chmod(name, mode)
|
|
|
|
_CONST char *name;
|
2005-06-23 13:07:31 +02:00
|
|
|
_mnx_Mode_t mode;
|
2005-04-21 16:53:53 +02:00
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
|
|
|
m.m3_i2 = mode;
|
|
|
|
_loadname(name, &m);
|
|
|
|
return(_syscall(FS, CHMOD, &m));
|
|
|
|
}
|