1 #include "chown.h" 2 3 #ifndef HAVE_CHOWN 4 5 int chown(const char *path, uint32_t owner, uint32_t group) { 6 return(-1); 7 } 8 9 #endif