home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / unixlib / !UnixLib / src / unix / c / chown < prev    next >
Encoding:
Text File  |  1994-09-30  |  287 b   |  17 lines

  1. static char sccs_id[] = "@(#) chown.c 1.2 " __DATE__ " HJR";
  2.  
  3. /* chown.c (c) Copyright 1990 H.Rogers */
  4.  
  5. #include "sys/unix.h"
  6.  
  7. #define IGNORE(x) x = x
  8.  
  9. int
  10. chown (char *file, register int owner, register int group)
  11. {
  12.   IGNORE (file);
  13.   IGNORE (owner);
  14.   IGNORE (group);
  15.   return (0);
  16. }
  17.