minix/lib/libc/posix/_chmod.c
Kees van Reeuwijk bc314bda91 Remove the types Dev_t, _mnx_Gui, _mnx_Uid, and similar.
Use ANSI-style function declarations where necessary.
2010-04-13 10:58:41 +00:00

13 lines
203 B
C

#include <lib.h>
#define chmod _chmod
#include <sys/stat.h>
PUBLIC int chmod(const char *name, mode_t mode)
{
message m;
m.m3_i2 = mode;
_loadname(name, &m);
return(_syscall(FS, CHMOD, &m));
}