/**************************************************************************/ /* 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 #include #include "syscall.h" int fchmodat(int fd, const char *path, mode_t mode, int flag) { return syscall(SYS_fchmodat, fd, path, mode, flag); }