Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <libc/stubs.h>
  3. #include <unistd.h>
  4. #include <sys/stat.h>
  5. #include <errno.h>
  6.  
  7. /* MS-DOS couldn't care less about file ownerships, so we could
  8.    always succeed.  At least fail for non-existent files
  9.    and for devices.  */
  10.  
  11. int chown(const char *path, uid_t owner, gid_t group)
  12. {
  13.     errno = ENOENT;
  14.     return -1;
  15. }
  16.