Blame src/stat/nt32/fchmodat.c

716654
/**************************************************************************/
716654
/*  mmglue: midipix architecture- and target-specific bits for musl libc  */
716654
/*  Copyright (C) 2013--2023  SysDeer Technologies, LLC                   */
000ff7
/*  Released under GPLv2 and GPLv3; see COPYING.MMGLUE.                   */
716654
/**************************************************************************/
716654
cc741e
#include <sys/stat.h>
cc741e
#include <fcntl.h>
cc741e
#include "syscall.h"
cc741e
cc741e
int fchmodat(int fd, const char *path, mode_t mode, int flag)
cc741e
{
cc741e
	return syscall(SYS_fchmodat, fd, path, mode, flag);
cc741e
}