home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / elm.lzh / ELM / SRC / OSK.C < prev    next >
C/C++ Source or Header  |  1991-01-11  |  372b  |  27 lines

  1. #include <stdio.h>
  2.  
  3. int link(from,to)    /* all link calls changed to copies */
  4. char *from, *to;
  5. {
  6.     return(-1);    /* return error */
  7. }
  8.  
  9. int fork()        /* ehem .... */
  10. {
  11.     return(-1);
  12. }
  13.  
  14. char *ctime(t)
  15. long t;
  16. {
  17.     return(asctime(localtime(t)));
  18. }
  19.  
  20. ochown(name, user, group)
  21. char *name;
  22. int user, group;
  23. {
  24.     return(chown(name,(((group << 16) & 0x00ff0000) | (user & 0x000000ff))));
  25. }
  26.  
  27.