Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sys_chmod.c « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c11e1d03ccb489aac90ee4ea2e170cbb4caeb11 (plain)
1
2
3
4
5
6
7
8
9
#include <machine/syscall.h>
#include <sys/types.h>

/* Stub.  */
int
_chmod(const char *path, mode_t mode)
{
  return -1;
}