blob: 67412bf7df0db84a157e47dbe8647df500d7c202 [file] [log] [blame]
#include <errno.h>
#include <sys/types.h>
int
_chmod(const char *path, mode_t mode)
{
errno = ENOSYS;
return -1;
}