home *** CD-ROM | disk | FTP | other *** search
/ 3D Images / 3D Images.iso / programs / amiga / rayshade / inetray / waitpid.c < prev   
Encoding:
C/C++ Source or Header  |  1995-01-12  |  510 b   |  16 lines

  1. /*======================================================================
  2.                     W A I T P I D . C 
  3.                     doc: Tue Aug 17 08:39:11 1993
  4.                     dlm: Tue Aug 17 08:39:11 1993
  5.                     (c) 1993 ant@bernina.ethz.ch
  6.                     uE-Info: 8 0 NIL 0 0 72 0 2 8 ofnI
  7. ======================================================================*/
  8.  
  9. #include <stdio.h>
  10.  
  11. waitpid(pid,statusp,options)
  12. int pid,*statusp,options;
  13. {
  14.     return wait4(pid,statusp,options,NULL);
  15. }
  16.