home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume17 / e2 / part01 / inheritance.c < prev    next >
C/C++ Source or Header  |  1989-02-08  |  173b  |  16 lines

  1. #include "e.h"
  2.  
  3. void
  4. inheritance()
  5. {
  6.     if (getenv(E_INHERIT)){
  7.         inherit = 1;
  8.     }
  9.  
  10.     if (getenv(E_SAFE_INHERIT)){
  11.         safe_inherit = 1;
  12.     }
  13.  
  14.     return;
  15. }
  16.