1991-09-03 14:22:32 +00:00
|
|
|
#include <lib.h>
|
|
|
|
#define chmod _chmod
|
1991-09-19 12:46:16 +00:00
|
|
|
#include <sys/stat.h>
|
1991-09-03 14:22:32 +00:00
|
|
|
|
|
|
|
PUBLIC int chmod(name, mode)
|
1991-09-19 12:46:16 +00:00
|
|
|
_CONST char *name;
|
1991-09-03 14:22:32 +00:00
|
|
|
mode_t mode;
|
|
|
|
{
|
|
|
|
return(_callm3(FS, CHMOD, mode, name));
|
|
|
|
}
|