home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / zc.lzh / ZC / ZCSRC.LZH / IOLib / misc / getpid.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-11-09  |  188 b   |  10 lines

  1. extern char    *_base;
  2.  
  3. int getpid()
  4.     {
  5.     register unsigned long n;
  6.  
  7.     n = (unsigned long) _base;    /* load process base address */
  8.     return(0x7FFF & (n >> 8));    /* create unique pid from it */
  9.     }
  10.