home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / PROCESS / WAIT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  279 b   |  16 lines

  1. /* wait.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
  2.  
  3. #include <sys/emx.h>
  4. #include <stdlib.h>
  5. #include <process.h>
  6. #include <errno.h>
  7.  
  8. int wait (int *status)
  9. {
  10.   int dummy;
  11.  
  12.   if (status == NULL)
  13.     status = &dummy;
  14.   return (__wait (status));
  15. }
  16.