home *** CD-ROM | disk | FTP | other *** search
- #include <sys/wait.h>
- #include <sys/time.h>
- #include <sys/resource.h>
-
- si_exit()
- {
- exit();
- }
-
- fork()
- {
- printf("fork called!!!!!!!!!\n");
- return(0);
- }
-
- wait3(status,options,rusage)
- union wait *status;
- int options;
- struct rusage *rusage;
- {
- printf("wait3 called!!!!!!!!!\n");
- return(-1);
- }
-
- chroot(dirname)
- char *dirname;
- {
- return(0);
- }
-
- fchmod(fd, mode)
- int fd, mode;
- {
- return(0);
- }
-
- si_fsync(fd)
- int fd;
- {
- return(0);
- }
-
- sync()
- {
- }
-