home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 3 / 3296 / confhavepflag.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-05-07  |  227 b   |  12 lines

  1. #ifndef CONF_HAVEPFLAG_H
  2. #define CONF_HAVEPFLAG_H
  3.  
  4. /* -DHAVE_PFLAG if struct proc has a p_flag element. */
  5.  
  6. #include "structproc.h"
  7. #ifndef P_DYING /* only defined in systems without p_flag */
  8. #define HAVE_PFLAG
  9. #endif
  10.  
  11. #endif
  12.