home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 June / MacFormat 25.iso / Shareware City / Developers / macgzip_03b2-src / macos / Posix / ThinkCPosix Sources / chmod.c next >
Encoding:
C/C++ Source or Header  |  1994-10-17  |  188 b   |  15 lines  |  [TEXT/MPS ]

  1. /* $Id: $ */
  2.  
  3. /*
  4.  * For the moment this function does nothing,
  5.  * and reports success!
  6.  */
  7. #include <sys/stat.h>
  8. #include <sys/types.h>
  9.  
  10. int chmod(char *path, mode_t mode)
  11. {
  12.     return 0;
  13. }
  14.  
  15.