blob: 8b6daad229b15e2961f099e49ebe44b0aca71910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include "lib.h"
#include <errno.h>
#include <stdlib.h>
#include "sys9.h"
#include "dir.h"
int
chmod(const char *path, mode_t mode)
{
Dir d;
_nulldir(&d);
d.mode = mode & 0777;
if(_dirwstat(path, &d) < 0){
_syserrno();
return -1;
}
return 0;
}
int
fchmod(int fd, mode_t mode)
{
Dir d;
_nulldir(&d);
d.mode = mode & 0777;
if(_dirfwstat(fd, &d) < 0){
_syserrno();
return -1;
}
return 0;
}
|