Files
haiku-beta6/src/kernel/libroot/posix/sys/chmod.c
T
Axel Dörfler f88314cbfc syscalls.h includes a little less than before...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8265 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-07-02 02:36:09 +00:00

46 lines
784 B
C

/*
** Copyright 2002-2004, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the Haiku License.
*/
#include <fs_interface.h>
#include <sys/stat.h>
#include <syscalls.h>
#include <errno.h>
#define RETURN_AND_SET_ERRNO(err) \
if (err < 0) { \
errno = err; \
return -1; \
} \
return err;
int
chmod(const char *path, mode_t mode)
{
struct stat stat;
status_t status;
stat.st_mode = mode;
status = _kern_write_path_stat(path, true, &stat, sizeof(struct stat), FS_WRITE_STAT_MODE);
RETURN_AND_SET_ERRNO(status);
}
int
fchmod(int fd, mode_t mode)
{
struct stat stat;
status_t status;
stat.st_mode = mode;
status = _kern_write_stat(fd, &stat, sizeof(struct stat), FS_WRITE_STAT_MODE);
RETURN_AND_SET_ERRNO(status);
}