blob: 6f77e75e55e8ad87d738d685ec08749c853a1c4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "sys/types.h"
#include <sys/stat.h>
#include "nonstd/syscall.h"
int chmod(const char *path, mode_t mode)
{
SYSCALL("chmod", int, -1, path, mode, 0, 0, 0, 0);
}
/*
POSIX(1)
*/
|