home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / osi / isode / vmsisode / vmsisode80_tar.Z / vmsisode80_tar / sockit / source / system.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-02-18  |  441 b   |  46 lines

  1. #include <sys/wait.h>
  2. #include <sys/time.h>
  3. #include <sys/resource.h>
  4.  
  5. si_exit()
  6. {
  7.   exit();
  8. }
  9.  
  10. fork()
  11. {
  12.   printf("fork called!!!!!!!!!\n");
  13.   return(0);
  14.  }
  15.  
  16. wait3(status,options,rusage)
  17. union wait *status;
  18. int options;
  19. struct rusage *rusage;
  20. {
  21.   printf("wait3 called!!!!!!!!!\n");
  22.   return(-1);
  23. }
  24.  
  25. chroot(dirname)
  26. char *dirname;
  27. {
  28. return(0);
  29. }
  30.  
  31. fchmod(fd, mode)
  32. int fd, mode;
  33. {
  34. return(0);
  35. }
  36.  
  37. si_fsync(fd)
  38. int fd;
  39. {
  40. return(0);
  41. }
  42.  
  43. sync()
  44. {
  45. }
  46.