home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / OS9_Unix.lzh / RSHSRC / getppid.c < prev    next >
C/C++ Source or Header  |  1992-09-25  |  160b  |  11 lines

  1. #include <procid.h>
  2.  
  3. int getppid()
  4. {
  5.    procid procdesc;
  6.  
  7.    (void) _get_process_desc(getpid(), (int)sizeof(procdesc), &procdesc);
  8.    return(procdesc._pid);
  9. }
  10.  
  11.