blob: 84d8ef50329bfe4bda082563aa93cf88e9c34c96 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <sys/stat.h> // for fchmod
#include <sys/types.h> // for mode_t
#include <syscall.h> // for __syscall_2, syscall
int fchmod(int fildes, mode_t mode)
{
return syscall(fchmod, fildes, mode);
}
|