1 2 3 4 5 6 7 8 9
#include <errno.h> #include <sys/types.h> int _chmod(const char *path, mode_t mode) { errno = ENOSYS; return -1; }