summaryrefslogtreecommitdiffhomepage
path: root/src/stat/nt32/fchmodat.c
blob: 328da5975c8819de97c8d0638164bf20b5112645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**************************************************************************/
/*  mmglue: midipix architecture- and target-specific bits for musl libc  */
/*  Copyright (C) 2013--2023  SysDeer Technologies, LLC                   */
/*  Released under GPLv2 and GPLv3; see COPYING.MMGLUE.                   */
/**************************************************************************/

#include <sys/stat.h>
#include <fcntl.h>
#include "syscall.h"

int fchmodat(int fd, const char *path, mode_t mode, int flag)
{
	return syscall(SYS_fchmodat, fd, path, mode, flag);
}