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 <io.h>
  4. #include <errno.h>
  5. #include <libc/dosio.h>
  6. #include <assert.h>
  7. #include <stdio.h>
  8. #include <fcntl.h>
  9.  
  10. int _chmod(const char *filename, int func, ...)
  11. {
  12.  int i;
  13.  i=open(filename,O_RDONLY);
  14.  if(i<0) return -1;
  15.  close(i);
  16.  return 0;
  17. }
  18.